@instructure/canvas-rce 5.1.2-alpha.7 → 5.2.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/DEVELOPMENT.md +1 -1
- package/canvas/lib/defaultTinymceConfig.js +1 -1
- package/canvas/lib/rce/RCEWrapper.js +2 -2
- package/canvas/lib/rce/editorLanguage.js +1 -0
- package/canvas/lib/rce/normalizeLocale.js +1 -1
- package/canvas/lib/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/canvas/lib/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/canvas/lib/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/canvas/lib/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/canvas/lib/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/canvas/lib/rce/plugins/instructure_image/ImageEmbedOptions.js +19 -5
- package/canvas/lib/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -3
- package/canvas/lib/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +166 -0
- package/canvas/lib/rce/plugins/instructure_record/AudioOptionsTray/index.js +172 -0
- package/canvas/lib/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +1 -1
- package/canvas/lib/rce/plugins/instructure_record/plugin.js +21 -3
- package/canvas/lib/rce/plugins/shared/ContentSelection.js +48 -8
- package/canvas/lib/rce/plugins/shared/DimensionsInput/index.js +74 -17
- package/canvas/lib/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/canvas/lib/rce/plugins/shared/ImageOptionsForm.js +2 -1
- package/canvas/lib/translations/locales/ar.js +18 -0
- package/canvas/lib/translations/locales/ca.js +18 -0
- package/canvas/lib/translations/locales/cy.js +18 -0
- package/canvas/lib/translations/locales/da-x-k12.js +21 -0
- package/canvas/lib/translations/locales/da.js +18 -0
- package/canvas/lib/translations/locales/de.js +18 -0
- package/canvas/lib/translations/locales/el.js +3 -0
- package/canvas/lib/translations/locales/en-AU-x-unimelb.js +18 -0
- package/canvas/lib/translations/locales/en-GB-x-ukhe.js +18 -0
- package/canvas/lib/translations/locales/en.js +30 -0
- package/canvas/lib/translations/locales/en_AU.js +18 -0
- package/canvas/lib/translations/locales/en_CA.js +21 -0
- package/canvas/lib/translations/locales/en_CY.js +18 -0
- package/canvas/lib/translations/locales/en_GB.js +18 -0
- package/canvas/lib/translations/locales/es.js +18 -0
- package/canvas/lib/translations/locales/es_ES.js +18 -0
- package/canvas/lib/translations/locales/fa_IR.js +3 -0
- package/canvas/lib/translations/locales/fi.js +18 -0
- package/canvas/lib/translations/locales/fr.js +18 -0
- package/canvas/lib/translations/locales/fr_CA.js +18 -0
- package/canvas/lib/translations/locales/he.js +3 -0
- package/canvas/lib/translations/locales/ht.js +18 -0
- package/canvas/lib/translations/locales/hu.js +3 -0
- package/canvas/lib/translations/locales/hy.js +3 -0
- package/canvas/lib/translations/locales/is.js +18 -0
- package/canvas/lib/translations/locales/it.js +18 -0
- package/canvas/lib/translations/locales/ja.js +18 -0
- package/canvas/lib/translations/locales/ko.js +3 -0
- package/canvas/lib/translations/locales/nb-x-k12.js +21 -0
- package/canvas/lib/translations/locales/nb.js +18 -0
- package/canvas/lib/translations/locales/nl.js +18 -0
- package/canvas/lib/translations/locales/nn.js +15 -0
- package/canvas/lib/translations/locales/pl.js +18 -0
- package/canvas/lib/translations/locales/pt.js +20 -2
- package/canvas/lib/translations/locales/pt_BR.js +18 -0
- package/canvas/lib/translations/locales/ru.js +18 -0
- package/canvas/lib/translations/locales/sl.js +18 -0
- package/canvas/lib/translations/locales/sv-x-k12.js +21 -0
- package/canvas/lib/translations/locales/sv.js +18 -0
- package/canvas/lib/translations/locales/th.js +20 -0
- package/canvas/lib/translations/locales/tr.js +3 -0
- package/canvas/lib/translations/locales/uk_UA.js +3 -0
- package/canvas/lib/translations/locales/zh-Hans.js +18 -0
- package/canvas/lib/translations/locales/zh-Hant.js +18 -0
- package/canvas/lib/translations/locales/zh.js +18 -0
- package/canvas/lib/translations/locales/zh_HK.js +18 -0
- package/canvas/lib/translations/tinymce/th.js +481 -0
- package/canvas/package.json +5 -5
- package/coverage/canvas-rce-jest.xml +1367 -1188
- package/es/defaultTinymceConfig.js +1 -1
- package/es/rce/RCEWrapper.js +2 -2
- package/es/rce/editorLanguage.js +1 -0
- package/es/rce/normalizeLocale.js +1 -1
- package/es/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/es/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/es/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/es/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/es/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/es/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/es/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/es/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/es/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/es/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/es/rce/plugins/instructure_record/plugin.js +22 -5
- package/es/rce/plugins/shared/ContentSelection.js +44 -8
- package/es/rce/plugins/shared/DimensionsInput/index.js +74 -17
- package/es/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/es/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/es/translations/locales/ar.js +18 -0
- package/es/translations/locales/ca.js +18 -0
- package/es/translations/locales/cy.js +18 -0
- package/es/translations/locales/da-x-k12.js +21 -0
- package/es/translations/locales/da.js +18 -0
- package/es/translations/locales/de.js +18 -0
- package/es/translations/locales/el.js +3 -0
- package/es/translations/locales/en-AU-x-unimelb.js +18 -0
- package/es/translations/locales/en-GB-x-ukhe.js +18 -0
- package/es/translations/locales/en.js +30 -0
- package/es/translations/locales/en_AU.js +18 -0
- package/es/translations/locales/en_CA.js +21 -0
- package/es/translations/locales/en_CY.js +18 -0
- package/es/translations/locales/en_GB.js +18 -0
- package/es/translations/locales/es.js +18 -0
- package/es/translations/locales/es_ES.js +18 -0
- package/es/translations/locales/fa_IR.js +3 -0
- package/es/translations/locales/fi.js +18 -0
- package/es/translations/locales/fr.js +18 -0
- package/es/translations/locales/fr_CA.js +18 -0
- package/es/translations/locales/he.js +3 -0
- package/es/translations/locales/ht.js +18 -0
- package/es/translations/locales/hu.js +3 -0
- package/es/translations/locales/hy.js +3 -0
- package/es/translations/locales/is.js +18 -0
- package/es/translations/locales/it.js +18 -0
- package/es/translations/locales/ja.js +18 -0
- package/es/translations/locales/ko.js +3 -0
- package/es/translations/locales/nb-x-k12.js +21 -0
- package/es/translations/locales/nb.js +18 -0
- package/es/translations/locales/nl.js +18 -0
- package/es/translations/locales/nn.js +15 -0
- package/es/translations/locales/pl.js +18 -0
- package/es/translations/locales/pt.js +20 -2
- package/es/translations/locales/pt_BR.js +18 -0
- package/es/translations/locales/ru.js +18 -0
- package/es/translations/locales/sl.js +18 -0
- package/es/translations/locales/sv-x-k12.js +21 -0
- package/es/translations/locales/sv.js +18 -0
- package/es/translations/locales/th.js +19 -0
- package/es/translations/locales/tr.js +3 -0
- package/es/translations/locales/uk_UA.js +3 -0
- package/es/translations/locales/zh-Hans.js +18 -0
- package/es/translations/locales/zh-Hant.js +18 -0
- package/es/translations/locales/zh.js +18 -0
- package/es/translations/locales/zh_HK.js +18 -0
- package/es/translations/tinymce/th.js +479 -0
- package/lib/defaultTinymceConfig.js +1 -1
- package/lib/rce/RCEWrapper.js +2 -2
- package/lib/rce/editorLanguage.js +1 -0
- package/lib/rce/normalizeLocale.js +1 -1
- package/lib/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/rce/plugins/instructure_image/ImageEmbedOptions.js +19 -5
- package/lib/rce/plugins/instructure_image/ImageOptionsTray/index.js +9 -3
- package/lib/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +166 -0
- package/lib/rce/plugins/instructure_record/AudioOptionsTray/index.js +172 -0
- package/lib/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +1 -1
- package/lib/rce/plugins/instructure_record/plugin.js +21 -3
- package/lib/rce/plugins/shared/ContentSelection.js +48 -8
- package/lib/rce/plugins/shared/DimensionsInput/index.js +74 -17
- package/lib/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/rce/plugins/shared/ImageOptionsForm.js +2 -1
- package/lib/translated/ar/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/ar/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/ar/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/ar/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/ar/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/ar/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/ar/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/ar/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/ar/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/ar/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/ar/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/ar/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/ar/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/ar/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/ar/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/ar/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/ar/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/ar/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/ar/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/ar/modules/translations/locales/ar.js +18 -0
- package/lib/translated/ar/modules/translations/locales/ca.js +18 -0
- package/lib/translated/ar/modules/translations/locales/cy.js +18 -0
- package/lib/translated/ar/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/ar/modules/translations/locales/da.js +18 -0
- package/lib/translated/ar/modules/translations/locales/de.js +18 -0
- package/lib/translated/ar/modules/translations/locales/el.js +3 -0
- package/lib/translated/ar/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/ar/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/ar/modules/translations/locales/en.js +30 -0
- package/lib/translated/ar/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/ar/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/ar/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/ar/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/ar/modules/translations/locales/es.js +18 -0
- package/lib/translated/ar/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/ar/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/ar/modules/translations/locales/fi.js +18 -0
- package/lib/translated/ar/modules/translations/locales/fr.js +18 -0
- package/lib/translated/ar/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/ar/modules/translations/locales/he.js +3 -0
- package/lib/translated/ar/modules/translations/locales/ht.js +18 -0
- package/lib/translated/ar/modules/translations/locales/hu.js +3 -0
- package/lib/translated/ar/modules/translations/locales/hy.js +3 -0
- package/lib/translated/ar/modules/translations/locales/is.js +18 -0
- package/lib/translated/ar/modules/translations/locales/it.js +18 -0
- package/lib/translated/ar/modules/translations/locales/ja.js +18 -0
- package/lib/translated/ar/modules/translations/locales/ko.js +3 -0
- package/lib/translated/ar/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/ar/modules/translations/locales/nb.js +18 -0
- package/lib/translated/ar/modules/translations/locales/nl.js +18 -0
- package/lib/translated/ar/modules/translations/locales/nn.js +15 -0
- package/lib/translated/ar/modules/translations/locales/pl.js +18 -0
- package/lib/translated/ar/modules/translations/locales/pt.js +20 -2
- package/lib/translated/ar/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/ar/modules/translations/locales/ru.js +18 -0
- package/lib/translated/ar/modules/translations/locales/sl.js +18 -0
- package/lib/translated/ar/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/ar/modules/translations/locales/sv.js +18 -0
- package/lib/translated/ar/modules/translations/locales/th.js +19 -0
- package/lib/translated/ar/modules/translations/locales/tr.js +3 -0
- package/lib/translated/ar/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/ar/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/ar/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/ar/modules/translations/locales/zh.js +18 -0
- package/lib/translated/ar/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/ar/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/ca/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/ca/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/ca/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/ca/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/ca/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/ca/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/ca/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/ca/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/ca/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/ca/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/ca/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/ca/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/ca/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/ca/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/ca/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/ca/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/ca/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/ca/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/ca/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/ca/modules/translations/locales/ar.js +18 -0
- package/lib/translated/ca/modules/translations/locales/ca.js +18 -0
- package/lib/translated/ca/modules/translations/locales/cy.js +18 -0
- package/lib/translated/ca/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/ca/modules/translations/locales/da.js +18 -0
- package/lib/translated/ca/modules/translations/locales/de.js +18 -0
- package/lib/translated/ca/modules/translations/locales/el.js +3 -0
- package/lib/translated/ca/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/ca/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/ca/modules/translations/locales/en.js +30 -0
- package/lib/translated/ca/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/ca/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/ca/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/ca/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/ca/modules/translations/locales/es.js +18 -0
- package/lib/translated/ca/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/ca/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/ca/modules/translations/locales/fi.js +18 -0
- package/lib/translated/ca/modules/translations/locales/fr.js +18 -0
- package/lib/translated/ca/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/ca/modules/translations/locales/he.js +3 -0
- package/lib/translated/ca/modules/translations/locales/ht.js +18 -0
- package/lib/translated/ca/modules/translations/locales/hu.js +3 -0
- package/lib/translated/ca/modules/translations/locales/hy.js +3 -0
- package/lib/translated/ca/modules/translations/locales/is.js +18 -0
- package/lib/translated/ca/modules/translations/locales/it.js +18 -0
- package/lib/translated/ca/modules/translations/locales/ja.js +18 -0
- package/lib/translated/ca/modules/translations/locales/ko.js +3 -0
- package/lib/translated/ca/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/ca/modules/translations/locales/nb.js +18 -0
- package/lib/translated/ca/modules/translations/locales/nl.js +18 -0
- package/lib/translated/ca/modules/translations/locales/nn.js +15 -0
- package/lib/translated/ca/modules/translations/locales/pl.js +18 -0
- package/lib/translated/ca/modules/translations/locales/pt.js +20 -2
- package/lib/translated/ca/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/ca/modules/translations/locales/ru.js +18 -0
- package/lib/translated/ca/modules/translations/locales/sl.js +18 -0
- package/lib/translated/ca/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/ca/modules/translations/locales/sv.js +18 -0
- package/lib/translated/ca/modules/translations/locales/th.js +19 -0
- package/lib/translated/ca/modules/translations/locales/tr.js +3 -0
- package/lib/translated/ca/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/ca/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/ca/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/ca/modules/translations/locales/zh.js +18 -0
- package/lib/translated/ca/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/ca/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/cy/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/cy/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/cy/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/cy/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/cy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/cy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/cy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/cy/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/cy/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/cy/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/cy/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/cy/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/cy/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/cy/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/cy/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/cy/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/cy/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/cy/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/cy/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/cy/modules/translations/locales/ar.js +18 -0
- package/lib/translated/cy/modules/translations/locales/ca.js +18 -0
- package/lib/translated/cy/modules/translations/locales/cy.js +18 -0
- package/lib/translated/cy/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/cy/modules/translations/locales/da.js +18 -0
- package/lib/translated/cy/modules/translations/locales/de.js +18 -0
- package/lib/translated/cy/modules/translations/locales/el.js +3 -0
- package/lib/translated/cy/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/cy/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/cy/modules/translations/locales/en.js +30 -0
- package/lib/translated/cy/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/cy/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/cy/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/cy/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/cy/modules/translations/locales/es.js +18 -0
- package/lib/translated/cy/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/cy/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/cy/modules/translations/locales/fi.js +18 -0
- package/lib/translated/cy/modules/translations/locales/fr.js +18 -0
- package/lib/translated/cy/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/cy/modules/translations/locales/he.js +3 -0
- package/lib/translated/cy/modules/translations/locales/ht.js +18 -0
- package/lib/translated/cy/modules/translations/locales/hu.js +3 -0
- package/lib/translated/cy/modules/translations/locales/hy.js +3 -0
- package/lib/translated/cy/modules/translations/locales/is.js +18 -0
- package/lib/translated/cy/modules/translations/locales/it.js +18 -0
- package/lib/translated/cy/modules/translations/locales/ja.js +18 -0
- package/lib/translated/cy/modules/translations/locales/ko.js +3 -0
- package/lib/translated/cy/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/cy/modules/translations/locales/nb.js +18 -0
- package/lib/translated/cy/modules/translations/locales/nl.js +18 -0
- package/lib/translated/cy/modules/translations/locales/nn.js +15 -0
- package/lib/translated/cy/modules/translations/locales/pl.js +18 -0
- package/lib/translated/cy/modules/translations/locales/pt.js +20 -2
- package/lib/translated/cy/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/cy/modules/translations/locales/ru.js +18 -0
- package/lib/translated/cy/modules/translations/locales/sl.js +18 -0
- package/lib/translated/cy/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/cy/modules/translations/locales/sv.js +18 -0
- package/lib/translated/cy/modules/translations/locales/th.js +19 -0
- package/lib/translated/cy/modules/translations/locales/tr.js +3 -0
- package/lib/translated/cy/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/cy/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/cy/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/cy/modules/translations/locales/zh.js +18 -0
- package/lib/translated/cy/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/cy/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/da/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/da/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/da/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/da/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/da/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/da/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/da/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/da/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/da/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/da/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/da/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/da/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/da/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/da/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/da/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/da/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/da/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/da/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/da/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/da/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/da/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/da/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/da/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/da/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/da/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/da/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/da/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/da/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/da/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/da/modules/translations/locales/ar.js +18 -0
- package/lib/translated/da/modules/translations/locales/ca.js +18 -0
- package/lib/translated/da/modules/translations/locales/cy.js +18 -0
- package/lib/translated/da/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/da/modules/translations/locales/da.js +18 -0
- package/lib/translated/da/modules/translations/locales/de.js +18 -0
- package/lib/translated/da/modules/translations/locales/el.js +3 -0
- package/lib/translated/da/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/da/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/da/modules/translations/locales/en.js +30 -0
- package/lib/translated/da/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/da/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/da/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/da/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/da/modules/translations/locales/es.js +18 -0
- package/lib/translated/da/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/da/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/da/modules/translations/locales/fi.js +18 -0
- package/lib/translated/da/modules/translations/locales/fr.js +18 -0
- package/lib/translated/da/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/da/modules/translations/locales/he.js +3 -0
- package/lib/translated/da/modules/translations/locales/ht.js +18 -0
- package/lib/translated/da/modules/translations/locales/hu.js +3 -0
- package/lib/translated/da/modules/translations/locales/hy.js +3 -0
- package/lib/translated/da/modules/translations/locales/is.js +18 -0
- package/lib/translated/da/modules/translations/locales/it.js +18 -0
- package/lib/translated/da/modules/translations/locales/ja.js +18 -0
- package/lib/translated/da/modules/translations/locales/ko.js +3 -0
- package/lib/translated/da/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/da/modules/translations/locales/nb.js +18 -0
- package/lib/translated/da/modules/translations/locales/nl.js +18 -0
- package/lib/translated/da/modules/translations/locales/nn.js +15 -0
- package/lib/translated/da/modules/translations/locales/pl.js +18 -0
- package/lib/translated/da/modules/translations/locales/pt.js +20 -2
- package/lib/translated/da/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/da/modules/translations/locales/ru.js +18 -0
- package/lib/translated/da/modules/translations/locales/sl.js +18 -0
- package/lib/translated/da/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/da/modules/translations/locales/sv.js +18 -0
- package/lib/translated/da/modules/translations/locales/th.js +19 -0
- package/lib/translated/da/modules/translations/locales/tr.js +3 -0
- package/lib/translated/da/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/da/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/da/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/da/modules/translations/locales/zh.js +18 -0
- package/lib/translated/da/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/da/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/da-x-k12/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/da-x-k12/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/da-x-k12/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/da-x-k12/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/da-x-k12/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/PreviewIcon.js +1 -1
- package/lib/translated/da-x-k12/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/da-x-k12/modules/translations/locales/ar.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/ca.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/cy.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/da-x-k12/modules/translations/locales/da.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/de.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/el.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/en.js +30 -0
- package/lib/translated/da-x-k12/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/da-x-k12/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/es.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/fi.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/fr.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/he.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/ht.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/hu.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/hy.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/is.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/it.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/ja.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/ko.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/da-x-k12/modules/translations/locales/nb.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/nl.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/nn.js +15 -0
- package/lib/translated/da-x-k12/modules/translations/locales/pl.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/pt.js +20 -2
- package/lib/translated/da-x-k12/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/ru.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/sl.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/da-x-k12/modules/translations/locales/sv.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/th.js +19 -0
- package/lib/translated/da-x-k12/modules/translations/locales/tr.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/da-x-k12/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/zh.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/da-x-k12/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/de/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/de/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/de/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/de/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/de/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/de/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/de/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/de/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/de/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/de/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/de/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/de/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/de/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/de/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/de/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/de/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/de/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/de/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/de/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/de/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/de/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/de/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/de/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/de/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/de/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/de/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/de/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/de/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/de/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/de/modules/translations/locales/ar.js +18 -0
- package/lib/translated/de/modules/translations/locales/ca.js +18 -0
- package/lib/translated/de/modules/translations/locales/cy.js +18 -0
- package/lib/translated/de/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/de/modules/translations/locales/da.js +18 -0
- package/lib/translated/de/modules/translations/locales/de.js +18 -0
- package/lib/translated/de/modules/translations/locales/el.js +3 -0
- package/lib/translated/de/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/de/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/de/modules/translations/locales/en.js +30 -0
- package/lib/translated/de/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/de/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/de/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/de/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/de/modules/translations/locales/es.js +18 -0
- package/lib/translated/de/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/de/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/de/modules/translations/locales/fi.js +18 -0
- package/lib/translated/de/modules/translations/locales/fr.js +18 -0
- package/lib/translated/de/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/de/modules/translations/locales/he.js +3 -0
- package/lib/translated/de/modules/translations/locales/ht.js +18 -0
- package/lib/translated/de/modules/translations/locales/hu.js +3 -0
- package/lib/translated/de/modules/translations/locales/hy.js +3 -0
- package/lib/translated/de/modules/translations/locales/is.js +18 -0
- package/lib/translated/de/modules/translations/locales/it.js +18 -0
- package/lib/translated/de/modules/translations/locales/ja.js +18 -0
- package/lib/translated/de/modules/translations/locales/ko.js +3 -0
- package/lib/translated/de/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/de/modules/translations/locales/nb.js +18 -0
- package/lib/translated/de/modules/translations/locales/nl.js +18 -0
- package/lib/translated/de/modules/translations/locales/nn.js +15 -0
- package/lib/translated/de/modules/translations/locales/pl.js +18 -0
- package/lib/translated/de/modules/translations/locales/pt.js +20 -2
- package/lib/translated/de/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/de/modules/translations/locales/ru.js +18 -0
- package/lib/translated/de/modules/translations/locales/sl.js +18 -0
- package/lib/translated/de/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/de/modules/translations/locales/sv.js +18 -0
- package/lib/translated/de/modules/translations/locales/th.js +19 -0
- package/lib/translated/de/modules/translations/locales/tr.js +3 -0
- package/lib/translated/de/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/de/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/de/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/de/modules/translations/locales/zh.js +18 -0
- package/lib/translated/de/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/de/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/el/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/el/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/el/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/el/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/el/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/el/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/el/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/el/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/el/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/el/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/el/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/el/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/el/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/el/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/el/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/el/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/el/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/el/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/el/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/el/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/el/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/el/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/el/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/el/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/el/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/el/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/el/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/el/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/el/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/el/modules/translations/locales/ar.js +18 -0
- package/lib/translated/el/modules/translations/locales/ca.js +18 -0
- package/lib/translated/el/modules/translations/locales/cy.js +18 -0
- package/lib/translated/el/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/el/modules/translations/locales/da.js +18 -0
- package/lib/translated/el/modules/translations/locales/de.js +18 -0
- package/lib/translated/el/modules/translations/locales/el.js +3 -0
- package/lib/translated/el/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/el/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/el/modules/translations/locales/en.js +30 -0
- package/lib/translated/el/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/el/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/el/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/el/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/el/modules/translations/locales/es.js +18 -0
- package/lib/translated/el/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/el/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/el/modules/translations/locales/fi.js +18 -0
- package/lib/translated/el/modules/translations/locales/fr.js +18 -0
- package/lib/translated/el/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/el/modules/translations/locales/he.js +3 -0
- package/lib/translated/el/modules/translations/locales/ht.js +18 -0
- package/lib/translated/el/modules/translations/locales/hu.js +3 -0
- package/lib/translated/el/modules/translations/locales/hy.js +3 -0
- package/lib/translated/el/modules/translations/locales/is.js +18 -0
- package/lib/translated/el/modules/translations/locales/it.js +18 -0
- package/lib/translated/el/modules/translations/locales/ja.js +18 -0
- package/lib/translated/el/modules/translations/locales/ko.js +3 -0
- package/lib/translated/el/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/el/modules/translations/locales/nb.js +18 -0
- package/lib/translated/el/modules/translations/locales/nl.js +18 -0
- package/lib/translated/el/modules/translations/locales/nn.js +15 -0
- package/lib/translated/el/modules/translations/locales/pl.js +18 -0
- package/lib/translated/el/modules/translations/locales/pt.js +20 -2
- package/lib/translated/el/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/el/modules/translations/locales/ru.js +18 -0
- package/lib/translated/el/modules/translations/locales/sl.js +18 -0
- package/lib/translated/el/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/el/modules/translations/locales/sv.js +18 -0
- package/lib/translated/el/modules/translations/locales/th.js +19 -0
- package/lib/translated/el/modules/translations/locales/tr.js +3 -0
- package/lib/translated/el/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/el/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/el/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/el/modules/translations/locales/zh.js +18 -0
- package/lib/translated/el/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/el/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/en/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/en/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/en/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/en/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/en/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/en/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/en/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/en/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/en/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/en/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/en/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/en/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/en/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/en/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/en/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/en/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/en/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/en/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/en/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/en/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/en/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/en/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/en/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/en/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/en/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/en/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/en/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/en/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/en/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/en/modules/translations/locales/ar.js +18 -0
- package/lib/translated/en/modules/translations/locales/ca.js +18 -0
- package/lib/translated/en/modules/translations/locales/cy.js +18 -0
- package/lib/translated/en/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/en/modules/translations/locales/da.js +18 -0
- package/lib/translated/en/modules/translations/locales/de.js +18 -0
- package/lib/translated/en/modules/translations/locales/el.js +3 -0
- package/lib/translated/en/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/en/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/en/modules/translations/locales/en.js +30 -0
- package/lib/translated/en/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/en/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/en/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/en/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/en/modules/translations/locales/es.js +18 -0
- package/lib/translated/en/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/en/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/en/modules/translations/locales/fi.js +18 -0
- package/lib/translated/en/modules/translations/locales/fr.js +18 -0
- package/lib/translated/en/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/en/modules/translations/locales/he.js +3 -0
- package/lib/translated/en/modules/translations/locales/ht.js +18 -0
- package/lib/translated/en/modules/translations/locales/hu.js +3 -0
- package/lib/translated/en/modules/translations/locales/hy.js +3 -0
- package/lib/translated/en/modules/translations/locales/is.js +18 -0
- package/lib/translated/en/modules/translations/locales/it.js +18 -0
- package/lib/translated/en/modules/translations/locales/ja.js +18 -0
- package/lib/translated/en/modules/translations/locales/ko.js +3 -0
- package/lib/translated/en/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/en/modules/translations/locales/nb.js +18 -0
- package/lib/translated/en/modules/translations/locales/nl.js +18 -0
- package/lib/translated/en/modules/translations/locales/nn.js +15 -0
- package/lib/translated/en/modules/translations/locales/pl.js +18 -0
- package/lib/translated/en/modules/translations/locales/pt.js +20 -2
- package/lib/translated/en/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/en/modules/translations/locales/ru.js +18 -0
- package/lib/translated/en/modules/translations/locales/sl.js +18 -0
- package/lib/translated/en/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/en/modules/translations/locales/sv.js +18 -0
- package/lib/translated/en/modules/translations/locales/th.js +19 -0
- package/lib/translated/en/modules/translations/locales/tr.js +3 -0
- package/lib/translated/en/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/en/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/en/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/en/modules/translations/locales/zh.js +18 -0
- package/lib/translated/en/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/en/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/en-AU-x-unimelb/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/en-AU-x-unimelb/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/en-AU-x-unimelb/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/ar.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/ca.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/cy.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/da.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/de.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/el.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/en.js +30 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/es.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/fi.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/fr.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/he.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/ht.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/hu.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/hy.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/is.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/it.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/ja.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/ko.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/nb.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/nl.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/nn.js +15 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/pl.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/pt.js +20 -2
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/ru.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/sl.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/sv.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/th.js +19 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/tr.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/zh.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/en-AU-x-unimelb/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/en-GB-x-ukhe/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/en-GB-x-ukhe/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/en-GB-x-ukhe/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/ar.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/ca.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/cy.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/da.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/de.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/el.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/en.js +30 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/es.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/fi.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/fr.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/he.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/ht.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/hu.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/hy.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/is.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/it.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/ja.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/ko.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/nb.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/nl.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/nn.js +15 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/pl.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/pt.js +20 -2
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/ru.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/sl.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/sv.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/th.js +19 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/tr.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/zh.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/en-GB-x-ukhe/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/en_AU/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/en_AU/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/en_AU/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/en_AU/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/en_AU/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/en_AU/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/en_AU/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/en_AU/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/en_AU/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/en_AU/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/en_AU/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/en_AU/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/en_AU/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/en_AU/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/en_AU/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/en_AU/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/en_AU/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/en_AU/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/en_AU/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/en_AU/modules/translations/locales/ar.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/ca.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/cy.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/en_AU/modules/translations/locales/da.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/de.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/el.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/en.js +30 -0
- package/lib/translated/en_AU/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/en_AU/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/es.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/fi.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/fr.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/he.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/ht.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/hu.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/hy.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/is.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/it.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/ja.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/ko.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/en_AU/modules/translations/locales/nb.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/nl.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/nn.js +15 -0
- package/lib/translated/en_AU/modules/translations/locales/pl.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/pt.js +20 -2
- package/lib/translated/en_AU/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/ru.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/sl.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/en_AU/modules/translations/locales/sv.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/th.js +19 -0
- package/lib/translated/en_AU/modules/translations/locales/tr.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/en_AU/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/zh.js +18 -0
- package/lib/translated/en_AU/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/en_AU/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/en_CA/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/en_CA/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/en_CA/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/en_CA/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/en_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/en_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/en_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/en_CA/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/en_CA/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/en_CA/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/en_CA/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/en_CA/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/en_CA/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/en_CA/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/en_CA/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/en_CA/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/en_CA/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/en_CA/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/en_CA/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/en_CA/modules/translations/locales/ar.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/ca.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/cy.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/en_CA/modules/translations/locales/da.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/de.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/el.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/en.js +30 -0
- package/lib/translated/en_CA/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/en_CA/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/es.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/fi.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/fr.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/he.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/ht.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/hu.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/hy.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/is.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/it.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/ja.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/ko.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/en_CA/modules/translations/locales/nb.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/nl.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/nn.js +15 -0
- package/lib/translated/en_CA/modules/translations/locales/pl.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/pt.js +20 -2
- package/lib/translated/en_CA/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/ru.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/sl.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/en_CA/modules/translations/locales/sv.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/th.js +19 -0
- package/lib/translated/en_CA/modules/translations/locales/tr.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/en_CA/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/zh.js +18 -0
- package/lib/translated/en_CA/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/en_CA/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/en_CY/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/en_CY/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/en_CY/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/en_CY/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/en_CY/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/en_CY/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/en_CY/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/en_CY/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/en_CY/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/en_CY/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/en_CY/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/en_CY/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/en_CY/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/en_CY/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/en_CY/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/en_CY/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/en_CY/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/en_CY/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/en_CY/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/en_CY/modules/translations/locales/ar.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/ca.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/cy.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/en_CY/modules/translations/locales/da.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/de.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/el.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/en.js +30 -0
- package/lib/translated/en_CY/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/en_CY/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/es.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/fi.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/fr.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/he.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/ht.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/hu.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/hy.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/is.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/it.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/ja.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/ko.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/en_CY/modules/translations/locales/nb.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/nl.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/nn.js +15 -0
- package/lib/translated/en_CY/modules/translations/locales/pl.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/pt.js +20 -2
- package/lib/translated/en_CY/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/ru.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/sl.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/en_CY/modules/translations/locales/sv.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/th.js +19 -0
- package/lib/translated/en_CY/modules/translations/locales/tr.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/en_CY/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/zh.js +18 -0
- package/lib/translated/en_CY/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/en_CY/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/en_GB/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/en_GB/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/en_GB/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/en_GB/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/en_GB/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/en_GB/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/en_GB/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/en_GB/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/en_GB/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/en_GB/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/en_GB/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/en_GB/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/en_GB/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/en_GB/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/en_GB/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/en_GB/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/en_GB/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/en_GB/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/en_GB/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/en_GB/modules/translations/locales/ar.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/ca.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/cy.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/en_GB/modules/translations/locales/da.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/de.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/el.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/en.js +30 -0
- package/lib/translated/en_GB/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/en_GB/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/es.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/fi.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/fr.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/he.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/ht.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/hu.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/hy.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/is.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/it.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/ja.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/ko.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/en_GB/modules/translations/locales/nb.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/nl.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/nn.js +15 -0
- package/lib/translated/en_GB/modules/translations/locales/pl.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/pt.js +20 -2
- package/lib/translated/en_GB/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/ru.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/sl.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/en_GB/modules/translations/locales/sv.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/th.js +19 -0
- package/lib/translated/en_GB/modules/translations/locales/tr.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/en_GB/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/zh.js +18 -0
- package/lib/translated/en_GB/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/en_GB/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/es/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/es/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/es/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/es/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/es/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/es/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/es/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/es/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/es/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/es/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/es/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/es/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/es/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/es/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/es/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/es/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/es/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/es/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/es/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/es/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/es/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/es/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/es/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/es/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/es/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/es/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/es/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/es/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/es/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/es/modules/translations/locales/ar.js +18 -0
- package/lib/translated/es/modules/translations/locales/ca.js +18 -0
- package/lib/translated/es/modules/translations/locales/cy.js +18 -0
- package/lib/translated/es/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/es/modules/translations/locales/da.js +18 -0
- package/lib/translated/es/modules/translations/locales/de.js +18 -0
- package/lib/translated/es/modules/translations/locales/el.js +3 -0
- package/lib/translated/es/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/es/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/es/modules/translations/locales/en.js +30 -0
- package/lib/translated/es/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/es/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/es/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/es/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/es/modules/translations/locales/es.js +18 -0
- package/lib/translated/es/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/es/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/es/modules/translations/locales/fi.js +18 -0
- package/lib/translated/es/modules/translations/locales/fr.js +18 -0
- package/lib/translated/es/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/es/modules/translations/locales/he.js +3 -0
- package/lib/translated/es/modules/translations/locales/ht.js +18 -0
- package/lib/translated/es/modules/translations/locales/hu.js +3 -0
- package/lib/translated/es/modules/translations/locales/hy.js +3 -0
- package/lib/translated/es/modules/translations/locales/is.js +18 -0
- package/lib/translated/es/modules/translations/locales/it.js +18 -0
- package/lib/translated/es/modules/translations/locales/ja.js +18 -0
- package/lib/translated/es/modules/translations/locales/ko.js +3 -0
- package/lib/translated/es/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/es/modules/translations/locales/nb.js +18 -0
- package/lib/translated/es/modules/translations/locales/nl.js +18 -0
- package/lib/translated/es/modules/translations/locales/nn.js +15 -0
- package/lib/translated/es/modules/translations/locales/pl.js +18 -0
- package/lib/translated/es/modules/translations/locales/pt.js +20 -2
- package/lib/translated/es/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/es/modules/translations/locales/ru.js +18 -0
- package/lib/translated/es/modules/translations/locales/sl.js +18 -0
- package/lib/translated/es/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/es/modules/translations/locales/sv.js +18 -0
- package/lib/translated/es/modules/translations/locales/th.js +19 -0
- package/lib/translated/es/modules/translations/locales/tr.js +3 -0
- package/lib/translated/es/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/es/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/es/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/es/modules/translations/locales/zh.js +18 -0
- package/lib/translated/es/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/es/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/es_ES/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/es_ES/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/es_ES/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/es_ES/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/es_ES/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/es_ES/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/es_ES/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/es_ES/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/es_ES/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/es_ES/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/es_ES/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/es_ES/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/es_ES/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/es_ES/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/es_ES/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/es_ES/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/es_ES/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/es_ES/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/es_ES/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/es_ES/modules/translations/locales/ar.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/ca.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/cy.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/es_ES/modules/translations/locales/da.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/de.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/el.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/en.js +30 -0
- package/lib/translated/es_ES/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/es_ES/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/es.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/fi.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/fr.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/he.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/ht.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/hu.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/hy.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/is.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/it.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/ja.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/ko.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/es_ES/modules/translations/locales/nb.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/nl.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/nn.js +15 -0
- package/lib/translated/es_ES/modules/translations/locales/pl.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/pt.js +20 -2
- package/lib/translated/es_ES/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/ru.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/sl.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/es_ES/modules/translations/locales/sv.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/th.js +19 -0
- package/lib/translated/es_ES/modules/translations/locales/tr.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/es_ES/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/zh.js +18 -0
- package/lib/translated/es_ES/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/es_ES/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/fa_IR/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/fa_IR/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/fa_IR/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/fa_IR/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/fa_IR/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/fa_IR/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/fa_IR/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/fa_IR/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/fa_IR/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/fa_IR/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/fa_IR/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/fa_IR/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/fa_IR/modules/translations/locales/ar.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/ca.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/cy.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/fa_IR/modules/translations/locales/da.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/de.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/el.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/en.js +30 -0
- package/lib/translated/fa_IR/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/fa_IR/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/es.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/fi.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/fr.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/he.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/ht.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/hu.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/hy.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/is.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/it.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/ja.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/ko.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/fa_IR/modules/translations/locales/nb.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/nl.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/nn.js +15 -0
- package/lib/translated/fa_IR/modules/translations/locales/pl.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/pt.js +20 -2
- package/lib/translated/fa_IR/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/ru.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/sl.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/fa_IR/modules/translations/locales/sv.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/th.js +19 -0
- package/lib/translated/fa_IR/modules/translations/locales/tr.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/fa_IR/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/zh.js +18 -0
- package/lib/translated/fa_IR/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/fa_IR/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/fi/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/fi/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/fi/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/fi/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/fi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/fi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/fi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/fi/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/fi/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/fi/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/fi/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/fi/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/fi/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/fi/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/fi/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/fi/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/fi/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/fi/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/fi/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/fi/modules/translations/locales/ar.js +18 -0
- package/lib/translated/fi/modules/translations/locales/ca.js +18 -0
- package/lib/translated/fi/modules/translations/locales/cy.js +18 -0
- package/lib/translated/fi/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/fi/modules/translations/locales/da.js +18 -0
- package/lib/translated/fi/modules/translations/locales/de.js +18 -0
- package/lib/translated/fi/modules/translations/locales/el.js +3 -0
- package/lib/translated/fi/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/fi/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/fi/modules/translations/locales/en.js +30 -0
- package/lib/translated/fi/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/fi/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/fi/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/fi/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/fi/modules/translations/locales/es.js +18 -0
- package/lib/translated/fi/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/fi/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/fi/modules/translations/locales/fi.js +18 -0
- package/lib/translated/fi/modules/translations/locales/fr.js +18 -0
- package/lib/translated/fi/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/fi/modules/translations/locales/he.js +3 -0
- package/lib/translated/fi/modules/translations/locales/ht.js +18 -0
- package/lib/translated/fi/modules/translations/locales/hu.js +3 -0
- package/lib/translated/fi/modules/translations/locales/hy.js +3 -0
- package/lib/translated/fi/modules/translations/locales/is.js +18 -0
- package/lib/translated/fi/modules/translations/locales/it.js +18 -0
- package/lib/translated/fi/modules/translations/locales/ja.js +18 -0
- package/lib/translated/fi/modules/translations/locales/ko.js +3 -0
- package/lib/translated/fi/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/fi/modules/translations/locales/nb.js +18 -0
- package/lib/translated/fi/modules/translations/locales/nl.js +18 -0
- package/lib/translated/fi/modules/translations/locales/nn.js +15 -0
- package/lib/translated/fi/modules/translations/locales/pl.js +18 -0
- package/lib/translated/fi/modules/translations/locales/pt.js +20 -2
- package/lib/translated/fi/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/fi/modules/translations/locales/ru.js +18 -0
- package/lib/translated/fi/modules/translations/locales/sl.js +18 -0
- package/lib/translated/fi/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/fi/modules/translations/locales/sv.js +18 -0
- package/lib/translated/fi/modules/translations/locales/th.js +19 -0
- package/lib/translated/fi/modules/translations/locales/tr.js +3 -0
- package/lib/translated/fi/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/fi/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/fi/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/fi/modules/translations/locales/zh.js +18 -0
- package/lib/translated/fi/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/fi/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/fr/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/fr/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/fr/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/fr/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/fr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/fr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/fr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/fr/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/fr/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/fr/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/fr/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/fr/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/fr/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/fr/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/fr/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/fr/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/fr/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/fr/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/fr/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/fr/modules/translations/locales/ar.js +18 -0
- package/lib/translated/fr/modules/translations/locales/ca.js +18 -0
- package/lib/translated/fr/modules/translations/locales/cy.js +18 -0
- package/lib/translated/fr/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/fr/modules/translations/locales/da.js +18 -0
- package/lib/translated/fr/modules/translations/locales/de.js +18 -0
- package/lib/translated/fr/modules/translations/locales/el.js +3 -0
- package/lib/translated/fr/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/fr/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/fr/modules/translations/locales/en.js +30 -0
- package/lib/translated/fr/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/fr/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/fr/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/fr/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/fr/modules/translations/locales/es.js +18 -0
- package/lib/translated/fr/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/fr/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/fr/modules/translations/locales/fi.js +18 -0
- package/lib/translated/fr/modules/translations/locales/fr.js +18 -0
- package/lib/translated/fr/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/fr/modules/translations/locales/he.js +3 -0
- package/lib/translated/fr/modules/translations/locales/ht.js +18 -0
- package/lib/translated/fr/modules/translations/locales/hu.js +3 -0
- package/lib/translated/fr/modules/translations/locales/hy.js +3 -0
- package/lib/translated/fr/modules/translations/locales/is.js +18 -0
- package/lib/translated/fr/modules/translations/locales/it.js +18 -0
- package/lib/translated/fr/modules/translations/locales/ja.js +18 -0
- package/lib/translated/fr/modules/translations/locales/ko.js +3 -0
- package/lib/translated/fr/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/fr/modules/translations/locales/nb.js +18 -0
- package/lib/translated/fr/modules/translations/locales/nl.js +18 -0
- package/lib/translated/fr/modules/translations/locales/nn.js +15 -0
- package/lib/translated/fr/modules/translations/locales/pl.js +18 -0
- package/lib/translated/fr/modules/translations/locales/pt.js +20 -2
- package/lib/translated/fr/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/fr/modules/translations/locales/ru.js +18 -0
- package/lib/translated/fr/modules/translations/locales/sl.js +18 -0
- package/lib/translated/fr/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/fr/modules/translations/locales/sv.js +18 -0
- package/lib/translated/fr/modules/translations/locales/th.js +19 -0
- package/lib/translated/fr/modules/translations/locales/tr.js +3 -0
- package/lib/translated/fr/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/fr/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/fr/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/fr/modules/translations/locales/zh.js +18 -0
- package/lib/translated/fr/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/fr/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/fr_CA/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/fr_CA/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/fr_CA/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/fr_CA/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/fr_CA/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/fr_CA/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/fr_CA/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/fr_CA/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/fr_CA/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/fr_CA/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/fr_CA/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/fr_CA/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/fr_CA/modules/translations/locales/ar.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/ca.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/cy.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/fr_CA/modules/translations/locales/da.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/de.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/el.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/en.js +30 -0
- package/lib/translated/fr_CA/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/fr_CA/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/es.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/fi.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/fr.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/he.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/ht.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/hu.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/hy.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/is.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/it.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/ja.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/ko.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/fr_CA/modules/translations/locales/nb.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/nl.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/nn.js +15 -0
- package/lib/translated/fr_CA/modules/translations/locales/pl.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/pt.js +20 -2
- package/lib/translated/fr_CA/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/ru.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/sl.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/fr_CA/modules/translations/locales/sv.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/th.js +19 -0
- package/lib/translated/fr_CA/modules/translations/locales/tr.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/fr_CA/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/zh.js +18 -0
- package/lib/translated/fr_CA/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/fr_CA/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/he/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/he/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/he/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/he/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/he/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/he/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/he/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/he/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/he/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/he/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/he/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/he/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/he/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/he/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/he/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/he/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/he/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/he/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/he/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/he/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/he/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/he/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/he/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/he/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/he/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/he/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/he/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/he/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/he/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/he/modules/translations/locales/ar.js +18 -0
- package/lib/translated/he/modules/translations/locales/ca.js +18 -0
- package/lib/translated/he/modules/translations/locales/cy.js +18 -0
- package/lib/translated/he/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/he/modules/translations/locales/da.js +18 -0
- package/lib/translated/he/modules/translations/locales/de.js +18 -0
- package/lib/translated/he/modules/translations/locales/el.js +3 -0
- package/lib/translated/he/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/he/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/he/modules/translations/locales/en.js +30 -0
- package/lib/translated/he/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/he/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/he/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/he/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/he/modules/translations/locales/es.js +18 -0
- package/lib/translated/he/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/he/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/he/modules/translations/locales/fi.js +18 -0
- package/lib/translated/he/modules/translations/locales/fr.js +18 -0
- package/lib/translated/he/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/he/modules/translations/locales/he.js +3 -0
- package/lib/translated/he/modules/translations/locales/ht.js +18 -0
- package/lib/translated/he/modules/translations/locales/hu.js +3 -0
- package/lib/translated/he/modules/translations/locales/hy.js +3 -0
- package/lib/translated/he/modules/translations/locales/is.js +18 -0
- package/lib/translated/he/modules/translations/locales/it.js +18 -0
- package/lib/translated/he/modules/translations/locales/ja.js +18 -0
- package/lib/translated/he/modules/translations/locales/ko.js +3 -0
- package/lib/translated/he/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/he/modules/translations/locales/nb.js +18 -0
- package/lib/translated/he/modules/translations/locales/nl.js +18 -0
- package/lib/translated/he/modules/translations/locales/nn.js +15 -0
- package/lib/translated/he/modules/translations/locales/pl.js +18 -0
- package/lib/translated/he/modules/translations/locales/pt.js +20 -2
- package/lib/translated/he/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/he/modules/translations/locales/ru.js +18 -0
- package/lib/translated/he/modules/translations/locales/sl.js +18 -0
- package/lib/translated/he/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/he/modules/translations/locales/sv.js +18 -0
- package/lib/translated/he/modules/translations/locales/th.js +19 -0
- package/lib/translated/he/modules/translations/locales/tr.js +3 -0
- package/lib/translated/he/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/he/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/he/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/he/modules/translations/locales/zh.js +18 -0
- package/lib/translated/he/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/he/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/ht/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/ht/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/ht/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/ht/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/ht/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/ht/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/ht/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/ht/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/ht/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/ht/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/ht/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/ht/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/ht/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/ht/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/ht/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/ht/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/ht/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/ht/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/ht/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/ht/modules/translations/locales/ar.js +18 -0
- package/lib/translated/ht/modules/translations/locales/ca.js +18 -0
- package/lib/translated/ht/modules/translations/locales/cy.js +18 -0
- package/lib/translated/ht/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/ht/modules/translations/locales/da.js +18 -0
- package/lib/translated/ht/modules/translations/locales/de.js +18 -0
- package/lib/translated/ht/modules/translations/locales/el.js +3 -0
- package/lib/translated/ht/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/ht/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/ht/modules/translations/locales/en.js +30 -0
- package/lib/translated/ht/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/ht/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/ht/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/ht/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/ht/modules/translations/locales/es.js +18 -0
- package/lib/translated/ht/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/ht/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/ht/modules/translations/locales/fi.js +18 -0
- package/lib/translated/ht/modules/translations/locales/fr.js +18 -0
- package/lib/translated/ht/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/ht/modules/translations/locales/he.js +3 -0
- package/lib/translated/ht/modules/translations/locales/ht.js +18 -0
- package/lib/translated/ht/modules/translations/locales/hu.js +3 -0
- package/lib/translated/ht/modules/translations/locales/hy.js +3 -0
- package/lib/translated/ht/modules/translations/locales/is.js +18 -0
- package/lib/translated/ht/modules/translations/locales/it.js +18 -0
- package/lib/translated/ht/modules/translations/locales/ja.js +18 -0
- package/lib/translated/ht/modules/translations/locales/ko.js +3 -0
- package/lib/translated/ht/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/ht/modules/translations/locales/nb.js +18 -0
- package/lib/translated/ht/modules/translations/locales/nl.js +18 -0
- package/lib/translated/ht/modules/translations/locales/nn.js +15 -0
- package/lib/translated/ht/modules/translations/locales/pl.js +18 -0
- package/lib/translated/ht/modules/translations/locales/pt.js +20 -2
- package/lib/translated/ht/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/ht/modules/translations/locales/ru.js +18 -0
- package/lib/translated/ht/modules/translations/locales/sl.js +18 -0
- package/lib/translated/ht/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/ht/modules/translations/locales/sv.js +18 -0
- package/lib/translated/ht/modules/translations/locales/th.js +19 -0
- package/lib/translated/ht/modules/translations/locales/tr.js +3 -0
- package/lib/translated/ht/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/ht/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/ht/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/ht/modules/translations/locales/zh.js +18 -0
- package/lib/translated/ht/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/ht/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/hu/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/hu/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/hu/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/hu/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/hu/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/hu/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/hu/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/hu/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/hu/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/hu/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/hu/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/hu/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/hu/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/hu/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/hu/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/hu/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/hu/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/hu/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/hu/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/hu/modules/translations/locales/ar.js +18 -0
- package/lib/translated/hu/modules/translations/locales/ca.js +18 -0
- package/lib/translated/hu/modules/translations/locales/cy.js +18 -0
- package/lib/translated/hu/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/hu/modules/translations/locales/da.js +18 -0
- package/lib/translated/hu/modules/translations/locales/de.js +18 -0
- package/lib/translated/hu/modules/translations/locales/el.js +3 -0
- package/lib/translated/hu/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/hu/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/hu/modules/translations/locales/en.js +30 -0
- package/lib/translated/hu/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/hu/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/hu/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/hu/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/hu/modules/translations/locales/es.js +18 -0
- package/lib/translated/hu/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/hu/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/hu/modules/translations/locales/fi.js +18 -0
- package/lib/translated/hu/modules/translations/locales/fr.js +18 -0
- package/lib/translated/hu/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/hu/modules/translations/locales/he.js +3 -0
- package/lib/translated/hu/modules/translations/locales/ht.js +18 -0
- package/lib/translated/hu/modules/translations/locales/hu.js +3 -0
- package/lib/translated/hu/modules/translations/locales/hy.js +3 -0
- package/lib/translated/hu/modules/translations/locales/is.js +18 -0
- package/lib/translated/hu/modules/translations/locales/it.js +18 -0
- package/lib/translated/hu/modules/translations/locales/ja.js +18 -0
- package/lib/translated/hu/modules/translations/locales/ko.js +3 -0
- package/lib/translated/hu/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/hu/modules/translations/locales/nb.js +18 -0
- package/lib/translated/hu/modules/translations/locales/nl.js +18 -0
- package/lib/translated/hu/modules/translations/locales/nn.js +15 -0
- package/lib/translated/hu/modules/translations/locales/pl.js +18 -0
- package/lib/translated/hu/modules/translations/locales/pt.js +20 -2
- package/lib/translated/hu/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/hu/modules/translations/locales/ru.js +18 -0
- package/lib/translated/hu/modules/translations/locales/sl.js +18 -0
- package/lib/translated/hu/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/hu/modules/translations/locales/sv.js +18 -0
- package/lib/translated/hu/modules/translations/locales/th.js +19 -0
- package/lib/translated/hu/modules/translations/locales/tr.js +3 -0
- package/lib/translated/hu/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/hu/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/hu/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/hu/modules/translations/locales/zh.js +18 -0
- package/lib/translated/hu/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/hu/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/hy/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/hy/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/hy/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/hy/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/hy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/hy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/hy/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/hy/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/hy/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/hy/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/hy/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/hy/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/hy/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/hy/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/hy/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/hy/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/hy/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/hy/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/hy/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/hy/modules/translations/locales/ar.js +18 -0
- package/lib/translated/hy/modules/translations/locales/ca.js +18 -0
- package/lib/translated/hy/modules/translations/locales/cy.js +18 -0
- package/lib/translated/hy/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/hy/modules/translations/locales/da.js +18 -0
- package/lib/translated/hy/modules/translations/locales/de.js +18 -0
- package/lib/translated/hy/modules/translations/locales/el.js +3 -0
- package/lib/translated/hy/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/hy/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/hy/modules/translations/locales/en.js +30 -0
- package/lib/translated/hy/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/hy/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/hy/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/hy/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/hy/modules/translations/locales/es.js +18 -0
- package/lib/translated/hy/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/hy/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/hy/modules/translations/locales/fi.js +18 -0
- package/lib/translated/hy/modules/translations/locales/fr.js +18 -0
- package/lib/translated/hy/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/hy/modules/translations/locales/he.js +3 -0
- package/lib/translated/hy/modules/translations/locales/ht.js +18 -0
- package/lib/translated/hy/modules/translations/locales/hu.js +3 -0
- package/lib/translated/hy/modules/translations/locales/hy.js +3 -0
- package/lib/translated/hy/modules/translations/locales/is.js +18 -0
- package/lib/translated/hy/modules/translations/locales/it.js +18 -0
- package/lib/translated/hy/modules/translations/locales/ja.js +18 -0
- package/lib/translated/hy/modules/translations/locales/ko.js +3 -0
- package/lib/translated/hy/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/hy/modules/translations/locales/nb.js +18 -0
- package/lib/translated/hy/modules/translations/locales/nl.js +18 -0
- package/lib/translated/hy/modules/translations/locales/nn.js +15 -0
- package/lib/translated/hy/modules/translations/locales/pl.js +18 -0
- package/lib/translated/hy/modules/translations/locales/pt.js +20 -2
- package/lib/translated/hy/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/hy/modules/translations/locales/ru.js +18 -0
- package/lib/translated/hy/modules/translations/locales/sl.js +18 -0
- package/lib/translated/hy/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/hy/modules/translations/locales/sv.js +18 -0
- package/lib/translated/hy/modules/translations/locales/th.js +19 -0
- package/lib/translated/hy/modules/translations/locales/tr.js +3 -0
- package/lib/translated/hy/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/hy/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/hy/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/hy/modules/translations/locales/zh.js +18 -0
- package/lib/translated/hy/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/hy/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/is/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/is/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/is/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/is/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/is/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/is/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/is/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/is/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/is/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/is/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/is/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/is/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/is/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/is/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/is/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/is/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/is/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/is/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/is/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/is/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/is/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/is/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/is/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/is/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/is/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/is/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/is/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/is/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/is/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/is/modules/translations/locales/ar.js +18 -0
- package/lib/translated/is/modules/translations/locales/ca.js +18 -0
- package/lib/translated/is/modules/translations/locales/cy.js +18 -0
- package/lib/translated/is/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/is/modules/translations/locales/da.js +18 -0
- package/lib/translated/is/modules/translations/locales/de.js +18 -0
- package/lib/translated/is/modules/translations/locales/el.js +3 -0
- package/lib/translated/is/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/is/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/is/modules/translations/locales/en.js +30 -0
- package/lib/translated/is/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/is/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/is/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/is/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/is/modules/translations/locales/es.js +18 -0
- package/lib/translated/is/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/is/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/is/modules/translations/locales/fi.js +18 -0
- package/lib/translated/is/modules/translations/locales/fr.js +18 -0
- package/lib/translated/is/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/is/modules/translations/locales/he.js +3 -0
- package/lib/translated/is/modules/translations/locales/ht.js +18 -0
- package/lib/translated/is/modules/translations/locales/hu.js +3 -0
- package/lib/translated/is/modules/translations/locales/hy.js +3 -0
- package/lib/translated/is/modules/translations/locales/is.js +18 -0
- package/lib/translated/is/modules/translations/locales/it.js +18 -0
- package/lib/translated/is/modules/translations/locales/ja.js +18 -0
- package/lib/translated/is/modules/translations/locales/ko.js +3 -0
- package/lib/translated/is/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/is/modules/translations/locales/nb.js +18 -0
- package/lib/translated/is/modules/translations/locales/nl.js +18 -0
- package/lib/translated/is/modules/translations/locales/nn.js +15 -0
- package/lib/translated/is/modules/translations/locales/pl.js +18 -0
- package/lib/translated/is/modules/translations/locales/pt.js +20 -2
- package/lib/translated/is/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/is/modules/translations/locales/ru.js +18 -0
- package/lib/translated/is/modules/translations/locales/sl.js +18 -0
- package/lib/translated/is/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/is/modules/translations/locales/sv.js +18 -0
- package/lib/translated/is/modules/translations/locales/th.js +19 -0
- package/lib/translated/is/modules/translations/locales/tr.js +3 -0
- package/lib/translated/is/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/is/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/is/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/is/modules/translations/locales/zh.js +18 -0
- package/lib/translated/is/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/is/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/it/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/it/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/it/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/it/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/it/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/it/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/it/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/it/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/it/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/it/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/it/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/it/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/it/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/it/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/it/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/it/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/it/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/it/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/it/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/it/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/it/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/it/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/it/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/it/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/it/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/it/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/it/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/it/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/it/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/it/modules/translations/locales/ar.js +18 -0
- package/lib/translated/it/modules/translations/locales/ca.js +18 -0
- package/lib/translated/it/modules/translations/locales/cy.js +18 -0
- package/lib/translated/it/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/it/modules/translations/locales/da.js +18 -0
- package/lib/translated/it/modules/translations/locales/de.js +18 -0
- package/lib/translated/it/modules/translations/locales/el.js +3 -0
- package/lib/translated/it/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/it/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/it/modules/translations/locales/en.js +30 -0
- package/lib/translated/it/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/it/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/it/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/it/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/it/modules/translations/locales/es.js +18 -0
- package/lib/translated/it/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/it/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/it/modules/translations/locales/fi.js +18 -0
- package/lib/translated/it/modules/translations/locales/fr.js +18 -0
- package/lib/translated/it/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/it/modules/translations/locales/he.js +3 -0
- package/lib/translated/it/modules/translations/locales/ht.js +18 -0
- package/lib/translated/it/modules/translations/locales/hu.js +3 -0
- package/lib/translated/it/modules/translations/locales/hy.js +3 -0
- package/lib/translated/it/modules/translations/locales/is.js +18 -0
- package/lib/translated/it/modules/translations/locales/it.js +18 -0
- package/lib/translated/it/modules/translations/locales/ja.js +18 -0
- package/lib/translated/it/modules/translations/locales/ko.js +3 -0
- package/lib/translated/it/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/it/modules/translations/locales/nb.js +18 -0
- package/lib/translated/it/modules/translations/locales/nl.js +18 -0
- package/lib/translated/it/modules/translations/locales/nn.js +15 -0
- package/lib/translated/it/modules/translations/locales/pl.js +18 -0
- package/lib/translated/it/modules/translations/locales/pt.js +20 -2
- package/lib/translated/it/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/it/modules/translations/locales/ru.js +18 -0
- package/lib/translated/it/modules/translations/locales/sl.js +18 -0
- package/lib/translated/it/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/it/modules/translations/locales/sv.js +18 -0
- package/lib/translated/it/modules/translations/locales/th.js +19 -0
- package/lib/translated/it/modules/translations/locales/tr.js +3 -0
- package/lib/translated/it/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/it/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/it/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/it/modules/translations/locales/zh.js +18 -0
- package/lib/translated/it/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/it/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/ja/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/ja/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/ja/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/ja/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/ja/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/ja/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/ja/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/ja/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/ja/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/ja/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/ja/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/ja/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/ja/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/ja/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/ja/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/ja/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/ja/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/ja/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/ja/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/ja/modules/translations/locales/ar.js +18 -0
- package/lib/translated/ja/modules/translations/locales/ca.js +18 -0
- package/lib/translated/ja/modules/translations/locales/cy.js +18 -0
- package/lib/translated/ja/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/ja/modules/translations/locales/da.js +18 -0
- package/lib/translated/ja/modules/translations/locales/de.js +18 -0
- package/lib/translated/ja/modules/translations/locales/el.js +3 -0
- package/lib/translated/ja/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/ja/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/ja/modules/translations/locales/en.js +30 -0
- package/lib/translated/ja/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/ja/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/ja/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/ja/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/ja/modules/translations/locales/es.js +18 -0
- package/lib/translated/ja/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/ja/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/ja/modules/translations/locales/fi.js +18 -0
- package/lib/translated/ja/modules/translations/locales/fr.js +18 -0
- package/lib/translated/ja/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/ja/modules/translations/locales/he.js +3 -0
- package/lib/translated/ja/modules/translations/locales/ht.js +18 -0
- package/lib/translated/ja/modules/translations/locales/hu.js +3 -0
- package/lib/translated/ja/modules/translations/locales/hy.js +3 -0
- package/lib/translated/ja/modules/translations/locales/is.js +18 -0
- package/lib/translated/ja/modules/translations/locales/it.js +18 -0
- package/lib/translated/ja/modules/translations/locales/ja.js +18 -0
- package/lib/translated/ja/modules/translations/locales/ko.js +3 -0
- package/lib/translated/ja/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/ja/modules/translations/locales/nb.js +18 -0
- package/lib/translated/ja/modules/translations/locales/nl.js +18 -0
- package/lib/translated/ja/modules/translations/locales/nn.js +15 -0
- package/lib/translated/ja/modules/translations/locales/pl.js +18 -0
- package/lib/translated/ja/modules/translations/locales/pt.js +20 -2
- package/lib/translated/ja/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/ja/modules/translations/locales/ru.js +18 -0
- package/lib/translated/ja/modules/translations/locales/sl.js +18 -0
- package/lib/translated/ja/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/ja/modules/translations/locales/sv.js +18 -0
- package/lib/translated/ja/modules/translations/locales/th.js +19 -0
- package/lib/translated/ja/modules/translations/locales/tr.js +3 -0
- package/lib/translated/ja/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/ja/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/ja/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/ja/modules/translations/locales/zh.js +18 -0
- package/lib/translated/ja/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/ja/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/ko/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/ko/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/ko/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/ko/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/ko/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/ko/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/ko/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/ko/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/ko/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/ko/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/ko/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/ko/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/ko/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/ko/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/ko/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/ko/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/ko/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/ko/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/ko/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/ko/modules/translations/locales/ar.js +18 -0
- package/lib/translated/ko/modules/translations/locales/ca.js +18 -0
- package/lib/translated/ko/modules/translations/locales/cy.js +18 -0
- package/lib/translated/ko/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/ko/modules/translations/locales/da.js +18 -0
- package/lib/translated/ko/modules/translations/locales/de.js +18 -0
- package/lib/translated/ko/modules/translations/locales/el.js +3 -0
- package/lib/translated/ko/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/ko/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/ko/modules/translations/locales/en.js +30 -0
- package/lib/translated/ko/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/ko/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/ko/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/ko/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/ko/modules/translations/locales/es.js +18 -0
- package/lib/translated/ko/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/ko/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/ko/modules/translations/locales/fi.js +18 -0
- package/lib/translated/ko/modules/translations/locales/fr.js +18 -0
- package/lib/translated/ko/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/ko/modules/translations/locales/he.js +3 -0
- package/lib/translated/ko/modules/translations/locales/ht.js +18 -0
- package/lib/translated/ko/modules/translations/locales/hu.js +3 -0
- package/lib/translated/ko/modules/translations/locales/hy.js +3 -0
- package/lib/translated/ko/modules/translations/locales/is.js +18 -0
- package/lib/translated/ko/modules/translations/locales/it.js +18 -0
- package/lib/translated/ko/modules/translations/locales/ja.js +18 -0
- package/lib/translated/ko/modules/translations/locales/ko.js +3 -0
- package/lib/translated/ko/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/ko/modules/translations/locales/nb.js +18 -0
- package/lib/translated/ko/modules/translations/locales/nl.js +18 -0
- package/lib/translated/ko/modules/translations/locales/nn.js +15 -0
- package/lib/translated/ko/modules/translations/locales/pl.js +18 -0
- package/lib/translated/ko/modules/translations/locales/pt.js +20 -2
- package/lib/translated/ko/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/ko/modules/translations/locales/ru.js +18 -0
- package/lib/translated/ko/modules/translations/locales/sl.js +18 -0
- package/lib/translated/ko/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/ko/modules/translations/locales/sv.js +18 -0
- package/lib/translated/ko/modules/translations/locales/th.js +19 -0
- package/lib/translated/ko/modules/translations/locales/tr.js +3 -0
- package/lib/translated/ko/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/ko/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/ko/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/ko/modules/translations/locales/zh.js +18 -0
- package/lib/translated/ko/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/ko/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/mi/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/mi/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/mi/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/mi/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/mi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/mi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/mi/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/mi/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/mi/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/mi/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/mi/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/mi/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/mi/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/mi/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/mi/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/mi/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/mi/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/mi/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/mi/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/mi/modules/translations/locales/ar.js +18 -0
- package/lib/translated/mi/modules/translations/locales/ca.js +18 -0
- package/lib/translated/mi/modules/translations/locales/cy.js +18 -0
- package/lib/translated/mi/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/mi/modules/translations/locales/da.js +18 -0
- package/lib/translated/mi/modules/translations/locales/de.js +18 -0
- package/lib/translated/mi/modules/translations/locales/el.js +3 -0
- package/lib/translated/mi/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/mi/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/mi/modules/translations/locales/en.js +30 -0
- package/lib/translated/mi/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/mi/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/mi/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/mi/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/mi/modules/translations/locales/es.js +18 -0
- package/lib/translated/mi/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/mi/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/mi/modules/translations/locales/fi.js +18 -0
- package/lib/translated/mi/modules/translations/locales/fr.js +18 -0
- package/lib/translated/mi/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/mi/modules/translations/locales/he.js +3 -0
- package/lib/translated/mi/modules/translations/locales/ht.js +18 -0
- package/lib/translated/mi/modules/translations/locales/hu.js +3 -0
- package/lib/translated/mi/modules/translations/locales/hy.js +3 -0
- package/lib/translated/mi/modules/translations/locales/is.js +18 -0
- package/lib/translated/mi/modules/translations/locales/it.js +18 -0
- package/lib/translated/mi/modules/translations/locales/ja.js +18 -0
- package/lib/translated/mi/modules/translations/locales/ko.js +3 -0
- package/lib/translated/mi/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/mi/modules/translations/locales/nb.js +18 -0
- package/lib/translated/mi/modules/translations/locales/nl.js +18 -0
- package/lib/translated/mi/modules/translations/locales/nn.js +15 -0
- package/lib/translated/mi/modules/translations/locales/pl.js +18 -0
- package/lib/translated/mi/modules/translations/locales/pt.js +20 -2
- package/lib/translated/mi/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/mi/modules/translations/locales/ru.js +18 -0
- package/lib/translated/mi/modules/translations/locales/sl.js +18 -0
- package/lib/translated/mi/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/mi/modules/translations/locales/sv.js +18 -0
- package/lib/translated/mi/modules/translations/locales/th.js +19 -0
- package/lib/translated/mi/modules/translations/locales/tr.js +3 -0
- package/lib/translated/mi/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/mi/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/mi/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/mi/modules/translations/locales/zh.js +18 -0
- package/lib/translated/mi/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/mi/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/nb/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/nb/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/nb/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/nb/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/nb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/nb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/nb/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/nb/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/nb/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/nb/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/nb/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/nb/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/nb/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/nb/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/nb/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/nb/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/nb/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/nb/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/nb/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/nb/modules/translations/locales/ar.js +18 -0
- package/lib/translated/nb/modules/translations/locales/ca.js +18 -0
- package/lib/translated/nb/modules/translations/locales/cy.js +18 -0
- package/lib/translated/nb/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/nb/modules/translations/locales/da.js +18 -0
- package/lib/translated/nb/modules/translations/locales/de.js +18 -0
- package/lib/translated/nb/modules/translations/locales/el.js +3 -0
- package/lib/translated/nb/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/nb/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/nb/modules/translations/locales/en.js +30 -0
- package/lib/translated/nb/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/nb/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/nb/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/nb/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/nb/modules/translations/locales/es.js +18 -0
- package/lib/translated/nb/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/nb/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/nb/modules/translations/locales/fi.js +18 -0
- package/lib/translated/nb/modules/translations/locales/fr.js +18 -0
- package/lib/translated/nb/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/nb/modules/translations/locales/he.js +3 -0
- package/lib/translated/nb/modules/translations/locales/ht.js +18 -0
- package/lib/translated/nb/modules/translations/locales/hu.js +3 -0
- package/lib/translated/nb/modules/translations/locales/hy.js +3 -0
- package/lib/translated/nb/modules/translations/locales/is.js +18 -0
- package/lib/translated/nb/modules/translations/locales/it.js +18 -0
- package/lib/translated/nb/modules/translations/locales/ja.js +18 -0
- package/lib/translated/nb/modules/translations/locales/ko.js +3 -0
- package/lib/translated/nb/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/nb/modules/translations/locales/nb.js +18 -0
- package/lib/translated/nb/modules/translations/locales/nl.js +18 -0
- package/lib/translated/nb/modules/translations/locales/nn.js +15 -0
- package/lib/translated/nb/modules/translations/locales/pl.js +18 -0
- package/lib/translated/nb/modules/translations/locales/pt.js +20 -2
- package/lib/translated/nb/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/nb/modules/translations/locales/ru.js +18 -0
- package/lib/translated/nb/modules/translations/locales/sl.js +18 -0
- package/lib/translated/nb/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/nb/modules/translations/locales/sv.js +18 -0
- package/lib/translated/nb/modules/translations/locales/th.js +19 -0
- package/lib/translated/nb/modules/translations/locales/tr.js +3 -0
- package/lib/translated/nb/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/nb/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/nb/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/nb/modules/translations/locales/zh.js +18 -0
- package/lib/translated/nb/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/nb/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/nb-x-k12/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/nb-x-k12/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/nb-x-k12/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/nb-x-k12/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/PreviewIcon.js +1 -1
- package/lib/translated/nb-x-k12/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/nb-x-k12/modules/translations/locales/ar.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/ca.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/cy.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/da.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/de.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/el.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/en.js +30 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/es.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/fi.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/fr.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/he.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/ht.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/hu.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/hy.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/is.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/it.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/ja.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/ko.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/nb.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/nl.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/nn.js +15 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/pl.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/pt.js +20 -2
- package/lib/translated/nb-x-k12/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/ru.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/sl.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/sv.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/th.js +19 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/tr.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/zh.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/nb-x-k12/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/nl/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/nl/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/nl/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/nl/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/nl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/nl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/nl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/nl/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/nl/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/nl/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/nl/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/nl/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/nl/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/nl/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/nl/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/nl/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/nl/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/nl/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/nl/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/nl/modules/translations/locales/ar.js +18 -0
- package/lib/translated/nl/modules/translations/locales/ca.js +18 -0
- package/lib/translated/nl/modules/translations/locales/cy.js +18 -0
- package/lib/translated/nl/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/nl/modules/translations/locales/da.js +18 -0
- package/lib/translated/nl/modules/translations/locales/de.js +18 -0
- package/lib/translated/nl/modules/translations/locales/el.js +3 -0
- package/lib/translated/nl/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/nl/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/nl/modules/translations/locales/en.js +30 -0
- package/lib/translated/nl/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/nl/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/nl/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/nl/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/nl/modules/translations/locales/es.js +18 -0
- package/lib/translated/nl/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/nl/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/nl/modules/translations/locales/fi.js +18 -0
- package/lib/translated/nl/modules/translations/locales/fr.js +18 -0
- package/lib/translated/nl/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/nl/modules/translations/locales/he.js +3 -0
- package/lib/translated/nl/modules/translations/locales/ht.js +18 -0
- package/lib/translated/nl/modules/translations/locales/hu.js +3 -0
- package/lib/translated/nl/modules/translations/locales/hy.js +3 -0
- package/lib/translated/nl/modules/translations/locales/is.js +18 -0
- package/lib/translated/nl/modules/translations/locales/it.js +18 -0
- package/lib/translated/nl/modules/translations/locales/ja.js +18 -0
- package/lib/translated/nl/modules/translations/locales/ko.js +3 -0
- package/lib/translated/nl/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/nl/modules/translations/locales/nb.js +18 -0
- package/lib/translated/nl/modules/translations/locales/nl.js +18 -0
- package/lib/translated/nl/modules/translations/locales/nn.js +15 -0
- package/lib/translated/nl/modules/translations/locales/pl.js +18 -0
- package/lib/translated/nl/modules/translations/locales/pt.js +20 -2
- package/lib/translated/nl/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/nl/modules/translations/locales/ru.js +18 -0
- package/lib/translated/nl/modules/translations/locales/sl.js +18 -0
- package/lib/translated/nl/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/nl/modules/translations/locales/sv.js +18 -0
- package/lib/translated/nl/modules/translations/locales/th.js +19 -0
- package/lib/translated/nl/modules/translations/locales/tr.js +3 -0
- package/lib/translated/nl/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/nl/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/nl/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/nl/modules/translations/locales/zh.js +18 -0
- package/lib/translated/nl/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/nl/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/nn/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/nn/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/nn/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/nn/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/nn/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/nn/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/nn/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/nn/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/nn/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/nn/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/nn/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/nn/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/nn/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/nn/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/nn/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/nn/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/nn/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/nn/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/nn/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/nn/modules/translations/locales/ar.js +18 -0
- package/lib/translated/nn/modules/translations/locales/ca.js +18 -0
- package/lib/translated/nn/modules/translations/locales/cy.js +18 -0
- package/lib/translated/nn/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/nn/modules/translations/locales/da.js +18 -0
- package/lib/translated/nn/modules/translations/locales/de.js +18 -0
- package/lib/translated/nn/modules/translations/locales/el.js +3 -0
- package/lib/translated/nn/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/nn/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/nn/modules/translations/locales/en.js +30 -0
- package/lib/translated/nn/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/nn/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/nn/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/nn/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/nn/modules/translations/locales/es.js +18 -0
- package/lib/translated/nn/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/nn/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/nn/modules/translations/locales/fi.js +18 -0
- package/lib/translated/nn/modules/translations/locales/fr.js +18 -0
- package/lib/translated/nn/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/nn/modules/translations/locales/he.js +3 -0
- package/lib/translated/nn/modules/translations/locales/ht.js +18 -0
- package/lib/translated/nn/modules/translations/locales/hu.js +3 -0
- package/lib/translated/nn/modules/translations/locales/hy.js +3 -0
- package/lib/translated/nn/modules/translations/locales/is.js +18 -0
- package/lib/translated/nn/modules/translations/locales/it.js +18 -0
- package/lib/translated/nn/modules/translations/locales/ja.js +18 -0
- package/lib/translated/nn/modules/translations/locales/ko.js +3 -0
- package/lib/translated/nn/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/nn/modules/translations/locales/nb.js +18 -0
- package/lib/translated/nn/modules/translations/locales/nl.js +18 -0
- package/lib/translated/nn/modules/translations/locales/nn.js +15 -0
- package/lib/translated/nn/modules/translations/locales/pl.js +18 -0
- package/lib/translated/nn/modules/translations/locales/pt.js +20 -2
- package/lib/translated/nn/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/nn/modules/translations/locales/ru.js +18 -0
- package/lib/translated/nn/modules/translations/locales/sl.js +18 -0
- package/lib/translated/nn/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/nn/modules/translations/locales/sv.js +18 -0
- package/lib/translated/nn/modules/translations/locales/th.js +19 -0
- package/lib/translated/nn/modules/translations/locales/tr.js +3 -0
- package/lib/translated/nn/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/nn/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/nn/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/nn/modules/translations/locales/zh.js +18 -0
- package/lib/translated/nn/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/nn/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/pl/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/pl/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/pl/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/pl/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/pl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/pl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/pl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/pl/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/pl/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/pl/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/pl/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/pl/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/pl/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/pl/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/pl/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/pl/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/pl/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/pl/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/pl/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/pl/modules/translations/locales/ar.js +18 -0
- package/lib/translated/pl/modules/translations/locales/ca.js +18 -0
- package/lib/translated/pl/modules/translations/locales/cy.js +18 -0
- package/lib/translated/pl/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/pl/modules/translations/locales/da.js +18 -0
- package/lib/translated/pl/modules/translations/locales/de.js +18 -0
- package/lib/translated/pl/modules/translations/locales/el.js +3 -0
- package/lib/translated/pl/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/pl/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/pl/modules/translations/locales/en.js +30 -0
- package/lib/translated/pl/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/pl/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/pl/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/pl/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/pl/modules/translations/locales/es.js +18 -0
- package/lib/translated/pl/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/pl/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/pl/modules/translations/locales/fi.js +18 -0
- package/lib/translated/pl/modules/translations/locales/fr.js +18 -0
- package/lib/translated/pl/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/pl/modules/translations/locales/he.js +3 -0
- package/lib/translated/pl/modules/translations/locales/ht.js +18 -0
- package/lib/translated/pl/modules/translations/locales/hu.js +3 -0
- package/lib/translated/pl/modules/translations/locales/hy.js +3 -0
- package/lib/translated/pl/modules/translations/locales/is.js +18 -0
- package/lib/translated/pl/modules/translations/locales/it.js +18 -0
- package/lib/translated/pl/modules/translations/locales/ja.js +18 -0
- package/lib/translated/pl/modules/translations/locales/ko.js +3 -0
- package/lib/translated/pl/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/pl/modules/translations/locales/nb.js +18 -0
- package/lib/translated/pl/modules/translations/locales/nl.js +18 -0
- package/lib/translated/pl/modules/translations/locales/nn.js +15 -0
- package/lib/translated/pl/modules/translations/locales/pl.js +18 -0
- package/lib/translated/pl/modules/translations/locales/pt.js +20 -2
- package/lib/translated/pl/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/pl/modules/translations/locales/ru.js +18 -0
- package/lib/translated/pl/modules/translations/locales/sl.js +18 -0
- package/lib/translated/pl/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/pl/modules/translations/locales/sv.js +18 -0
- package/lib/translated/pl/modules/translations/locales/th.js +19 -0
- package/lib/translated/pl/modules/translations/locales/tr.js +3 -0
- package/lib/translated/pl/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/pl/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/pl/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/pl/modules/translations/locales/zh.js +18 -0
- package/lib/translated/pl/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/pl/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/pt/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/pt/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/pt/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/pt/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/pt/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/pt/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/pt/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/pt/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/pt/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/pt/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_links/components/Link.js +2 -2
- package/lib/translated/pt/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/pt/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/pt/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/pt/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/pt/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/pt/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/pt/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/pt/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/pt/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/pt/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/pt/modules/translations/locales/ar.js +18 -0
- package/lib/translated/pt/modules/translations/locales/ca.js +18 -0
- package/lib/translated/pt/modules/translations/locales/cy.js +18 -0
- package/lib/translated/pt/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/pt/modules/translations/locales/da.js +18 -0
- package/lib/translated/pt/modules/translations/locales/de.js +18 -0
- package/lib/translated/pt/modules/translations/locales/el.js +3 -0
- package/lib/translated/pt/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/pt/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/pt/modules/translations/locales/en.js +30 -0
- package/lib/translated/pt/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/pt/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/pt/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/pt/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/pt/modules/translations/locales/es.js +18 -0
- package/lib/translated/pt/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/pt/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/pt/modules/translations/locales/fi.js +18 -0
- package/lib/translated/pt/modules/translations/locales/fr.js +18 -0
- package/lib/translated/pt/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/pt/modules/translations/locales/he.js +3 -0
- package/lib/translated/pt/modules/translations/locales/ht.js +18 -0
- package/lib/translated/pt/modules/translations/locales/hu.js +3 -0
- package/lib/translated/pt/modules/translations/locales/hy.js +3 -0
- package/lib/translated/pt/modules/translations/locales/is.js +18 -0
- package/lib/translated/pt/modules/translations/locales/it.js +18 -0
- package/lib/translated/pt/modules/translations/locales/ja.js +18 -0
- package/lib/translated/pt/modules/translations/locales/ko.js +3 -0
- package/lib/translated/pt/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/pt/modules/translations/locales/nb.js +18 -0
- package/lib/translated/pt/modules/translations/locales/nl.js +18 -0
- package/lib/translated/pt/modules/translations/locales/nn.js +15 -0
- package/lib/translated/pt/modules/translations/locales/pl.js +18 -0
- package/lib/translated/pt/modules/translations/locales/pt.js +20 -2
- package/lib/translated/pt/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/pt/modules/translations/locales/ru.js +18 -0
- package/lib/translated/pt/modules/translations/locales/sl.js +18 -0
- package/lib/translated/pt/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/pt/modules/translations/locales/sv.js +18 -0
- package/lib/translated/pt/modules/translations/locales/th.js +19 -0
- package/lib/translated/pt/modules/translations/locales/tr.js +3 -0
- package/lib/translated/pt/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/pt/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/pt/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/pt/modules/translations/locales/zh.js +18 -0
- package/lib/translated/pt/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/pt/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/pt_BR/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/pt_BR/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/pt_BR/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/pt_BR/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/pt_BR/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/pt_BR/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/pt_BR/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/pt_BR/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/pt_BR/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/pt_BR/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/pt_BR/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/pt_BR/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/pt_BR/modules/translations/locales/ar.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/ca.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/cy.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/pt_BR/modules/translations/locales/da.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/de.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/el.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/en.js +30 -0
- package/lib/translated/pt_BR/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/pt_BR/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/es.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/fi.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/fr.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/he.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/ht.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/hu.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/hy.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/is.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/it.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/ja.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/ko.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/pt_BR/modules/translations/locales/nb.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/nl.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/nn.js +15 -0
- package/lib/translated/pt_BR/modules/translations/locales/pl.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/pt.js +20 -2
- package/lib/translated/pt_BR/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/ru.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/sl.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/pt_BR/modules/translations/locales/sv.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/th.js +19 -0
- package/lib/translated/pt_BR/modules/translations/locales/tr.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/pt_BR/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/zh.js +18 -0
- package/lib/translated/pt_BR/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/pt_BR/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/ru/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/ru/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/ru/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/ru/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/ru/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/ru/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/ru/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/ru/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/ru/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/ru/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/ru/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/ru/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/ru/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/ru/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/ru/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/ru/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/ru/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/ru/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/ru/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/ru/modules/translations/locales/ar.js +18 -0
- package/lib/translated/ru/modules/translations/locales/ca.js +18 -0
- package/lib/translated/ru/modules/translations/locales/cy.js +18 -0
- package/lib/translated/ru/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/ru/modules/translations/locales/da.js +18 -0
- package/lib/translated/ru/modules/translations/locales/de.js +18 -0
- package/lib/translated/ru/modules/translations/locales/el.js +3 -0
- package/lib/translated/ru/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/ru/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/ru/modules/translations/locales/en.js +30 -0
- package/lib/translated/ru/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/ru/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/ru/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/ru/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/ru/modules/translations/locales/es.js +18 -0
- package/lib/translated/ru/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/ru/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/ru/modules/translations/locales/fi.js +18 -0
- package/lib/translated/ru/modules/translations/locales/fr.js +18 -0
- package/lib/translated/ru/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/ru/modules/translations/locales/he.js +3 -0
- package/lib/translated/ru/modules/translations/locales/ht.js +18 -0
- package/lib/translated/ru/modules/translations/locales/hu.js +3 -0
- package/lib/translated/ru/modules/translations/locales/hy.js +3 -0
- package/lib/translated/ru/modules/translations/locales/is.js +18 -0
- package/lib/translated/ru/modules/translations/locales/it.js +18 -0
- package/lib/translated/ru/modules/translations/locales/ja.js +18 -0
- package/lib/translated/ru/modules/translations/locales/ko.js +3 -0
- package/lib/translated/ru/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/ru/modules/translations/locales/nb.js +18 -0
- package/lib/translated/ru/modules/translations/locales/nl.js +18 -0
- package/lib/translated/ru/modules/translations/locales/nn.js +15 -0
- package/lib/translated/ru/modules/translations/locales/pl.js +18 -0
- package/lib/translated/ru/modules/translations/locales/pt.js +20 -2
- package/lib/translated/ru/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/ru/modules/translations/locales/ru.js +18 -0
- package/lib/translated/ru/modules/translations/locales/sl.js +18 -0
- package/lib/translated/ru/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/ru/modules/translations/locales/sv.js +18 -0
- package/lib/translated/ru/modules/translations/locales/th.js +19 -0
- package/lib/translated/ru/modules/translations/locales/tr.js +3 -0
- package/lib/translated/ru/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/ru/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/ru/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/ru/modules/translations/locales/zh.js +18 -0
- package/lib/translated/ru/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/ru/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/se/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/se/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/se/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/se/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/se/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/se/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/se/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/se/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/se/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/se/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/se/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/se/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/se/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/se/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/se/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/se/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/se/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/se/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/se/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/se/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/se/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/se/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/se/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/se/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/se/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/se/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/se/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/se/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/se/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/se/modules/translations/locales/ar.js +18 -0
- package/lib/translated/se/modules/translations/locales/ca.js +18 -0
- package/lib/translated/se/modules/translations/locales/cy.js +18 -0
- package/lib/translated/se/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/se/modules/translations/locales/da.js +18 -0
- package/lib/translated/se/modules/translations/locales/de.js +18 -0
- package/lib/translated/se/modules/translations/locales/el.js +3 -0
- package/lib/translated/se/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/se/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/se/modules/translations/locales/en.js +30 -0
- package/lib/translated/se/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/se/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/se/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/se/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/se/modules/translations/locales/es.js +18 -0
- package/lib/translated/se/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/se/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/se/modules/translations/locales/fi.js +18 -0
- package/lib/translated/se/modules/translations/locales/fr.js +18 -0
- package/lib/translated/se/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/se/modules/translations/locales/he.js +3 -0
- package/lib/translated/se/modules/translations/locales/ht.js +18 -0
- package/lib/translated/se/modules/translations/locales/hu.js +3 -0
- package/lib/translated/se/modules/translations/locales/hy.js +3 -0
- package/lib/translated/se/modules/translations/locales/is.js +18 -0
- package/lib/translated/se/modules/translations/locales/it.js +18 -0
- package/lib/translated/se/modules/translations/locales/ja.js +18 -0
- package/lib/translated/se/modules/translations/locales/ko.js +3 -0
- package/lib/translated/se/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/se/modules/translations/locales/nb.js +18 -0
- package/lib/translated/se/modules/translations/locales/nl.js +18 -0
- package/lib/translated/se/modules/translations/locales/nn.js +15 -0
- package/lib/translated/se/modules/translations/locales/pl.js +18 -0
- package/lib/translated/se/modules/translations/locales/pt.js +20 -2
- package/lib/translated/se/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/se/modules/translations/locales/ru.js +18 -0
- package/lib/translated/se/modules/translations/locales/sl.js +18 -0
- package/lib/translated/se/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/se/modules/translations/locales/sv.js +18 -0
- package/lib/translated/se/modules/translations/locales/th.js +19 -0
- package/lib/translated/se/modules/translations/locales/tr.js +3 -0
- package/lib/translated/se/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/se/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/se/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/se/modules/translations/locales/zh.js +18 -0
- package/lib/translated/se/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/se/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/sl/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/sl/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/sl/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/sl/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/sl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/sl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/sl/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/sl/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/sl/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/sl/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/sl/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/sl/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/sl/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/sl/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/sl/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/sl/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/sl/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/sl/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/sl/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/sl/modules/translations/locales/ar.js +18 -0
- package/lib/translated/sl/modules/translations/locales/ca.js +18 -0
- package/lib/translated/sl/modules/translations/locales/cy.js +18 -0
- package/lib/translated/sl/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/sl/modules/translations/locales/da.js +18 -0
- package/lib/translated/sl/modules/translations/locales/de.js +18 -0
- package/lib/translated/sl/modules/translations/locales/el.js +3 -0
- package/lib/translated/sl/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/sl/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/sl/modules/translations/locales/en.js +30 -0
- package/lib/translated/sl/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/sl/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/sl/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/sl/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/sl/modules/translations/locales/es.js +18 -0
- package/lib/translated/sl/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/sl/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/sl/modules/translations/locales/fi.js +18 -0
- package/lib/translated/sl/modules/translations/locales/fr.js +18 -0
- package/lib/translated/sl/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/sl/modules/translations/locales/he.js +3 -0
- package/lib/translated/sl/modules/translations/locales/ht.js +18 -0
- package/lib/translated/sl/modules/translations/locales/hu.js +3 -0
- package/lib/translated/sl/modules/translations/locales/hy.js +3 -0
- package/lib/translated/sl/modules/translations/locales/is.js +18 -0
- package/lib/translated/sl/modules/translations/locales/it.js +18 -0
- package/lib/translated/sl/modules/translations/locales/ja.js +18 -0
- package/lib/translated/sl/modules/translations/locales/ko.js +3 -0
- package/lib/translated/sl/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/sl/modules/translations/locales/nb.js +18 -0
- package/lib/translated/sl/modules/translations/locales/nl.js +18 -0
- package/lib/translated/sl/modules/translations/locales/nn.js +15 -0
- package/lib/translated/sl/modules/translations/locales/pl.js +18 -0
- package/lib/translated/sl/modules/translations/locales/pt.js +20 -2
- package/lib/translated/sl/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/sl/modules/translations/locales/ru.js +18 -0
- package/lib/translated/sl/modules/translations/locales/sl.js +18 -0
- package/lib/translated/sl/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/sl/modules/translations/locales/sv.js +18 -0
- package/lib/translated/sl/modules/translations/locales/th.js +19 -0
- package/lib/translated/sl/modules/translations/locales/tr.js +3 -0
- package/lib/translated/sl/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/sl/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/sl/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/sl/modules/translations/locales/zh.js +18 -0
- package/lib/translated/sl/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/sl/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/sv/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/sv/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/sv/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/sv/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/sv/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/sv/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/sv/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/sv/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/sv/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/sv/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/sv/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/sv/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/sv/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/sv/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/sv/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/sv/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/sv/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/sv/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/sv/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/sv/modules/translations/locales/ar.js +18 -0
- package/lib/translated/sv/modules/translations/locales/ca.js +18 -0
- package/lib/translated/sv/modules/translations/locales/cy.js +18 -0
- package/lib/translated/sv/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/sv/modules/translations/locales/da.js +18 -0
- package/lib/translated/sv/modules/translations/locales/de.js +18 -0
- package/lib/translated/sv/modules/translations/locales/el.js +3 -0
- package/lib/translated/sv/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/sv/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/sv/modules/translations/locales/en.js +30 -0
- package/lib/translated/sv/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/sv/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/sv/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/sv/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/sv/modules/translations/locales/es.js +18 -0
- package/lib/translated/sv/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/sv/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/sv/modules/translations/locales/fi.js +18 -0
- package/lib/translated/sv/modules/translations/locales/fr.js +18 -0
- package/lib/translated/sv/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/sv/modules/translations/locales/he.js +3 -0
- package/lib/translated/sv/modules/translations/locales/ht.js +18 -0
- package/lib/translated/sv/modules/translations/locales/hu.js +3 -0
- package/lib/translated/sv/modules/translations/locales/hy.js +3 -0
- package/lib/translated/sv/modules/translations/locales/is.js +18 -0
- package/lib/translated/sv/modules/translations/locales/it.js +18 -0
- package/lib/translated/sv/modules/translations/locales/ja.js +18 -0
- package/lib/translated/sv/modules/translations/locales/ko.js +3 -0
- package/lib/translated/sv/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/sv/modules/translations/locales/nb.js +18 -0
- package/lib/translated/sv/modules/translations/locales/nl.js +18 -0
- package/lib/translated/sv/modules/translations/locales/nn.js +15 -0
- package/lib/translated/sv/modules/translations/locales/pl.js +18 -0
- package/lib/translated/sv/modules/translations/locales/pt.js +20 -2
- package/lib/translated/sv/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/sv/modules/translations/locales/ru.js +18 -0
- package/lib/translated/sv/modules/translations/locales/sl.js +18 -0
- package/lib/translated/sv/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/sv/modules/translations/locales/sv.js +18 -0
- package/lib/translated/sv/modules/translations/locales/th.js +19 -0
- package/lib/translated/sv/modules/translations/locales/tr.js +3 -0
- package/lib/translated/sv/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/sv/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/sv/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/sv/modules/translations/locales/zh.js +18 -0
- package/lib/translated/sv/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/sv/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/sv-x-k12/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/sv-x-k12/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/sv-x-k12/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/sv-x-k12/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/PreviewIcon.js +1 -1
- package/lib/translated/sv-x-k12/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/sv-x-k12/modules/translations/locales/ar.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/ca.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/cy.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/da.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/de.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/el.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/en.js +30 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/es.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/fi.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/fr.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/he.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/ht.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/hu.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/hy.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/is.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/it.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/ja.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/ko.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/nb.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/nl.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/nn.js +15 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/pl.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/pt.js +20 -2
- package/lib/translated/sv-x-k12/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/ru.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/sl.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/sv.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/th.js +19 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/tr.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/zh.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/sv-x-k12/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/th/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/th/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/th/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/th/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/th/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/th/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/th/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/th/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/th/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/th/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/th/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/th/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/th/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/th/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/th/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/th/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/th/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/th/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/th/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/th/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/th/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/th/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/th/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/th/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/th/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/th/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/th/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/th/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/th/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/th/modules/translations/locales/ar.js +18 -0
- package/lib/translated/th/modules/translations/locales/ca.js +18 -0
- package/lib/translated/th/modules/translations/locales/cy.js +18 -0
- package/lib/translated/th/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/th/modules/translations/locales/da.js +18 -0
- package/lib/translated/th/modules/translations/locales/de.js +18 -0
- package/lib/translated/th/modules/translations/locales/el.js +3 -0
- package/lib/translated/th/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/th/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/th/modules/translations/locales/en.js +30 -0
- package/lib/translated/th/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/th/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/th/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/th/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/th/modules/translations/locales/es.js +18 -0
- package/lib/translated/th/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/th/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/th/modules/translations/locales/fi.js +18 -0
- package/lib/translated/th/modules/translations/locales/fr.js +18 -0
- package/lib/translated/th/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/th/modules/translations/locales/he.js +3 -0
- package/lib/translated/th/modules/translations/locales/ht.js +18 -0
- package/lib/translated/th/modules/translations/locales/hu.js +3 -0
- package/lib/translated/th/modules/translations/locales/hy.js +3 -0
- package/lib/translated/th/modules/translations/locales/is.js +18 -0
- package/lib/translated/th/modules/translations/locales/it.js +18 -0
- package/lib/translated/th/modules/translations/locales/ja.js +18 -0
- package/lib/translated/th/modules/translations/locales/ko.js +3 -0
- package/lib/translated/th/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/th/modules/translations/locales/nb.js +18 -0
- package/lib/translated/th/modules/translations/locales/nl.js +18 -0
- package/lib/translated/th/modules/translations/locales/nn.js +15 -0
- package/lib/translated/th/modules/translations/locales/pl.js +18 -0
- package/lib/translated/th/modules/translations/locales/pt.js +20 -2
- package/lib/translated/th/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/th/modules/translations/locales/ru.js +18 -0
- package/lib/translated/th/modules/translations/locales/sl.js +18 -0
- package/lib/translated/th/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/th/modules/translations/locales/sv.js +18 -0
- package/lib/translated/th/modules/translations/locales/th.js +19 -0
- package/lib/translated/th/modules/translations/locales/tr.js +3 -0
- package/lib/translated/th/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/th/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/th/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/th/modules/translations/locales/zh.js +18 -0
- package/lib/translated/th/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/th/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/tr/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/tr/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/tr/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/tr/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/tr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/tr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/tr/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/tr/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/tr/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/tr/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/tr/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/tr/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/tr/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/tr/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/tr/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/tr/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/tr/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/tr/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/tr/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/tr/modules/translations/locales/ar.js +18 -0
- package/lib/translated/tr/modules/translations/locales/ca.js +18 -0
- package/lib/translated/tr/modules/translations/locales/cy.js +18 -0
- package/lib/translated/tr/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/tr/modules/translations/locales/da.js +18 -0
- package/lib/translated/tr/modules/translations/locales/de.js +18 -0
- package/lib/translated/tr/modules/translations/locales/el.js +3 -0
- package/lib/translated/tr/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/tr/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/tr/modules/translations/locales/en.js +30 -0
- package/lib/translated/tr/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/tr/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/tr/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/tr/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/tr/modules/translations/locales/es.js +18 -0
- package/lib/translated/tr/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/tr/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/tr/modules/translations/locales/fi.js +18 -0
- package/lib/translated/tr/modules/translations/locales/fr.js +18 -0
- package/lib/translated/tr/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/tr/modules/translations/locales/he.js +3 -0
- package/lib/translated/tr/modules/translations/locales/ht.js +18 -0
- package/lib/translated/tr/modules/translations/locales/hu.js +3 -0
- package/lib/translated/tr/modules/translations/locales/hy.js +3 -0
- package/lib/translated/tr/modules/translations/locales/is.js +18 -0
- package/lib/translated/tr/modules/translations/locales/it.js +18 -0
- package/lib/translated/tr/modules/translations/locales/ja.js +18 -0
- package/lib/translated/tr/modules/translations/locales/ko.js +3 -0
- package/lib/translated/tr/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/tr/modules/translations/locales/nb.js +18 -0
- package/lib/translated/tr/modules/translations/locales/nl.js +18 -0
- package/lib/translated/tr/modules/translations/locales/nn.js +15 -0
- package/lib/translated/tr/modules/translations/locales/pl.js +18 -0
- package/lib/translated/tr/modules/translations/locales/pt.js +20 -2
- package/lib/translated/tr/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/tr/modules/translations/locales/ru.js +18 -0
- package/lib/translated/tr/modules/translations/locales/sl.js +18 -0
- package/lib/translated/tr/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/tr/modules/translations/locales/sv.js +18 -0
- package/lib/translated/tr/modules/translations/locales/th.js +19 -0
- package/lib/translated/tr/modules/translations/locales/tr.js +3 -0
- package/lib/translated/tr/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/tr/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/tr/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/tr/modules/translations/locales/zh.js +18 -0
- package/lib/translated/tr/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/tr/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/uk_UA/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/uk_UA/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/uk_UA/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/uk_UA/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/uk_UA/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/uk_UA/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/uk_UA/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/uk_UA/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/uk_UA/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/uk_UA/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/uk_UA/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/uk_UA/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/uk_UA/modules/translations/locales/ar.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/ca.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/cy.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/uk_UA/modules/translations/locales/da.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/de.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/el.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/en.js +30 -0
- package/lib/translated/uk_UA/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/uk_UA/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/es.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/fi.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/fr.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/he.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/ht.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/hu.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/hy.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/is.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/it.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/ja.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/ko.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/uk_UA/modules/translations/locales/nb.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/nl.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/nn.js +15 -0
- package/lib/translated/uk_UA/modules/translations/locales/pl.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/pt.js +20 -2
- package/lib/translated/uk_UA/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/ru.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/sl.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/uk_UA/modules/translations/locales/sv.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/th.js +19 -0
- package/lib/translated/uk_UA/modules/translations/locales/tr.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/uk_UA/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/zh.js +18 -0
- package/lib/translated/uk_UA/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/uk_UA/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/zh/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/zh/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/zh/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/zh/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/zh/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/zh/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/zh/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/zh/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/zh/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/zh/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/zh/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/zh/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/zh/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/zh/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/zh/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/zh/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/zh/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/zh/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/zh/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/zh/modules/translations/locales/ar.js +18 -0
- package/lib/translated/zh/modules/translations/locales/ca.js +18 -0
- package/lib/translated/zh/modules/translations/locales/cy.js +18 -0
- package/lib/translated/zh/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/zh/modules/translations/locales/da.js +18 -0
- package/lib/translated/zh/modules/translations/locales/de.js +18 -0
- package/lib/translated/zh/modules/translations/locales/el.js +3 -0
- package/lib/translated/zh/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/zh/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/zh/modules/translations/locales/en.js +30 -0
- package/lib/translated/zh/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/zh/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/zh/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/zh/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/zh/modules/translations/locales/es.js +18 -0
- package/lib/translated/zh/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/zh/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/zh/modules/translations/locales/fi.js +18 -0
- package/lib/translated/zh/modules/translations/locales/fr.js +18 -0
- package/lib/translated/zh/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/zh/modules/translations/locales/he.js +3 -0
- package/lib/translated/zh/modules/translations/locales/ht.js +18 -0
- package/lib/translated/zh/modules/translations/locales/hu.js +3 -0
- package/lib/translated/zh/modules/translations/locales/hy.js +3 -0
- package/lib/translated/zh/modules/translations/locales/is.js +18 -0
- package/lib/translated/zh/modules/translations/locales/it.js +18 -0
- package/lib/translated/zh/modules/translations/locales/ja.js +18 -0
- package/lib/translated/zh/modules/translations/locales/ko.js +3 -0
- package/lib/translated/zh/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/zh/modules/translations/locales/nb.js +18 -0
- package/lib/translated/zh/modules/translations/locales/nl.js +18 -0
- package/lib/translated/zh/modules/translations/locales/nn.js +15 -0
- package/lib/translated/zh/modules/translations/locales/pl.js +18 -0
- package/lib/translated/zh/modules/translations/locales/pt.js +20 -2
- package/lib/translated/zh/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/zh/modules/translations/locales/ru.js +18 -0
- package/lib/translated/zh/modules/translations/locales/sl.js +18 -0
- package/lib/translated/zh/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/zh/modules/translations/locales/sv.js +18 -0
- package/lib/translated/zh/modules/translations/locales/th.js +19 -0
- package/lib/translated/zh/modules/translations/locales/tr.js +3 -0
- package/lib/translated/zh/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/zh/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/zh/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/zh/modules/translations/locales/zh.js +18 -0
- package/lib/translated/zh/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/zh/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/zh-Hans/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/zh-Hans/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/zh-Hans/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/zh-Hans/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/zh-Hans/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/zh-Hans/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/zh-Hans/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/zh-Hans/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/zh-Hans/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/zh-Hans/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/zh-Hans/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/zh-Hans/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/zh-Hans/modules/translations/locales/ar.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/ca.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/cy.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/zh-Hans/modules/translations/locales/da.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/de.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/el.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/en.js +30 -0
- package/lib/translated/zh-Hans/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/zh-Hans/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/es.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/fi.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/fr.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/he.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/ht.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/hu.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/hy.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/is.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/it.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/ja.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/ko.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/zh-Hans/modules/translations/locales/nb.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/nl.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/nn.js +15 -0
- package/lib/translated/zh-Hans/modules/translations/locales/pl.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/pt.js +20 -2
- package/lib/translated/zh-Hans/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/ru.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/sl.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/zh-Hans/modules/translations/locales/sv.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/th.js +19 -0
- package/lib/translated/zh-Hans/modules/translations/locales/tr.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/zh-Hans/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/zh.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/zh-Hans/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/zh-Hant/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/zh-Hant/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/zh-Hant/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/zh-Hant/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/zh-Hant/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/zh-Hant/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/zh-Hant/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/zh-Hant/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/zh-Hant/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/zh-Hant/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/zh-Hant/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/zh-Hant/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/zh-Hant/modules/translations/locales/ar.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/ca.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/cy.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/zh-Hant/modules/translations/locales/da.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/de.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/el.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/en.js +30 -0
- package/lib/translated/zh-Hant/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/zh-Hant/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/es.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/fi.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/fr.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/he.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/ht.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/hu.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/hy.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/is.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/it.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/ja.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/ko.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/zh-Hant/modules/translations/locales/nb.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/nl.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/nn.js +15 -0
- package/lib/translated/zh-Hant/modules/translations/locales/pl.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/pt.js +20 -2
- package/lib/translated/zh-Hant/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/ru.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/sl.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/zh-Hant/modules/translations/locales/sv.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/th.js +19 -0
- package/lib/translated/zh-Hant/modules/translations/locales/tr.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/zh-Hant/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/zh.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/zh-Hant/modules/translations/tinymce/th.js +479 -0
- package/lib/translated/zh_HK/modules/defaultTinymceConfig.js +1 -1
- package/lib/translated/zh_HK/modules/rce/RCEWrapper.js +2 -2
- package/lib/translated/zh_HK/modules/rce/editorLanguage.js +1 -0
- package/lib/translated/zh_HK/modules/rce/normalizeLocale.js +1 -1
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/ImageCropper.js +6 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/__tests__/shape.test.js +13 -4
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ImageCropper/svg/shape.js +22 -1
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_buttons/components/CreateButtonForm/ShapeSection.js +3 -1
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_buttons/svg/__tests__/shape.test.js +86 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_buttons/svg/shape.js +60 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_buttons/svg/text.js +2 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_image/ImageEmbedOptions.js +17 -4
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_image/ImageOptionsTray/__tests__/ImageOptionsTray.test.js +17 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_image/ImageOptionsTray/index.js +10 -4
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_image/__tests__/ImageEmbedOptions.test.js +46 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +131 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTray.test.js +64 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/AudioOptionsTrayDriver.js +50 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/AudioOptionsTray/__tests__/TrayController.test.js +124 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/AudioOptionsTray/index.js +149 -0
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +2 -2
- package/lib/translated/zh_HK/modules/rce/plugins/instructure_record/plugin.js +22 -5
- package/lib/translated/zh_HK/modules/rce/plugins/shared/ContentSelection.js +44 -8
- package/lib/translated/zh_HK/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInput.test.js +323 -7
- package/lib/translated/zh_HK/modules/rce/plugins/shared/DimensionsInput/__tests__/DimensionsInputDriver.js +29 -6
- package/lib/translated/zh_HK/modules/rce/plugins/shared/DimensionsInput/index.js +72 -17
- package/lib/translated/zh_HK/modules/rce/plugins/shared/DimensionsInput/useDimensionsState.js +80 -25
- package/lib/translated/zh_HK/modules/rce/plugins/shared/ImageOptionsForm.js +3 -2
- package/lib/translated/zh_HK/modules/rce/plugins/shared/__tests__/ContentSelection.test.js +26 -11
- package/lib/translated/zh_HK/modules/translations/locales/ar.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/ca.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/cy.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/da-x-k12.js +21 -0
- package/lib/translated/zh_HK/modules/translations/locales/da.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/de.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/el.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/en.js +30 -0
- package/lib/translated/zh_HK/modules/translations/locales/en_AU.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/en_CA.js +21 -0
- package/lib/translated/zh_HK/modules/translations/locales/en_CY.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/en_GB.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/es.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/es_ES.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/fa_IR.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/fi.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/fr.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/fr_CA.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/he.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/ht.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/hu.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/hy.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/is.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/it.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/ja.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/ko.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/nb-x-k12.js +21 -0
- package/lib/translated/zh_HK/modules/translations/locales/nb.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/nl.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/nn.js +15 -0
- package/lib/translated/zh_HK/modules/translations/locales/pl.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/pt.js +20 -2
- package/lib/translated/zh_HK/modules/translations/locales/pt_BR.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/ru.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/sl.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/sv-x-k12.js +21 -0
- package/lib/translated/zh_HK/modules/translations/locales/sv.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/th.js +19 -0
- package/lib/translated/zh_HK/modules/translations/locales/tr.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/uk_UA.js +3 -0
- package/lib/translated/zh_HK/modules/translations/locales/zh-Hans.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/zh-Hant.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/zh.js +18 -0
- package/lib/translated/zh_HK/modules/translations/locales/zh_HK.js +18 -0
- package/lib/translated/zh_HK/modules/translations/tinymce/th.js +479 -0
- package/lib/translations/locales/ar.js +18 -0
- package/lib/translations/locales/ca.js +18 -0
- package/lib/translations/locales/cy.js +18 -0
- package/lib/translations/locales/da-x-k12.js +21 -0
- package/lib/translations/locales/da.js +18 -0
- package/lib/translations/locales/de.js +18 -0
- package/lib/translations/locales/el.js +3 -0
- package/lib/translations/locales/en-AU-x-unimelb.js +18 -0
- package/lib/translations/locales/en-GB-x-ukhe.js +18 -0
- package/lib/translations/locales/en.js +30 -0
- package/lib/translations/locales/en_AU.js +18 -0
- package/lib/translations/locales/en_CA.js +21 -0
- package/lib/translations/locales/en_CY.js +18 -0
- package/lib/translations/locales/en_GB.js +18 -0
- package/lib/translations/locales/es.js +18 -0
- package/lib/translations/locales/es_ES.js +18 -0
- package/lib/translations/locales/fa_IR.js +3 -0
- package/lib/translations/locales/fi.js +18 -0
- package/lib/translations/locales/fr.js +18 -0
- package/lib/translations/locales/fr_CA.js +18 -0
- package/lib/translations/locales/he.js +3 -0
- package/lib/translations/locales/ht.js +18 -0
- package/lib/translations/locales/hu.js +3 -0
- package/lib/translations/locales/hy.js +3 -0
- package/lib/translations/locales/is.js +18 -0
- package/lib/translations/locales/it.js +18 -0
- package/lib/translations/locales/ja.js +18 -0
- package/lib/translations/locales/ko.js +3 -0
- package/lib/translations/locales/nb-x-k12.js +21 -0
- package/lib/translations/locales/nb.js +18 -0
- package/lib/translations/locales/nl.js +18 -0
- package/lib/translations/locales/nn.js +15 -0
- package/lib/translations/locales/pl.js +18 -0
- package/lib/translations/locales/pt.js +20 -2
- package/lib/translations/locales/pt_BR.js +18 -0
- package/lib/translations/locales/ru.js +18 -0
- package/lib/translations/locales/sl.js +18 -0
- package/lib/translations/locales/sv-x-k12.js +21 -0
- package/lib/translations/locales/sv.js +18 -0
- package/lib/translations/locales/th.js +20 -0
- package/lib/translations/locales/tr.js +3 -0
- package/lib/translations/locales/uk_UA.js +3 -0
- package/lib/translations/locales/zh-Hans.js +18 -0
- package/lib/translations/locales/zh-Hant.js +18 -0
- package/lib/translations/locales/zh.js +18 -0
- package/lib/translations/locales/zh_HK.js +18 -0
- package/lib/translations/tinymce/th.js +481 -0
- package/package.json +5 -5
|
@@ -45,20 +45,27 @@ function inputValueFor(initialNumber) {
|
|
|
45
45
|
export default function useDimensionsState(initialDimensions, constraints) {
|
|
46
46
|
const appliedHeight = initialDimensions.appliedHeight,
|
|
47
47
|
appliedWidth = initialDimensions.appliedWidth,
|
|
48
|
+
appliedPercentage = initialDimensions.appliedPercentage,
|
|
48
49
|
naturalHeight = initialDimensions.naturalHeight,
|
|
49
|
-
naturalWidth = initialDimensions.naturalWidth
|
|
50
|
+
naturalWidth = initialDimensions.naturalWidth,
|
|
51
|
+
usePercentageUnits = initialDimensions.usePercentageUnits;
|
|
50
52
|
const minHeight = constraints.minHeight,
|
|
51
|
-
minWidth = constraints.minWidth
|
|
53
|
+
minWidth = constraints.minWidth,
|
|
54
|
+
minPercentage = constraints.minPercentage;
|
|
52
55
|
const initialNumericValues = {
|
|
53
|
-
height: appliedHeight || naturalHeight,
|
|
54
|
-
width: appliedWidth || naturalWidth
|
|
56
|
+
height: usePercentageUnits ? naturalHeight : appliedHeight || naturalHeight,
|
|
57
|
+
width: usePercentageUnits ? naturalWidth : appliedWidth || naturalWidth,
|
|
58
|
+
percentage: appliedPercentage || 100
|
|
55
59
|
};
|
|
56
60
|
|
|
57
61
|
const _useState = useState({
|
|
62
|
+
usePercentageUnits,
|
|
58
63
|
inputHeight: inputValueFor(initialNumericValues.height),
|
|
59
64
|
inputWidth: inputValueFor(initialNumericValues.width),
|
|
65
|
+
inputPercentage: inputValueFor(initialNumericValues.percentage),
|
|
60
66
|
numericHeight: initialNumericValues.height,
|
|
61
|
-
numericWidth: initialNumericValues.width
|
|
67
|
+
numericWidth: initialNumericValues.width,
|
|
68
|
+
numericPercentage: initialNumericValues.percentage
|
|
62
69
|
}),
|
|
63
70
|
_useState2 = _slicedToArray(_useState, 2),
|
|
64
71
|
dimensions = _useState2[0],
|
|
@@ -66,11 +73,13 @@ export default function useDimensionsState(initialDimensions, constraints) {
|
|
|
66
73
|
|
|
67
74
|
const currentNumericValues = {
|
|
68
75
|
height: dimensions.numericHeight,
|
|
69
|
-
width: dimensions.numericWidth
|
|
76
|
+
width: dimensions.numericWidth,
|
|
77
|
+
percentage: dimensions.numericPercentage
|
|
70
78
|
};
|
|
71
79
|
const dimensionMinimums = {
|
|
72
80
|
height: minHeight,
|
|
73
|
-
width: minWidth
|
|
81
|
+
width: minWidth,
|
|
82
|
+
percentage: minPercentage
|
|
74
83
|
};
|
|
75
84
|
const dimensionScaleFns = {
|
|
76
85
|
height: scaleForHeight,
|
|
@@ -78,40 +87,66 @@ export default function useDimensionsState(initialDimensions, constraints) {
|
|
|
78
87
|
};
|
|
79
88
|
|
|
80
89
|
function updateDimensions(attributes) {
|
|
81
|
-
setDimensions(_objectSpread(_objectSpread({}, attributes), {}, {
|
|
90
|
+
setDimensions(_objectSpread(_objectSpread(_objectSpread({}, dimensions), attributes), {}, {
|
|
82
91
|
numericHeight: normalizedNumber(attributes.numericHeight),
|
|
83
|
-
numericWidth: normalizedNumber(attributes.numericWidth)
|
|
92
|
+
numericWidth: normalizedNumber(attributes.numericWidth),
|
|
93
|
+
numericPercentage: normalizedNumber(attributes.numericPercentage)
|
|
84
94
|
}));
|
|
85
95
|
}
|
|
86
96
|
|
|
87
|
-
function
|
|
88
|
-
|
|
97
|
+
function scaleDimensions(dimensionName, number, scaleConstraints) {
|
|
98
|
+
let width, height, percentage;
|
|
99
|
+
|
|
100
|
+
if (dimensionName === 'percentage') {
|
|
101
|
+
width = naturalWidth;
|
|
102
|
+
height = naturalHeight;
|
|
103
|
+
percentage = number;
|
|
104
|
+
} else {
|
|
105
|
+
const scaleFn = dimensionScaleFns[dimensionName];
|
|
106
|
+
const scaledDimensions = scaleFn(naturalWidth, naturalHeight, number, scaleConstraints);
|
|
107
|
+
width = scaledDimensions.width;
|
|
108
|
+
height = scaledDimensions.height;
|
|
109
|
+
percentage = initialNumericValues.percentage;
|
|
110
|
+
}
|
|
89
111
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
112
|
+
return {
|
|
113
|
+
width,
|
|
114
|
+
height,
|
|
115
|
+
percentage
|
|
116
|
+
};
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
function setNumericDimension(dimensionName, number) {
|
|
120
|
+
const _scaleDimensions = scaleDimensions(dimensionName, number, constraints),
|
|
121
|
+
height = _scaleDimensions.height,
|
|
122
|
+
width = _scaleDimensions.width,
|
|
123
|
+
percentage = _scaleDimensions.percentage;
|
|
93
124
|
|
|
94
125
|
updateDimensions({
|
|
95
126
|
numericHeight: height,
|
|
96
127
|
numericWidth: width,
|
|
128
|
+
numericPercentage: percentage,
|
|
97
129
|
inputHeight: inputValueFor(height),
|
|
98
|
-
inputWidth: inputValueFor(width)
|
|
130
|
+
inputWidth: inputValueFor(width),
|
|
131
|
+
inputPercentage: inputValueFor(percentage)
|
|
99
132
|
});
|
|
100
133
|
}
|
|
101
134
|
|
|
102
135
|
function setDimensionValue(dimensionName, value) {
|
|
103
|
-
const scaleFn = dimensionScaleFns[dimensionName];
|
|
104
136
|
const number = parseAsInteger(value);
|
|
105
137
|
|
|
106
|
-
const
|
|
107
|
-
height =
|
|
108
|
-
width =
|
|
138
|
+
const _scaleDimensions2 = scaleDimensions(dimensionName, number),
|
|
139
|
+
height = _scaleDimensions2.height,
|
|
140
|
+
width = _scaleDimensions2.width,
|
|
141
|
+
percentage = _scaleDimensions2.percentage;
|
|
109
142
|
|
|
110
143
|
updateDimensions({
|
|
111
144
|
numericHeight: height,
|
|
112
145
|
numericWidth: width,
|
|
146
|
+
numericPercentage: percentage,
|
|
113
147
|
inputHeight: dimensionName === 'height' ? value : inputValueFor(height),
|
|
114
|
-
inputWidth: dimensionName === 'width' ? value : inputValueFor(width)
|
|
148
|
+
inputWidth: dimensionName === 'width' ? value : inputValueFor(width),
|
|
149
|
+
inputPercentage: dimensionName === 'percentage' ? value : inputValueFor(percentage)
|
|
115
150
|
});
|
|
116
151
|
}
|
|
117
152
|
|
|
@@ -152,15 +187,35 @@ export default function useDimensionsState(initialDimensions, constraints) {
|
|
|
152
187
|
}
|
|
153
188
|
|
|
154
189
|
};
|
|
155
|
-
const
|
|
156
|
-
|
|
190
|
+
const percentageState = {
|
|
191
|
+
inputValue: dimensions.inputPercentage,
|
|
192
|
+
|
|
193
|
+
addOffset(offset) {
|
|
194
|
+
offsetDimension('percentage', offset);
|
|
195
|
+
},
|
|
196
|
+
|
|
197
|
+
setInputValue(value) {
|
|
198
|
+
setDimensionValue('percentage', value);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
};
|
|
202
|
+
const isNumeric = dimensions.usePercentageUnits ? Number.isFinite(dimensions.numericPercentage) : [dimensions.numericHeight, dimensions.numericWidth].every(Number.isFinite);
|
|
203
|
+
const isAtLeastMinimums = dimensions.usePercentageUnits ? dimensions.numericPercentage >= minPercentage : dimensions.numericHeight >= minHeight && dimensions.numericWidth >= minWidth;
|
|
157
204
|
return {
|
|
158
|
-
|
|
205
|
+
widthState,
|
|
159
206
|
heightState,
|
|
207
|
+
percentageState,
|
|
160
208
|
isAtLeastMinimums,
|
|
161
209
|
isNumeric,
|
|
162
|
-
isValid: isAtLeastMinimums && isNumeric,
|
|
163
210
|
width: dimensions.numericWidth,
|
|
164
|
-
|
|
211
|
+
height: dimensions.numericHeight,
|
|
212
|
+
percentage: dimensions.numericPercentage,
|
|
213
|
+
usePercentageUnits: dimensions.usePercentageUnits,
|
|
214
|
+
setUsePercentageUnits: value => {
|
|
215
|
+
setDimensions(_objectSpread(_objectSpread({}, dimensions), {}, {
|
|
216
|
+
usePercentageUnits: value
|
|
217
|
+
}));
|
|
218
|
+
},
|
|
219
|
+
isValid: isAtLeastMinimums && isNumeric
|
|
165
220
|
};
|
|
166
221
|
}
|
|
@@ -26,7 +26,7 @@ import { IconQuestionLine } from '@instructure/ui-icons';
|
|
|
26
26
|
import { Flex } from '@instructure/ui-flex';
|
|
27
27
|
import { View } from '@instructure/ui-view';
|
|
28
28
|
import { Tooltip } from '@instructure/ui-tooltip';
|
|
29
|
-
import { CUSTOM, MIN_HEIGHT, MIN_WIDTH, imageSizes, labelForImageSize } from "../instructure_image/ImageEmbedOptions.js";
|
|
29
|
+
import { CUSTOM, MIN_HEIGHT, MIN_WIDTH, MIN_PERCENTAGE, imageSizes, labelForImageSize } from "../instructure_image/ImageEmbedOptions.js";
|
|
30
30
|
import formatMessage from "../../../format-message.js";
|
|
31
31
|
import DimensionsInput from "./DimensionsInput/index.js";
|
|
32
32
|
|
|
@@ -122,7 +122,8 @@ const ImageOptionsForm = ({
|
|
|
122
122
|
dimensionsState: dimensionsState,
|
|
123
123
|
disabled: displayAs !== 'embed',
|
|
124
124
|
minHeight: MIN_HEIGHT,
|
|
125
|
-
minWidth: MIN_WIDTH
|
|
125
|
+
minWidth: MIN_WIDTH,
|
|
126
|
+
minPercentage: MIN_PERCENTAGE
|
|
126
127
|
}))));
|
|
127
128
|
};
|
|
128
129
|
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
* You should have received a copy of the GNU Affero General Public License along
|
|
16
16
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
17
17
|
*/
|
|
18
|
-
import { LINK_TYPE, FILE_LINK_TYPE, IMAGE_EMBED_TYPE, NONE_TYPE, TEXT_TYPE, getContentFromEditor, getContentFromElement, getLinkContentFromEditor, isFileLink, isImageEmbed, isVideoElement,
|
|
18
|
+
import { LINK_TYPE, FILE_LINK_TYPE, IMAGE_EMBED_TYPE, NONE_TYPE, TEXT_TYPE, getContentFromEditor, getContentFromElement, getLinkContentFromEditor, isFileLink, isImageEmbed, isVideoElement, isAudioElement, findMediaPlayerIframe } from "../ContentSelection.js";
|
|
19
19
|
import FakeEditor from "./FakeEditor.js";
|
|
20
20
|
describe('RCE > Plugins > Shared > Content Selection', () => {
|
|
21
21
|
let $container;
|
|
@@ -228,27 +228,27 @@ describe('RCE > Plugins > Shared > Content Selection', () => {
|
|
|
228
228
|
expect(content.type).toEqual(LINK_TYPE);
|
|
229
229
|
});
|
|
230
230
|
});
|
|
231
|
-
describe('
|
|
232
|
-
let wrapper,
|
|
231
|
+
describe('findMediaPlayerIframe', () => {
|
|
232
|
+
let wrapper, mediaIframe, shim;
|
|
233
233
|
beforeEach(() => {
|
|
234
234
|
wrapper = document.createElement('span');
|
|
235
|
-
|
|
235
|
+
mediaIframe = document.createElement('iframe');
|
|
236
236
|
shim = document.createElement('span');
|
|
237
237
|
shim.setAttribute('class', 'mce-shim');
|
|
238
|
-
wrapper.appendChild(
|
|
238
|
+
wrapper.appendChild(mediaIframe);
|
|
239
239
|
wrapper.appendChild(shim);
|
|
240
240
|
});
|
|
241
241
|
it('returns the iframe if given the video iframe', () => {
|
|
242
|
-
const result =
|
|
243
|
-
expect(result).toEqual(
|
|
242
|
+
const result = findMediaPlayerIframe(mediaIframe);
|
|
243
|
+
expect(result).toEqual(mediaIframe);
|
|
244
244
|
});
|
|
245
245
|
it('returns the iframe if given the tinymce wrapper span', () => {
|
|
246
|
-
const result =
|
|
247
|
-
expect(result).toEqual(
|
|
246
|
+
const result = findMediaPlayerIframe(wrapper);
|
|
247
|
+
expect(result).toEqual(mediaIframe);
|
|
248
248
|
});
|
|
249
249
|
it('returns the iframe if given the shim', () => {
|
|
250
|
-
const result =
|
|
251
|
-
expect(result).toEqual(
|
|
250
|
+
const result = findMediaPlayerIframe(shim);
|
|
251
|
+
expect(result).toEqual(mediaIframe);
|
|
252
252
|
});
|
|
253
253
|
});
|
|
254
254
|
describe('predicates', () => {
|
|
@@ -259,6 +259,7 @@ describe('RCE > Plugins > Shared > Content Selection', () => {
|
|
|
259
259
|
expect(isFileLink($selectedNode, editor)).toBeTruthy();
|
|
260
260
|
expect(isImageEmbed($selectedNode)).toBeFalsy();
|
|
261
261
|
expect(isVideoElement($selectedNode)).toBeFalsy();
|
|
262
|
+
expect(isAudioElement($selectedNode)).toBeFalsy();
|
|
262
263
|
});
|
|
263
264
|
it('detect an embeded image', () => {
|
|
264
265
|
const $selectedNode = document.createElement('img');
|
|
@@ -267,6 +268,7 @@ describe('RCE > Plugins > Shared > Content Selection', () => {
|
|
|
267
268
|
expect(isFileLink($selectedNode, editor)).toBeFalsy();
|
|
268
269
|
expect(isImageEmbed($selectedNode)).toBeTruthy();
|
|
269
270
|
expect(isVideoElement($selectedNode)).toBeFalsy();
|
|
271
|
+
expect(isAudioElement($selectedNode)).toBeFalsy();
|
|
270
272
|
});
|
|
271
273
|
it('detect a video element', () => {
|
|
272
274
|
const $selectedNode = document.createElement('span');
|
|
@@ -277,6 +279,18 @@ describe('RCE > Plugins > Shared > Content Selection', () => {
|
|
|
277
279
|
expect(isFileLink($selectedNode, editor)).toBeFalsy();
|
|
278
280
|
expect(isImageEmbed($selectedNode)).toBeFalsy();
|
|
279
281
|
expect(isVideoElement($selectedNode)).toBeTruthy();
|
|
282
|
+
expect(isAudioElement($selectedNode)).toBeFalsy();
|
|
283
|
+
});
|
|
284
|
+
it('detect an audio element', () => {
|
|
285
|
+
const $selectedNode = document.createElement('span');
|
|
286
|
+
$selectedNode.setAttribute('data-mce-p-data-media-id', 'm-id');
|
|
287
|
+
$selectedNode.setAttribute('data-mce-p-data-media-type', 'audio');
|
|
288
|
+
$selectedNode.innerHTML = '<iframe/>';
|
|
289
|
+
editor.setSelectedNode($selectedNode);
|
|
290
|
+
expect(isFileLink($selectedNode, editor)).toBeFalsy();
|
|
291
|
+
expect(isImageEmbed($selectedNode)).toBeFalsy();
|
|
292
|
+
expect(isVideoElement($selectedNode)).toBeFalsy();
|
|
293
|
+
expect(isAudioElement($selectedNode)).toBeTruthy();
|
|
280
294
|
});
|
|
281
295
|
it('ignore some random markup', () => {
|
|
282
296
|
const $selectedNode = document.createElement('div');
|
|
@@ -285,6 +299,7 @@ describe('RCE > Plugins > Shared > Content Selection', () => {
|
|
|
285
299
|
expect(isFileLink($selectedNode, editor)).toBeFalsy();
|
|
286
300
|
expect(isImageEmbed($selectedNode)).toBeFalsy();
|
|
287
301
|
expect(isVideoElement($selectedNode)).toBeFalsy();
|
|
302
|
+
expect(isAudioElement($selectedNode)).toBeFalsy();
|
|
288
303
|
});
|
|
289
304
|
});
|
|
290
305
|
});
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "التفاصيل"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "معيّن"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "نوع البعد"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "الأبعاد"
|
|
284
290
|
},
|
|
@@ -591,6 +597,9 @@ const locale = {
|
|
|
591
597
|
"multi_color_image_63d7372f": {
|
|
592
598
|
"message": "صورة متعددة الألوان"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "يجب أن يكون { percentage }% على الأقل"
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "يجب أن تكون { width } x { height } بكسل على الأقل."
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "الفقرة"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "خماسي"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "أشخاص"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "نسبة مئوية"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "بكسل"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "المنشور: { when }"
|
|
665
683
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Detalls"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diamant"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Tipus de dimensió"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Mides"
|
|
284
290
|
},
|
|
@@ -591,6 +597,9 @@ const locale = {
|
|
|
591
597
|
"multi_color_image_63d7372f": {
|
|
592
598
|
"message": "Imatge multicolor"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "Ha de ser un { percentage }% com a mínim"
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "Ha de ser de { width } × { height }píxels com a mínim"
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "Paràgraf"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "Pentàgon"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "Persones"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "Percentatge"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "Píxels"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "Publicat: { when }"
|
|
665
683
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Manylion"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diemwnt"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Math o ddimensiwn"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Dimensiynau"
|
|
284
290
|
},
|
|
@@ -591,6 +597,9 @@ const locale = {
|
|
|
591
597
|
"multi_color_image_63d7372f": {
|
|
592
598
|
"message": "Delwedd mwy nag un lliw"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "Yn gorfod bod yn { percentage }% o leiaf"
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "Yn gorfod bod o leiaf { width } x { height }px"
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "Paragraff"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "Pentagon"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "Pobl"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "Canran"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "Picseli"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "Wedi postio: { when }"
|
|
665
683
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Nærmere oplysninger"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diamant"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Dimensionstype"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Dimensioner"
|
|
284
290
|
},
|
|
@@ -570,6 +576,9 @@ const locale = {
|
|
|
570
576
|
"loading_please_wait_d276220a": {
|
|
571
577
|
"message": "Indlæser, vent venligst"
|
|
572
578
|
},
|
|
579
|
+
"loading_preview_9f077aa1": {
|
|
580
|
+
"message": "Indlæser forhåndsvisning"
|
|
581
|
+
},
|
|
573
582
|
"locked_762f138b": {
|
|
574
583
|
"message": "Låst"
|
|
575
584
|
},
|
|
@@ -591,6 +600,9 @@ const locale = {
|
|
|
591
600
|
"multi_color_image_63d7372f": {
|
|
592
601
|
"message": "Billede i flere farver"
|
|
593
602
|
},
|
|
603
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
604
|
+
"message": "Skal være mindst { percentage }%"
|
|
605
|
+
},
|
|
594
606
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
607
|
"message": "Skal være mindst { width } x { height } px"
|
|
596
608
|
},
|
|
@@ -657,9 +669,18 @@ const locale = {
|
|
|
657
669
|
"paragraph_5e5ad8eb": {
|
|
658
670
|
"message": "Paragraf"
|
|
659
671
|
},
|
|
672
|
+
"pentagon_17d82ea3": {
|
|
673
|
+
"message": "Femkant"
|
|
674
|
+
},
|
|
660
675
|
"people_b4ebb13c": {
|
|
661
676
|
"message": "Deltagere"
|
|
662
677
|
},
|
|
678
|
+
"percentage_34ab7c2c": {
|
|
679
|
+
"message": "Procentdel"
|
|
680
|
+
},
|
|
681
|
+
"pixels_52ece7d1": {
|
|
682
|
+
"message": "Pixels"
|
|
683
|
+
},
|
|
663
684
|
"posted_when_a578f5ab": {
|
|
664
685
|
"message": "Slået op: { when }"
|
|
665
686
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Nærmere oplysninger"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diamant"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Dimensionstype"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Dimensioner"
|
|
284
290
|
},
|
|
@@ -591,6 +597,9 @@ const locale = {
|
|
|
591
597
|
"multi_color_image_63d7372f": {
|
|
592
598
|
"message": "Billede i flere farver"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "Skal være mindst { percentage }%"
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "Skal være mindst { width } x { height } px"
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "Paragraf"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "Femkant"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "Deltagere"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "Procentdel"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "Pixels"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "Slået op: { when }"
|
|
665
683
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Details"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diamond"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Dimensionstyp"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Abmessungen"
|
|
284
290
|
},
|
|
@@ -591,6 +597,9 @@ const locale = {
|
|
|
591
597
|
"multi_color_image_63d7372f": {
|
|
592
598
|
"message": "Mehrfarbiges Bild"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "Mindestens { percentage }%"
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "Mindestgröße ist { width } x { height } px."
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "Absatz"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "Pentagon"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "Teilnehmer"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "Prozentsatz"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "Pixel"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "Gepostet am: { when }"
|
|
665
683
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Details"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diamond"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Dimension type"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Dimensions"
|
|
284
290
|
},
|
|
@@ -591,6 +597,9 @@ const locale = {
|
|
|
591
597
|
"multi_color_image_63d7372f": {
|
|
592
598
|
"message": "Multi Colour Image"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "Must be at least { percentage }%"
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "Must be at least { width } x { height }px"
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "Paragraph"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "Pentagon"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "People"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "Percentage"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "Pixels"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "Posted: { when }"
|
|
665
683
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Details"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diamond"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Dimension type"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Dimensions"
|
|
284
290
|
},
|
|
@@ -591,6 +597,9 @@ const locale = {
|
|
|
591
597
|
"multi_color_image_63d7372f": {
|
|
592
598
|
"message": "Multi Colour Image"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "Must be at least { percentage }%"
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "Must be at least { width } x { height }px"
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "Paragraph"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "Pentagon"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "People"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "Percentage"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "Pixels"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "Posted: { when }"
|
|
665
683
|
},
|