@instructure/canvas-rce 5.11.0 → 5.12.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/es/canvasFileBrowser/FileBrowser.js +6 -1
  3. package/es/common/fileUrl.js +3 -4
  4. package/es/defaultTinymceConfig.js +1 -1
  5. package/es/elementDenylist.js +19 -0
  6. package/es/getThemeVars.js +4 -3
  7. package/es/getTranslations.js +77 -1
  8. package/es/rce/RCEWrapper.js +2 -6
  9. package/es/rce/RceHtmlEditor.js +58 -20
  10. package/es/rce/StatusBar.js +8 -2
  11. package/es/rce/contentInsertion.js +5 -2
  12. package/es/rce/plugins/instructure_documents/components/DocumentsPanel.js +3 -9
  13. package/es/rce/plugins/instructure_html_view/plugin.js +2 -2
  14. package/es/rce/plugins/instructure_icon_maker/components/SavedIconMakerList.js +3 -2
  15. package/es/rce/plugins/instructure_image/ImageList/Image.js +2 -2
  16. package/es/rce/plugins/instructure_image/Images/index.js +3 -10
  17. package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialog.js +3 -0
  18. package/es/rce/plugins/instructure_rce_external_tools/lti13-content-items/models/ResourceLinkContentItem.js +3 -1
  19. package/es/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +26 -1
  20. package/es/rce/plugins/instructure_record/AudioOptionsTray/index.js +9 -3
  21. package/es/rce/plugins/instructure_record/MediaPanel/index.js +3 -9
  22. package/es/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +27 -2
  23. package/es/rce/plugins/instructure_record/VideoOptionsTray/index.js +35 -6
  24. package/es/rce/plugins/shared/fileShape.js +81 -9
  25. package/es/rce/plugins/shared/fileTypeUtils.js +6 -0
  26. package/es/rcs/api.js +6 -4
  27. package/es/sidebar/store/configureStore.js +2 -2
  28. package/es/translations/locales/ab.js +26 -0
  29. package/es/translations/locales/cs.js +27 -0
  30. package/es/translations/locales/cs_CZ.js +27 -0
  31. package/es/translations/locales/da_DK.js +27 -0
  32. package/es/translations/locales/en_NZ.js +26 -0
  33. package/es/translations/locales/en_SE.js +26 -0
  34. package/es/translations/locales/en_US.js +26 -0
  35. package/es/translations/locales/hu_HU.js +27 -0
  36. package/es/translations/locales/id.js +2426 -0
  37. package/{lib/types/inst-ui.d.js → es/translations/locales/id_ID.js} +9 -1
  38. package/es/translations/locales/ko_KR.js +27 -0
  39. package/es/translations/locales/lt.js +26 -0
  40. package/es/translations/locales/lt_LT.js +26 -0
  41. package/es/translations/locales/mn_MN.js +26 -0
  42. package/es/translations/locales/nl_NL.js +27 -0
  43. package/es/translations/locales/ro.js +27 -0
  44. package/es/translations/locales/ru.js +2375 -32
  45. package/es/translations/locales/sv.js +2379 -30
  46. package/es/translations/locales/th.js +2401 -1
  47. package/es/translations/locales/tl_PH.js +26 -0
  48. package/es/translations/locales/tr.js +3 -0
  49. package/es/translations/locales/vi.js +2396 -8
  50. package/es/translations/locales/zh_TW.Big5.js +27 -0
  51. package/es/translations/locales/zh_TW.js +27 -0
  52. package/lib/canvasFileBrowser/FileBrowser.js +6 -1
  53. package/lib/common/fileUrl.js +3 -4
  54. package/lib/defaultTinymceConfig.js +1 -1
  55. package/lib/elementDenylist.js +19 -0
  56. package/lib/getThemeVars.js +4 -3
  57. package/lib/getTranslations.js +77 -1
  58. package/lib/rce/RCEWrapper.js +2 -6
  59. package/lib/rce/RceHtmlEditor.js +58 -20
  60. package/lib/rce/StatusBar.js +8 -2
  61. package/lib/rce/contentInsertion.js +5 -2
  62. package/lib/rce/plugins/instructure_documents/components/DocumentsPanel.js +3 -9
  63. package/lib/rce/plugins/instructure_html_view/plugin.js +2 -2
  64. package/lib/rce/plugins/instructure_icon_maker/components/SavedIconMakerList.js +3 -2
  65. package/lib/rce/plugins/instructure_image/ImageList/Image.js +2 -2
  66. package/lib/rce/plugins/instructure_image/Images/index.js +3 -10
  67. package/lib/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialog.js +3 -0
  68. package/lib/rce/plugins/instructure_rce_external_tools/lti13-content-items/models/ResourceLinkContentItem.js +3 -1
  69. package/lib/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +26 -1
  70. package/lib/rce/plugins/instructure_record/AudioOptionsTray/index.js +9 -3
  71. package/lib/rce/plugins/instructure_record/MediaPanel/index.js +3 -9
  72. package/lib/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +27 -2
  73. package/lib/rce/plugins/instructure_record/VideoOptionsTray/index.js +35 -6
  74. package/lib/rce/plugins/shared/fileShape.js +81 -9
  75. package/lib/rce/plugins/shared/fileTypeUtils.js +6 -0
  76. package/lib/rcs/api.js +6 -4
  77. package/lib/sidebar/store/configureStore.js +2 -2
  78. package/lib/translations/locales/ab.js +26 -0
  79. package/lib/translations/locales/cs.js +27 -0
  80. package/lib/translations/locales/cs_CZ.js +27 -0
  81. package/lib/translations/locales/da_DK.js +27 -0
  82. package/lib/translations/locales/en_NZ.js +26 -0
  83. package/lib/translations/locales/en_SE.js +26 -0
  84. package/lib/translations/locales/en_US.js +26 -0
  85. package/lib/translations/locales/hu_HU.js +27 -0
  86. package/lib/translations/locales/id.js +2426 -0
  87. package/{es/types/inst-ui.d.js → lib/translations/locales/id_ID.js} +9 -1
  88. package/lib/translations/locales/ko_KR.js +27 -0
  89. package/lib/translations/locales/lt.js +26 -0
  90. package/lib/translations/locales/lt_LT.js +26 -0
  91. package/lib/translations/locales/mn_MN.js +26 -0
  92. package/lib/translations/locales/nl_NL.js +27 -0
  93. package/lib/translations/locales/ro.js +27 -0
  94. package/lib/translations/locales/ru.js +2375 -32
  95. package/lib/translations/locales/sv.js +2379 -30
  96. package/lib/translations/locales/th.js +2401 -1
  97. package/lib/translations/locales/tl_PH.js +26 -0
  98. package/lib/translations/locales/tr.js +3 -0
  99. package/lib/translations/locales/vi.js +2396 -8
  100. package/lib/translations/locales/zh_TW.Big5.js +27 -0
  101. package/lib/translations/locales/zh_TW.js +27 -0
  102. package/package.json +12 -12
  103. package/scripts/publish_to_npm.sh +26 -0
  104. package/es/common/scroll.js +0 -45
  105. package/es/types/ts-migration.js +0 -1
  106. package/lib/common/scroll.js +0 -45
  107. package/lib/types/ts-migration.js +0 -1
@@ -0,0 +1,26 @@
1
+ /*
2
+ * Copyright (C) 2021 - present Instructure, Inc.
3
+ *
4
+ * This file is part of Canvas.
5
+ *
6
+ * Canvas is free software: you can redistribute it and/or modify it under
7
+ * the terms of the GNU Affero General Public License as published by the Free
8
+ * Software Foundation, version 3 of the License.
9
+ *
10
+ * Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
11
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12
+ * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
13
+ * details.
14
+ *
15
+ * You should have received a copy of the GNU Affero General Public License along
16
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
17
+ */
18
+ import formatMessage from '../../format-message';
19
+ const locale = {
20
+ "count_plural_one_item_loaded_other_items_loaded_857023b7": {
21
+ "message": "{ count, plural,\n one {}\n other {}\n}"
22
+ }
23
+ };
24
+ formatMessage.addLocale({
25
+ 'tl-PH': locale
26
+ });
@@ -677,6 +677,9 @@ const locale = {
677
677
  },
678
678
  "your_webcam_may_already_be_in_use_6cd64c25": {
679
679
  "message": "Web kameranız kullanılıyor olabilir."
680
+ },
681
+ "zoom_f3e54d69": {
682
+ "message": "Zoom"
680
683
  }
681
684
  };
682
685
  formatMessage.addLocale({