@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
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Dettagli"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Rombo"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Tipo di dimensione"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Dimensioni"
|
|
284
290
|
},
|
|
@@ -591,6 +597,9 @@ const locale = {
|
|
|
591
597
|
"multi_color_image_63d7372f": {
|
|
592
598
|
"message": "Immagine multicolore"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "Deve essere almeno { percentage }%"
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "Deve essere almeno { width } x { height }px"
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "Paragrafo"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "Pentagono"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "Persone"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "Percentuale"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "Pixel"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "Postato: { when }"
|
|
665
683
|
},
|
|
@@ -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 }px でなければなりません"
|
|
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": "Detaljer"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diamant"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Dimensjonstype"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Dimensjoner"
|
|
284
290
|
},
|
|
@@ -570,6 +576,9 @@ const locale = {
|
|
|
570
576
|
"loading_please_wait_d276220a": {
|
|
571
577
|
"message": "Laster inn, vennligst vent"
|
|
572
578
|
},
|
|
579
|
+
"loading_preview_9f077aa1": {
|
|
580
|
+
"message": "Laster 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": "Bilde i flere farger"
|
|
593
602
|
},
|
|
603
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
604
|
+
"message": "Må være minst { percentage }%"
|
|
605
|
+
},
|
|
594
606
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
607
|
"message": "Det må være minst { width } x { height }px"
|
|
596
608
|
},
|
|
@@ -657,9 +669,18 @@ const locale = {
|
|
|
657
669
|
"paragraph_5e5ad8eb": {
|
|
658
670
|
"message": "Avsnitt"
|
|
659
671
|
},
|
|
672
|
+
"pentagon_17d82ea3": {
|
|
673
|
+
"message": "Femkant"
|
|
674
|
+
},
|
|
660
675
|
"people_b4ebb13c": {
|
|
661
676
|
"message": "Deltakere"
|
|
662
677
|
},
|
|
678
|
+
"percentage_34ab7c2c": {
|
|
679
|
+
"message": "Prosent"
|
|
680
|
+
},
|
|
681
|
+
"pixels_52ece7d1": {
|
|
682
|
+
"message": "Piksler"
|
|
683
|
+
},
|
|
663
684
|
"posted_when_a578f5ab": {
|
|
664
685
|
"message": "Postet: { when }"
|
|
665
686
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Detaljer"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diamant"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Dimensjonstype"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Dimensjoner"
|
|
284
290
|
},
|
|
@@ -591,6 +597,9 @@ const locale = {
|
|
|
591
597
|
"multi_color_image_63d7372f": {
|
|
592
598
|
"message": "Bilde i flere farger"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "Må være minst { percentage }%"
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "Det må være minst { width } x { height }px"
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "Avsnitt"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "Femkant"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "Personer"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "Prosent"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "Piksler"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "Postet: { when }"
|
|
665
683
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Details"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diamant"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Afmetingstype"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Afmetingen"
|
|
284
290
|
},
|
|
@@ -591,6 +597,9 @@ const locale = {
|
|
|
591
597
|
"multi_color_image_63d7372f": {
|
|
592
598
|
"message": "Veelkleurige afbeelding"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "Moet ten minste { percentage }% zijn"
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "Moet minstens { width } x { height }px zijn"
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "Alinea"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "Vijfhoek"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "Personen"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "Percentage"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "Pixels"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "Geplaatst: { when }"
|
|
665
683
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Detaljar"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diamant"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Dimensjonstype"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Dimensjonar"
|
|
284
290
|
},
|
|
@@ -654,9 +660,18 @@ const locale = {
|
|
|
654
660
|
"paragraph_5e5ad8eb": {
|
|
655
661
|
"message": "Avsnitt"
|
|
656
662
|
},
|
|
663
|
+
"pentagon_17d82ea3": {
|
|
664
|
+
"message": "Pentagon"
|
|
665
|
+
},
|
|
657
666
|
"people_b4ebb13c": {
|
|
658
667
|
"message": "Personar"
|
|
659
668
|
},
|
|
669
|
+
"percentage_34ab7c2c": {
|
|
670
|
+
"message": "Prosenttal"
|
|
671
|
+
},
|
|
672
|
+
"pixels_52ece7d1": {
|
|
673
|
+
"message": "Pixlar"
|
|
674
|
+
},
|
|
660
675
|
"posted_when_a578f5ab": {
|
|
661
676
|
"message": "Posta: { when }"
|
|
662
677
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Szczegóły"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diament"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Typ wymiaru"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Wymiary"
|
|
284
290
|
},
|
|
@@ -591,6 +597,9 @@ const locale = {
|
|
|
591
597
|
"multi_color_image_63d7372f": {
|
|
592
598
|
"message": "Obraz wielokolorowy"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "Wymagane co najmniej { percentage }%"
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "Wymagane co najmniej { width } x { height } px"
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "Akapit"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "Pięciokąt"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "Ludzie"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "Wartość procentowa"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "Piksele"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "Opublikował(a): { when }"
|
|
665
683
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Detalhes"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diamante"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Tipo de dimensão"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Dimensões"
|
|
284
290
|
},
|
|
@@ -316,10 +322,10 @@ const locale = {
|
|
|
316
322
|
"message": "Arraste a alça. Use as setas para cima e para baixo para redimensionar"
|
|
317
323
|
},
|
|
318
324
|
"due_multiple_dates_cc0ee3f5": {
|
|
319
|
-
"message": "
|
|
325
|
+
"message": "Data limite: Várias datas"
|
|
320
326
|
},
|
|
321
327
|
"due_when_7eed10c6": {
|
|
322
|
-
"message": "
|
|
328
|
+
"message": "Data limite: { when }"
|
|
323
329
|
},
|
|
324
330
|
"edit_c5fbea07": {
|
|
325
331
|
"message": "Editar"
|
|
@@ -591,6 +597,9 @@ const locale = {
|
|
|
591
597
|
"multi_color_image_63d7372f": {
|
|
592
598
|
"message": "Imagem Multi-Cor"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "Deve ser pelo menos { percentage }%"
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "Deve ter pelo menos { width } x { height }px"
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "Parágrafo"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "Pentágono"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "Pessoas"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "Porcentagem"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "Pixels"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "Publicado: { when }"
|
|
665
683
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Detalhes"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Losango"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Tipo de dimensão"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Dimensões"
|
|
284
290
|
},
|
|
@@ -591,6 +597,9 @@ const locale = {
|
|
|
591
597
|
"multi_color_image_63d7372f": {
|
|
592
598
|
"message": "Imagem multicolorida"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "Deve ser ao menos { percentage }%"
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "Deve ter ao menos { width } x { height }px"
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "Parágrafo"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "Pentágono"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "Pessoas"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "Porcentagem"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "Pixels"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "Postado: { when }"
|
|
665
683
|
},
|
|
@@ -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": "Podrobnosti"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diamant"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Vrsta mere"
|
|
287
|
+
},
|
|
282
288
|
"dimensions_45ddb7b7": {
|
|
283
289
|
"message": "Mere"
|
|
284
290
|
},
|
|
@@ -591,6 +597,9 @@ const locale = {
|
|
|
591
597
|
"multi_color_image_63d7372f": {
|
|
592
598
|
"message": "Večbarvna slika"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "Mora biti vsaj { percentage }%."
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "Mora biti vsaj { width } x { height } px."
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "Odstavek"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "Peterokotnik"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "Sodelujoči"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "Odstotek"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "Slikovne pike"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "Objavljeno: { when }"
|
|
665
683
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Detaljer"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diamant"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Dimensionstyp"
|
|
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": "Läser in, vänta"
|
|
572
578
|
},
|
|
579
|
+
"loading_preview_9f077aa1": {
|
|
580
|
+
"message": "Läser in förhandsgranskning"
|
|
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": "Flerfärgsbild"
|
|
593
602
|
},
|
|
603
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
604
|
+
"message": "Måste vara minst { percentage }%"
|
|
605
|
+
},
|
|
594
606
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
607
|
"message": "Måste vara minst { width } x { height }pixlar"
|
|
596
608
|
},
|
|
@@ -657,9 +669,18 @@ const locale = {
|
|
|
657
669
|
"paragraph_5e5ad8eb": {
|
|
658
670
|
"message": "Paragraf"
|
|
659
671
|
},
|
|
672
|
+
"pentagon_17d82ea3": {
|
|
673
|
+
"message": "Pentagon"
|
|
674
|
+
},
|
|
660
675
|
"people_b4ebb13c": {
|
|
661
676
|
"message": "Personer"
|
|
662
677
|
},
|
|
678
|
+
"percentage_34ab7c2c": {
|
|
679
|
+
"message": "Procent"
|
|
680
|
+
},
|
|
681
|
+
"pixels_52ece7d1": {
|
|
682
|
+
"message": "Pixlar"
|
|
683
|
+
},
|
|
663
684
|
"posted_when_a578f5ab": {
|
|
664
685
|
"message": "Publicerad: { when }"
|
|
665
686
|
},
|
|
@@ -279,6 +279,12 @@ const locale = {
|
|
|
279
279
|
"details_98a31b68": {
|
|
280
280
|
"message": "Detaljer"
|
|
281
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "Diamant"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "Dimensionstyp"
|
|
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": "Flerfärgsbild"
|
|
593
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "Måste vara minst { percentage }%"
|
|
602
|
+
},
|
|
594
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
595
604
|
"message": "Måste vara minst { width } x { height }pixlar"
|
|
596
605
|
},
|
|
@@ -657,9 +666,18 @@ const locale = {
|
|
|
657
666
|
"paragraph_5e5ad8eb": {
|
|
658
667
|
"message": "Paragraf"
|
|
659
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "Pentagon"
|
|
671
|
+
},
|
|
660
672
|
"people_b4ebb13c": {
|
|
661
673
|
"message": "Personer"
|
|
662
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "Procent"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "Pixlar"
|
|
680
|
+
},
|
|
663
681
|
"posted_when_a578f5ab": {
|
|
664
682
|
"message": "Publicerad: { when }"
|
|
665
683
|
},
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
17
17
|
*/
|
|
18
18
|
import formatMessage from "../../format-message.js";
|
|
19
|
+
import "../tinymce/th.js";
|
|
19
20
|
const locale = {
|
|
20
21
|
"access_the_pretty_html_editor_37168efe": {
|
|
21
22
|
"message": "เข้าไปยัง HTML Editor ที่สวยงาม"
|
|
@@ -278,6 +279,12 @@ const locale = {
|
|
|
278
279
|
"details_98a31b68": {
|
|
279
280
|
"message": "รายละเอียด"
|
|
280
281
|
},
|
|
282
|
+
"diamond_b8dfe7ae": {
|
|
283
|
+
"message": "เพชร"
|
|
284
|
+
},
|
|
285
|
+
"dimension_type_55c83e4e": {
|
|
286
|
+
"message": "ประเภทขนาด"
|
|
287
|
+
},
|
|
281
288
|
"dimensions_45ddb7b7": {
|
|
282
289
|
"message": "ขนาด"
|
|
283
290
|
},
|
|
@@ -590,6 +597,9 @@ const locale = {
|
|
|
590
597
|
"multi_color_image_63d7372f": {
|
|
591
598
|
"message": "ภาพหลายสี"
|
|
592
599
|
},
|
|
600
|
+
"must_be_at_least_percentage_22e373b6": {
|
|
601
|
+
"message": "จะต้องเท่ากับอย่างน้อย { percentage }%"
|
|
602
|
+
},
|
|
593
603
|
"must_be_at_least_width_x_height_px_41dc825e": {
|
|
594
604
|
"message": "จะต้องเท่ากับอย่างน้อย { width } x { height }px"
|
|
595
605
|
},
|
|
@@ -656,9 +666,18 @@ const locale = {
|
|
|
656
666
|
"paragraph_5e5ad8eb": {
|
|
657
667
|
"message": "ย่อหน้า"
|
|
658
668
|
},
|
|
669
|
+
"pentagon_17d82ea3": {
|
|
670
|
+
"message": "ห้าเหลี่ยม"
|
|
671
|
+
},
|
|
659
672
|
"people_b4ebb13c": {
|
|
660
673
|
"message": "บุคคล"
|
|
661
674
|
},
|
|
675
|
+
"percentage_34ab7c2c": {
|
|
676
|
+
"message": "เปอร์เซ็นต์"
|
|
677
|
+
},
|
|
678
|
+
"pixels_52ece7d1": {
|
|
679
|
+
"message": "พิกเซล"
|
|
680
|
+
},
|
|
662
681
|
"posted_when_a578f5ab": {
|
|
663
682
|
"message": "โพสต์เมื่อ: { when }"
|
|
664
683
|
},
|
|
@@ -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 }px"
|
|
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
|
},
|