@instructure/canvas-rce 7.3.0 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +79 -0
- package/{es/rce/plugins/shared/ai_tools/index.js → __mocks__/@instructure/ui-media-player/_mockUiMediaPlayer.js} +4 -4
- package/__tests__/common/mimeClass.test.js +25 -1
- package/__tests__/rcs/api.test.js +280 -251
- package/es/canvasFileBrowser/FileBrowser.d.ts +2 -2
- package/es/canvasFileBrowser/FileBrowser.js +8 -7
- package/es/common/mimeClass.js +3 -1
- package/es/defaultTinymceConfig.js +47 -49
- package/es/enhance-user-content/doc_previews.js +5 -0
- package/es/enhance-user-content/enhance_user_content.js +6 -8
- package/es/enhance-user-content/index.d.ts +3 -1
- package/es/enhance-user-content/index.js +3 -1
- package/es/enhance-user-content/instructure_helper.js +1 -0
- package/es/enhance-user-content/youtube_overlay.js +18 -0
- package/es/getThemeVars.d.ts +1 -1
- package/es/getThemeVars.js +23 -26
- package/es/rce/AlertMessageArea.d.ts +2 -2
- package/es/rce/AlertMessageArea.js +3 -3
- package/es/rce/KeyboardShortcutModal.js +2 -2
- package/es/rce/RCE.d.ts +9 -0
- package/es/rce/RCE.js +4 -0
- package/es/rce/RCEGlobals.d.ts +2 -0
- package/es/rce/RCEGlobals.js +1 -0
- package/es/rce/RCEVariants.d.ts +1 -2
- package/es/rce/RCEVariants.js +1 -2
- package/es/rce/RCEWrapper.d.ts +16 -26
- package/es/rce/RCEWrapper.js +227 -271
- package/es/rce/RCEWrapper.utils.d.ts +1 -1
- package/es/rce/RCEWrapperProps.d.ts +2 -1
- package/es/rce/RCEWrapperProps.js +2 -1
- package/es/rce/StatusBar.d.ts +0 -1
- package/es/rce/StatusBar.js +3 -28
- package/es/rce/plugins/instructure_equation/EquationEditorModal/advancedOnlySyntax.d.ts +2 -1
- package/es/rce/plugins/instructure_equation/EquationEditorModal/advancedOnlySyntax.js +3 -1
- package/es/rce/plugins/instructure_equation/EquationEditorModal/index.d.ts +1 -0
- package/es/rce/plugins/instructure_equation/EquationEditorModal/index.js +12 -2
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.js +2 -2
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.js +3 -3
- package/es/rce/plugins/instructure_icon_maker/svg/constants.d.ts +20 -5
- package/es/rce/plugins/instructure_icon_maker/svg/utils.d.ts +1 -1
- package/es/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.js +2 -2
- package/es/rce/plugins/instructure_image/ImageEmbedOptions.d.ts +0 -2
- package/es/rce/plugins/instructure_image/ImageEmbedOptions.js +2 -9
- package/es/rce/plugins/instructure_paste/plugin.js +18 -12
- package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialogModal.d.ts +1 -1
- package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolSelectionDialog/ExternalToolSelectionDialog.d.ts +1 -1
- package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolSelectionDialog/ExternalToolSelectionDialog.js +25 -25
- package/es/rce/plugins/instructure_rce_external_tools/components/util/ToolLaunchIframe.d.ts +4 -0
- package/es/rce/plugins/instructure_rce_external_tools/components/util/ToolLaunchIframe.js +4 -0
- package/es/rce/plugins/instructure_record/AudioOptionsTray/TrayController.d.ts +11 -2
- package/es/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +92 -10
- package/es/rce/plugins/instructure_record/AudioOptionsTray/index.d.ts +13 -1
- package/es/rce/plugins/instructure_record/AudioOptionsTray/index.js +216 -24
- package/es/rce/plugins/instructure_record/MediaPanel/index.js +16 -5
- package/es/rce/plugins/instructure_record/VideoOptionsTray/TrayController.d.ts +14 -13
- package/es/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +110 -39
- package/es/rce/plugins/instructure_record/VideoOptionsTray/index.d.ts +11 -1
- package/es/rce/plugins/instructure_record/VideoOptionsTray/index.js +242 -67
- package/es/rce/plugins/instructure_record/clickCallback.js +19 -4
- package/es/rce/plugins/instructure_record/mediaTranslations.js +1 -1
- package/es/rce/plugins/instructure_record/playerLayoutOptions.d.ts +25 -0
- package/es/rce/plugins/instructure_record/playerLayoutOptions.js +91 -0
- package/es/rce/plugins/instructure_record/plugin.js +2 -5
- package/es/rce/plugins/instructure_record/utils.d.ts +3 -0
- package/es/rce/plugins/instructure_record/utils.js +31 -0
- package/es/rce/plugins/instructure_studio_media_options/plugin.js +82 -24
- package/es/rce/plugins/instructure_wordcount/components/WordCountModal.js +1 -0
- package/es/rce/plugins/shared/ContentSelection.d.ts +6 -1
- package/es/rce/plugins/shared/ContentSelection.js +15 -6
- package/es/rce/plugins/shared/DimensionsInput/DimensionInput.js +1 -2
- package/es/rce/plugins/shared/DimensionsInput/index.js +11 -12
- package/es/rce/plugins/shared/DimensionsInput/useDimensionsState.d.ts +1 -1
- package/es/rce/plugins/shared/DimensionsInput/useDimensionsState.js +4 -3
- package/es/rce/plugins/shared/StudioLtiSupportUtils.d.ts +27 -5
- package/es/rce/plugins/shared/StudioLtiSupportUtils.js +94 -9
- package/es/rce/plugins/shared/Upload/UploadFile.js +1 -8
- package/es/rce/style.d.ts +2 -1
- package/es/rce/style.js +4 -2
- package/es/rcs/api.d.ts +5 -10
- package/es/rcs/api.js +15 -21
- package/es/rcs/fake.d.ts +1 -7
- package/es/rcs/fake.js +1 -47
- package/es/sidebar/actions/media.d.ts +19 -6
- package/es/sidebar/actions/media.js +17 -4
- package/es/sidebar/actions/upload.d.ts +3 -3
- package/es/sidebar/actions/upload.js +9 -9
- package/es/sidebar/containers/Sidebar.js +0 -2
- package/es/sidebar/containers/sidebarHandlers.d.ts +2 -4
- package/es/sidebar/containers/sidebarHandlers.js +2 -5
- package/es/sidebar/reducers/index.d.ts +0 -1
- package/es/sidebar/reducers/index.js +0 -2
- package/es/sidebar/store/initialState.d.ts +0 -1
- package/es/sidebar/store/initialState.js +0 -5
- package/es/translations/locales/ar.js +77 -77
- package/es/translations/locales/ca.js +77 -77
- package/es/translations/locales/cy.js +77 -77
- package/es/translations/locales/da-x-k12.js +77 -77
- package/es/translations/locales/da.js +77 -77
- package/es/translations/locales/de.js +77 -77
- package/es/translations/locales/el.js +0 -9
- package/es/translations/locales/en-AU-x-unimelb.js +77 -77
- package/es/translations/locales/en-GB-x-ukhe.js +77 -77
- package/es/translations/locales/en.js +67 -79
- package/es/translations/locales/en_AU.js +77 -77
- package/es/translations/locales/en_CA.js +77 -77
- package/es/translations/locales/en_CY.js +77 -77
- package/es/translations/locales/en_GB.js +77 -77
- package/es/translations/locales/es.js +77 -77
- package/es/translations/locales/es_ES.js +77 -77
- package/es/translations/locales/fa_IR.js +0 -9
- package/es/translations/locales/fi.js +77 -77
- package/es/translations/locales/fr.js +77 -77
- package/es/translations/locales/fr_CA.js +77 -77
- package/es/translations/locales/ga.js +77 -77
- package/es/translations/locales/he.js +0 -9
- package/es/translations/locales/hi.js +77 -77
- package/es/translations/locales/ht.js +77 -77
- package/es/translations/locales/hu.js +0 -36
- package/es/translations/locales/hy.js +0 -9
- package/es/translations/locales/id.js +77 -77
- package/es/translations/locales/is.js +77 -77
- package/es/translations/locales/it.js +77 -77
- package/es/translations/locales/ja.js +77 -77
- package/es/translations/locales/ko.js +2455 -133
- package/es/translations/locales/mi.js +77 -77
- package/es/translations/locales/ms.js +77 -77
- package/es/translations/locales/nb-x-k12.js +77 -77
- package/es/translations/locales/nb.js +77 -77
- package/es/translations/locales/nl.js +78 -78
- package/es/translations/locales/nn.js +0 -36
- package/es/translations/locales/pl.js +77 -77
- package/es/translations/locales/pt.js +77 -77
- package/es/translations/locales/pt_BR.js +77 -77
- package/es/translations/locales/ru.js +77 -77
- package/es/translations/locales/sl.js +77 -77
- package/es/translations/locales/sv-x-k12.js +77 -77
- package/es/translations/locales/sv.js +77 -77
- package/es/translations/locales/th.js +77 -77
- package/es/translations/locales/tr.js +1962 -18
- package/es/translations/locales/uk_UA.js +0 -9
- package/es/translations/locales/vi.js +77 -77
- package/es/translations/locales/zh-Hans.js +77 -77
- package/es/translations/locales/zh-Hant.js +77 -77
- package/es/translations/locales/zh.js +77 -77
- package/es/translations/locales/zh_HK.js +77 -77
- package/eslint.config.js +16 -147
- package/jest/jest-setup.js +1 -0
- package/jest.config.js +2 -0
- package/oxlint.json +84 -0
- package/package.json +86 -62
- package/tsconfig.json +3 -2
- package/es/rce/plugins/shared/ai_tools/AIResponseModal.d.ts +0 -10
- package/es/rce/plugins/shared/ai_tools/AIResponseModal.js +0 -67
- package/es/rce/plugins/shared/ai_tools/AIToolsTray.d.ts +0 -18
- package/es/rce/plugins/shared/ai_tools/AIToolsTray.js +0 -489
- package/es/rce/plugins/shared/ai_tools/aiicons.d.ts +0 -7
- package/es/rce/plugins/shared/ai_tools/aiicons.js +0 -60
- package/es/rce/plugins/shared/ai_tools/index.d.ts +0 -3
- package/es/sidebar/actions/flickr.d.ts +0 -20
- package/es/sidebar/actions/flickr.js +0 -60
- package/es/sidebar/reducers/flickr.d.ts +0 -1
- package/es/sidebar/reducers/flickr.js +0 -49
|
@@ -36,9 +36,6 @@ const locale = {
|
|
|
36
36
|
"add_alt_text_for_the_image_48cd88aa": {
|
|
37
37
|
"message": "Tāpiri kuputuhi alt mo te pakoko"
|
|
38
38
|
},
|
|
39
|
-
"add_another_f4e50d57": {
|
|
40
|
-
"message": "Tāpiri tētahi atu"
|
|
41
|
-
},
|
|
42
39
|
"add_cc_subtitles_55f0394e": {
|
|
43
40
|
"message": "Tāpiri CC/Ngā Tohuwai"
|
|
44
41
|
},
|
|
@@ -60,12 +57,6 @@ const locale = {
|
|
|
60
57
|
"adjacent_links_with_the_same_url_should_be_a_singl_7a1f7f6c": {
|
|
61
58
|
"message": "Ko ngā hononga hono ki te URL kotahi me kotahi te hononga."
|
|
62
59
|
},
|
|
63
|
-
"ai_response_9624e8e8": {
|
|
64
|
-
"message": "Whakautu AI"
|
|
65
|
-
},
|
|
66
|
-
"ai_tools_fda01177": {
|
|
67
|
-
"message": "Utauta AI"
|
|
68
|
-
},
|
|
69
60
|
"aleph_f4ffd155": {
|
|
70
61
|
"message": "Arepa"
|
|
71
62
|
},
|
|
@@ -81,6 +72,12 @@ const locale = {
|
|
|
81
72
|
"all_apps_a50dea49": {
|
|
82
73
|
"message": "Ngā Raraunga Katoa"
|
|
83
74
|
},
|
|
75
|
+
"allow_media_download_16dcf2bd": {
|
|
76
|
+
"message": "Tukua te tango pāpāho"
|
|
77
|
+
},
|
|
78
|
+
"allow_transcript_download_3fa239f0": {
|
|
79
|
+
"message": "Tukua te tango tuhinga"
|
|
80
|
+
},
|
|
84
81
|
"alpha_15d59033": {
|
|
85
82
|
"message": "Arepa"
|
|
86
83
|
},
|
|
@@ -102,9 +99,6 @@ const locale = {
|
|
|
102
99
|
"an_error_occurred_making_a_network_request_d1bda348": {
|
|
103
100
|
"message": "I puta he hapa i te wā e hanga ana i te tono whatunga"
|
|
104
101
|
},
|
|
105
|
-
"an_error_occurred_processing_your_request_a3a38d84": {
|
|
106
|
-
"message": "I hapa te tukatuka i to tono"
|
|
107
|
-
},
|
|
108
102
|
"an_error_occurred_uploading_your_media_71f1444d": {
|
|
109
103
|
"message": "He hapa i puta i te wā e tikiake ana i tō pāpāhō."
|
|
110
104
|
},
|
|
@@ -243,6 +237,9 @@ const locale = {
|
|
|
243
237
|
"cap_product_3a5265a6": {
|
|
244
238
|
"message": "Hua potae"
|
|
245
239
|
},
|
|
240
|
+
"caption_manager_aae0906f": {
|
|
241
|
+
"message": "Kaiwhakahaere Tapanga"
|
|
242
|
+
},
|
|
246
243
|
"center_align_e68d9997": {
|
|
247
244
|
"message": "Tiaro Pokapū"
|
|
248
245
|
},
|
|
@@ -264,6 +261,9 @@ const locale = {
|
|
|
264
261
|
"change_text_color_1aecb912": {
|
|
265
262
|
"message": "Huria te tae o te kuputuhi"
|
|
266
263
|
},
|
|
264
|
+
"changes_will_apply_after_you_save_this_page_fb324e9d": {
|
|
265
|
+
"message": "Ka pā ngā huringa i muri i tō tiaki i tēnei whārangi."
|
|
266
|
+
},
|
|
267
267
|
"changes_you_made_may_not_be_saved_4e8db973": {
|
|
268
268
|
"message": "Kaore pea e tiakina ngā huringa i mahia e koe."
|
|
269
269
|
},
|
|
@@ -324,6 +324,9 @@ const locale = {
|
|
|
324
324
|
"close_d634289d": {
|
|
325
325
|
"message": "Katia"
|
|
326
326
|
},
|
|
327
|
+
"close_keyboard_shortcuts_modal_291ce074": {
|
|
328
|
+
"message": "Katia te Modal Pokatata Papapātuhi"
|
|
329
|
+
},
|
|
327
330
|
"closed_caption_file_must_be_less_than_maxkb_kb_5880f752": {
|
|
328
331
|
"message": "Katia ngā tapanga kōnae me iti ake i te { maxKb } kb"
|
|
329
332
|
},
|
|
@@ -333,6 +336,9 @@ const locale = {
|
|
|
333
336
|
"clubs_suit_c1ffedff": {
|
|
334
337
|
"message": "Karapu (Hutu)"
|
|
335
338
|
},
|
|
339
|
+
"collab_575ac7bc": {
|
|
340
|
+
"message": "Mahi tahi"
|
|
341
|
+
},
|
|
336
342
|
"collaborations_5c56c15f": {
|
|
337
343
|
"message": "Ngātahi"
|
|
338
344
|
},
|
|
@@ -366,9 +372,6 @@ const locale = {
|
|
|
366
372
|
"complex_numbers_a543d004": {
|
|
367
373
|
"message": "Matatini Tau He taurite"
|
|
368
374
|
},
|
|
369
|
-
"compose_44c904f4": {
|
|
370
|
-
"message": "Tito"
|
|
371
|
-
},
|
|
372
375
|
"computer_1d7dfa6f": {
|
|
373
376
|
"message": "Rorohiko"
|
|
374
377
|
},
|
|
@@ -399,9 +402,6 @@ const locale = {
|
|
|
399
402
|
"coproduct_e7838082": {
|
|
400
403
|
"message": "Hua-tahi"
|
|
401
404
|
},
|
|
402
|
-
"copy_9748f9f": {
|
|
403
|
-
"message": "Tārua"
|
|
404
|
-
},
|
|
405
405
|
"copyright_holder_66ee111": {
|
|
406
406
|
"message": "Kaimau Manatārua:"
|
|
407
407
|
},
|
|
@@ -471,8 +471,8 @@ const locale = {
|
|
|
471
471
|
"custom_6979cd81": {
|
|
472
472
|
"message": "Tikanga"
|
|
473
473
|
},
|
|
474
|
-
"
|
|
475
|
-
"message": "
|
|
474
|
+
"custom_dimensions_96596dba": {
|
|
475
|
+
"message": "Ngā Ahu Ritenga"
|
|
476
476
|
},
|
|
477
477
|
"cyan_c1d5f68a": {
|
|
478
478
|
"message": "Kawariki"
|
|
@@ -528,9 +528,6 @@ const locale = {
|
|
|
528
528
|
"describe_the_type_ff448da5": {
|
|
529
529
|
"message": "(Whakaahuahia te { TYPE })"
|
|
530
530
|
},
|
|
531
|
-
"describe_the_video_2fe8f46a": {
|
|
532
|
-
"message": "(Whakātu te ataata)"
|
|
533
|
-
},
|
|
534
531
|
"description_436c48d7": {
|
|
535
532
|
"message": "Whakāhuatanga"
|
|
536
533
|
},
|
|
@@ -552,9 +549,6 @@ const locale = {
|
|
|
552
549
|
"dimension_type_f5fa9170": {
|
|
553
550
|
"message": "Momo Ahu"
|
|
554
551
|
},
|
|
555
|
-
"dimensions_45ddb7b7": {
|
|
556
|
-
"message": "Ngā āhuatanga"
|
|
557
|
-
},
|
|
558
552
|
"directionality_26ae9e08": {
|
|
559
553
|
"message": "Hangai tōtika"
|
|
560
554
|
},
|
|
@@ -576,9 +570,6 @@ const locale = {
|
|
|
576
570
|
"disjoint_union_e74351a8": {
|
|
577
571
|
"message": "Uniana wehe"
|
|
578
572
|
},
|
|
579
|
-
"dislike_14befc48": {
|
|
580
|
-
"message": "Kare e pai"
|
|
581
|
-
},
|
|
582
573
|
"display_options_315aba85": {
|
|
583
574
|
"message": "Whakātuhia ngā Kōwhiringa"
|
|
584
575
|
},
|
|
@@ -705,6 +696,9 @@ const locale = {
|
|
|
705
696
|
"english_icon_25bfe845": {
|
|
706
697
|
"message": "Ingarihi Tohu"
|
|
707
698
|
},
|
|
699
|
+
"enter_a_media_title_81b490ec": {
|
|
700
|
+
"message": "Whakauruhia he taitara pāpāho"
|
|
701
|
+
},
|
|
708
702
|
"enter_at_least_3_characters_to_search_4f037ee0": {
|
|
709
703
|
"message": "Pātō ki iti ake i te 3 pūāhua hei rapu"
|
|
710
704
|
},
|
|
@@ -714,9 +708,6 @@ const locale = {
|
|
|
714
708
|
"enter_search_text_26cb4459": {
|
|
715
709
|
"message": "tomo kupu rapu"
|
|
716
710
|
},
|
|
717
|
-
"enter_text_8b35c65b": {
|
|
718
|
-
"message": "Whakauruhia te kuputuhi"
|
|
719
|
-
},
|
|
720
711
|
"epsilon_54bb8afa": {
|
|
721
712
|
"message": "Epsilon"
|
|
722
713
|
},
|
|
@@ -768,6 +759,9 @@ const locale = {
|
|
|
768
759
|
"extra_large_b6cdf1ff": {
|
|
769
760
|
"message": "Nui rawa atu"
|
|
770
761
|
},
|
|
762
|
+
"extra_large_width_x_height_px_915571fa": {
|
|
763
|
+
"message": "Tino Nui ({ width } x { height }px)"
|
|
764
|
+
},
|
|
771
765
|
"extra_small_9ae33252": {
|
|
772
766
|
"message": "Tāpiri iti"
|
|
773
767
|
},
|
|
@@ -783,15 +777,18 @@ const locale = {
|
|
|
783
777
|
"failed_getting_file_contents_e9ea19f4": {
|
|
784
778
|
"message": "I rahua te whiwhi ihirangi kōnae"
|
|
785
779
|
},
|
|
786
|
-
"failed_to_copy_response_d3def551": {
|
|
787
|
-
"message": "I rahua te kape whakautu"
|
|
788
|
-
},
|
|
789
780
|
"failed_to_retrieve_content_from_external_tool_5899c213": {
|
|
790
781
|
"message": "I rahua te tiki ihirangi mai i tetahi taputapu o waho"
|
|
791
782
|
},
|
|
792
783
|
"file_name_8fd421ff": {
|
|
793
784
|
"message": "Ingoa kōnae"
|
|
794
785
|
},
|
|
786
|
+
"file_preview_21667a6e": {
|
|
787
|
+
"message": "Arokite kōnae"
|
|
788
|
+
},
|
|
789
|
+
"file_preview_for_filename_ab314195": {
|
|
790
|
+
"message": "Arokite kōnae mō { fileName }"
|
|
791
|
+
},
|
|
795
792
|
"file_storage_quota_exceeded_b7846cd1": {
|
|
796
793
|
"message": "Te rokiroki kōnae motunga hipa"
|
|
797
794
|
},
|
|
@@ -972,12 +969,6 @@ const locale = {
|
|
|
972
969
|
"height_69b03e15": {
|
|
973
970
|
"message": "Teitei"
|
|
974
971
|
},
|
|
975
|
-
"hello_please_describe_the_modifications_you_would__49b19837": {
|
|
976
|
-
"message": "Kia ora. Tena koa whakaahuahia nga whakarereketanga e hiahia ana koe ki te mahi ki to titonga."
|
|
977
|
-
},
|
|
978
|
-
"hello_please_describe_the_modifications_you_would__600dbbf0": {
|
|
979
|
-
"message": "Kia ora. Tena koa whakaahuahia nga whakarereketanga e hiahia ana koe ki te mahi ki to whiringa."
|
|
980
|
-
},
|
|
981
972
|
"hexagon_d8468e0d": {
|
|
982
973
|
"message": "Tapaono"
|
|
983
974
|
},
|
|
@@ -993,6 +984,9 @@ const locale = {
|
|
|
993
984
|
"home_351838cd": {
|
|
994
985
|
"message": "Kāinga"
|
|
995
986
|
},
|
|
987
|
+
"how_to_request_and_edit_captions_a49a9c6b": {
|
|
988
|
+
"message": "Me pēhea te tono me te whakatika i ngā taitara?"
|
|
989
|
+
},
|
|
996
990
|
"html_code_editor_fd967a44": {
|
|
997
991
|
"message": "html waehere editor"
|
|
998
992
|
},
|
|
@@ -1005,9 +999,6 @@ const locale = {
|
|
|
1005
999
|
"i_hold_the_copyright_71ee91b1": {
|
|
1006
1000
|
"message": "Mau ahau te manatārua"
|
|
1007
1001
|
},
|
|
1008
|
-
"i_m_sorry_but_i_cannot_find_the_ai_s_answer_67569d19": {
|
|
1009
|
-
"message": "Ka pouri ahau, engari kaore au e kite i te whakautu a AI"
|
|
1010
|
-
},
|
|
1011
1002
|
"icon_215a1dc6": {
|
|
1012
1003
|
"message": "Icon"
|
|
1013
1004
|
},
|
|
@@ -1179,6 +1170,12 @@ const locale = {
|
|
|
1179
1170
|
"large_text_e7ba08cd": {
|
|
1180
1171
|
"message": "Kuputuhi nui"
|
|
1181
1172
|
},
|
|
1173
|
+
"large_width_x_height_px_c61c2fd": {
|
|
1174
|
+
"message": "Nui ({ width } x { height }px)"
|
|
1175
|
+
},
|
|
1176
|
+
"learn_ad3b3505": {
|
|
1177
|
+
"message": "Ako"
|
|
1178
|
+
},
|
|
1182
1179
|
"learn_more_about_adjacent_links_2cb9762c": {
|
|
1183
1180
|
"message": "Ako ano i ngā hono tata"
|
|
1184
1181
|
},
|
|
@@ -1320,6 +1317,9 @@ const locale = {
|
|
|
1320
1317
|
"loading_preview_9f077aa1": {
|
|
1321
1318
|
"message": "Uta ana arokite"
|
|
1322
1319
|
},
|
|
1320
|
+
"lock_speed_at_1x_57d4f815": {
|
|
1321
|
+
"message": "Tere maukati i te 1x"
|
|
1322
|
+
},
|
|
1323
1323
|
"locked_762f138b": {
|
|
1324
1324
|
"message": "Kua rakaina"
|
|
1325
1325
|
},
|
|
@@ -1353,12 +1353,18 @@ const locale = {
|
|
|
1353
1353
|
"media_file_is_processing_please_try_again_later_58a6d49": {
|
|
1354
1354
|
"message": "Kei te tukatuka te konae pāpāho. Tēnā koa ngana anō i muri mai."
|
|
1355
1355
|
},
|
|
1356
|
+
"media_options_saved_560c4ec8": {
|
|
1357
|
+
"message": "Kua tiakina ngā kōwhiringa pāpāho."
|
|
1358
|
+
},
|
|
1356
1359
|
"media_title_2112243b": {
|
|
1357
1360
|
"message": "Pāpāho Taitara"
|
|
1358
1361
|
},
|
|
1359
1362
|
"medium_5a8e9ead": {
|
|
1360
1363
|
"message": "Kauwaka"
|
|
1361
1364
|
},
|
|
1365
|
+
"medium_width_x_height_px_b076f6b6": {
|
|
1366
|
+
"message": "Waenga ({ width } x { height }px)"
|
|
1367
|
+
},
|
|
1362
1368
|
"merge_links_2478df96": {
|
|
1363
1369
|
"message": "Whakapiri ngā hononga"
|
|
1364
1370
|
},
|
|
@@ -1389,9 +1395,6 @@ const locale = {
|
|
|
1389
1395
|
"miscellaneous_e9818229": {
|
|
1390
1396
|
"message": "Momo kē"
|
|
1391
1397
|
},
|
|
1392
|
-
"modify_6b0b13e3": {
|
|
1393
|
-
"message": "Whakarerekē"
|
|
1394
|
-
},
|
|
1395
1398
|
"module_90d9fd32": {
|
|
1396
1399
|
"message": "Kōwae"
|
|
1397
1400
|
},
|
|
@@ -1581,6 +1584,9 @@ const locale = {
|
|
|
1581
1584
|
"operators_a2ef9a93": {
|
|
1582
1585
|
"message": "Ngā Kaiwhakamahi"
|
|
1583
1586
|
},
|
|
1587
|
+
"options_3ab0ea65": {
|
|
1588
|
+
"message": "Kōwhiringa"
|
|
1589
|
+
},
|
|
1584
1590
|
"or_9b70ccaa": {
|
|
1585
1591
|
"message": "Rānei"
|
|
1586
1592
|
},
|
|
@@ -1692,15 +1698,15 @@ const locale = {
|
|
|
1692
1698
|
"play_media_comment_by_name_from_createdat_c230123d": {
|
|
1693
1699
|
"message": "Whakatangihia nga korero pāpāho na { name } mai i { createdAt }."
|
|
1694
1700
|
},
|
|
1701
|
+
"player_layout_14e09a29": {
|
|
1702
|
+
"message": "Tahora kaitākaro"
|
|
1703
|
+
},
|
|
1695
1704
|
"please_allow_canvas_to_access_your_microphone_and__dc2c3079": {
|
|
1696
1705
|
"message": "Tēnā koa tukuna Canvas ki te whakauru i tō reooro me tō kāmera paetukutuku."
|
|
1697
1706
|
},
|
|
1698
1707
|
"please_choose_a_file_c2449cc": {
|
|
1699
1708
|
"message": "Kōwhiria he kōnae"
|
|
1700
1709
|
},
|
|
1701
|
-
"please_decribe_what_you_would_like_to_compose_27a51be5": {
|
|
1702
|
-
"message": "Whakaahuahia he aha taau e hiahia ana ki te tito."
|
|
1703
|
-
},
|
|
1704
1710
|
"please_enter_a_file_name_f159edc1": {
|
|
1705
1711
|
"message": "Tēnā koa whakauru he ingoa kōnae"
|
|
1706
1712
|
},
|
|
@@ -1863,18 +1869,12 @@ const locale = {
|
|
|
1863
1869
|
"resize_ec83d538": {
|
|
1864
1870
|
"message": "Rahi anō"
|
|
1865
1871
|
},
|
|
1866
|
-
"response_copied_to_clipboard_130d66cd": {
|
|
1867
|
-
"message": "Kua tāruahia te whakautu ki te papatopenga"
|
|
1868
|
-
},
|
|
1869
1872
|
"restore_auto_save_deccd84b": {
|
|
1870
1873
|
"message": "Whakaora tiaki aunoa?"
|
|
1871
1874
|
},
|
|
1872
1875
|
"result_index_of_max_7db5ad8b": {
|
|
1873
1876
|
"message": "Hua { index } o { max }."
|
|
1874
1877
|
},
|
|
1875
|
-
"retry_ebd5f8ba": {
|
|
1876
|
-
"message": "Ngana anō"
|
|
1877
|
-
},
|
|
1878
1878
|
"reverse_turnstile_does_not_yield_7558be06": {
|
|
1879
1879
|
"message": "Hurihuri Whakamuri (Kare e Tuku)"
|
|
1880
1880
|
},
|
|
@@ -2025,23 +2025,17 @@ const locale = {
|
|
|
2025
2025
|
"shortcut_911d6255": {
|
|
2026
2026
|
"message": "Pokatata"
|
|
2027
2027
|
},
|
|
2028
|
-
"show_all_967a90f0": {
|
|
2029
|
-
"message": "Whakaatu katoa"
|
|
2030
|
-
},
|
|
2031
|
-
"show_audio_options_b489926b": {
|
|
2032
|
-
"message": "Whakaatutia ororongo kōwhiringa"
|
|
2033
|
-
},
|
|
2034
2028
|
"show_image_options_1e2ecc6b": {
|
|
2035
2029
|
"message": "Whakātu wāhanga āhua"
|
|
2036
2030
|
},
|
|
2037
2031
|
"show_link_options_545338fd": {
|
|
2038
2032
|
"message": "Whakātu Hono Kōwhiringa"
|
|
2039
2033
|
},
|
|
2040
|
-
"
|
|
2041
|
-
"message": "
|
|
2034
|
+
"show_rolling_transcript_c1481744": {
|
|
2035
|
+
"message": "Whakaatuhia te tuhinga hurihuri"
|
|
2042
2036
|
},
|
|
2043
|
-
"
|
|
2044
|
-
"message": "
|
|
2037
|
+
"show_rolling_transcript_d353aca4": {
|
|
2038
|
+
"message": "Whakaatuhia te tuhinga hurihuri"
|
|
2045
2039
|
},
|
|
2046
2040
|
"sighted_users_browse_web_pages_quickly_looking_for_1d4db0c1": {
|
|
2047
2041
|
"message": "Ngā kaiwhakamahi e āhei ana ki te tiro pūtirotiro tere i te ngā whārangi tukutuku, me te rapu i ngā pane nui, maia rānei. Ka whakawhirinaki ngā kaiwhakamahi pānui mata ki ngā pane mo te māramatanga o te horopaki. Me whakamahi ngā pane i te hanganga tika."
|
|
@@ -2070,6 +2064,9 @@ const locale = {
|
|
|
2070
2064
|
"small_b070434a": {
|
|
2071
2065
|
"message": "Iti"
|
|
2072
2066
|
},
|
|
2067
|
+
"small_width_x_height_px_359acd38": {
|
|
2068
|
+
"message": "Iti ({ width } x { height }px)"
|
|
2069
|
+
},
|
|
2073
2070
|
"solid_circle_9f061dfc": {
|
|
2074
2071
|
"message": "Porowhita Mārō"
|
|
2075
2072
|
},
|
|
@@ -2325,9 +2322,15 @@ const locale = {
|
|
|
2325
2322
|
"though_your_video_will_have_the_correct_title_in_t_90e427f3": {
|
|
2326
2323
|
"message": "Ahakoa tō ataata te taitara tika i roto i te tirotiro, i hapa te whakahou i roto i te pātengi raraunga."
|
|
2327
2324
|
},
|
|
2325
|
+
"thumbnail_e0de666f": {
|
|
2326
|
+
"message": "Karakōnui"
|
|
2327
|
+
},
|
|
2328
2328
|
"timebar_a4d18443": {
|
|
2329
2329
|
"message": "Tapareti"
|
|
2330
2330
|
},
|
|
2331
|
+
"title_can_t_be_blank_eb4021d7": {
|
|
2332
|
+
"message": "Kāore e taea te noho kau te taitara"
|
|
2333
|
+
},
|
|
2331
2334
|
"title_ee03d132": {
|
|
2332
2335
|
"message": "taitara"
|
|
2333
2336
|
},
|
|
@@ -2349,6 +2352,9 @@ const locale = {
|
|
|
2349
2352
|
"top_66e0adb6": {
|
|
2350
2353
|
"message": "Runga"
|
|
2351
2354
|
},
|
|
2355
|
+
"transcript_panel_is_available_at_widths_above_720p_1cf94c0d": {
|
|
2356
|
+
"message": "Kei te wātea te papa tuhinga mō ngā whānui neke atu i te 720px."
|
|
2357
|
+
},
|
|
2352
2358
|
"tray_839df38a": {
|
|
2353
2359
|
"message": "Pereki"
|
|
2354
2360
|
},
|
|
@@ -2382,6 +2388,9 @@ const locale = {
|
|
|
2382
2388
|
"unpublished_dfd8801": {
|
|
2383
2389
|
"message": "kaore i pānuitia"
|
|
2384
2390
|
},
|
|
2391
|
+
"unsaved_changes_will_be_lost_f977252a": {
|
|
2392
|
+
"message": "Ka ngaro ngā huringa kāore anō kia tiakina."
|
|
2393
|
+
},
|
|
2385
2394
|
"untitled_16aa4f2b": {
|
|
2386
2395
|
"message": "Taitara kore"
|
|
2387
2396
|
},
|
|
@@ -2505,9 +2514,6 @@ const locale = {
|
|
|
2505
2514
|
"used_by_screen_readers_to_describe_the_content_of__b1e76d9e": {
|
|
2506
2515
|
"message": "Whakamahia e ngā kaipānui mata hei whakāhua i ngā ihirangi o te āhua"
|
|
2507
2516
|
},
|
|
2508
|
-
"used_by_screen_readers_to_describe_the_video_37ebad25": {
|
|
2509
|
-
"message": "Whakamahia e ngā kaipānui mata hei whakāhua i te ataata"
|
|
2510
|
-
},
|
|
2511
2517
|
"user_documents_c206e61f": {
|
|
2512
2518
|
"message": "Kaiwhakamahi Tuhinga"
|
|
2513
2519
|
},
|
|
@@ -2565,8 +2571,8 @@ const locale = {
|
|
|
2565
2571
|
"view_word_and_character_counts_a743dd0c": {
|
|
2566
2572
|
"message": "Tatauhia nga kupu me nga tohu."
|
|
2567
2573
|
},
|
|
2568
|
-
"
|
|
2569
|
-
"message": "
|
|
2574
|
+
"viewer_restrictions_e14274c9": {
|
|
2575
|
+
"message": "Nga Rahui Kaitirotiro"
|
|
2570
2576
|
},
|
|
2571
2577
|
"we_couldn_t_detect_a_working_microphone_connected__ceb71c40": {
|
|
2572
2578
|
"message": "Kaore i kitea he orooro e mahi ana e hono ana ki tō pūrere."
|
|
@@ -2586,9 +2592,6 @@ const locale = {
|
|
|
2586
2592
|
"webpages_should_only_have_a_single_h1_which_is_aut_dc99189e": {
|
|
2587
2593
|
"message": "Ko nga wharangi Tukutuku kia kotahi anake te H1, ka whakamahia aunoatia e te Taitara o te wharangi. Ko te pane tuatahi o to ihirangi me H2."
|
|
2588
2594
|
},
|
|
2589
|
-
"what_would_you_like_to_do_6dc0d541": {
|
|
2590
|
-
"message": "He aha e hiahia ana koe ki te mahi?"
|
|
2591
|
-
},
|
|
2592
2595
|
"when_markup_is_used_that_visually_formats_items_as_f941fc1b": {
|
|
2593
2596
|
"message": "Ina whakamahia te tohu tohu i ngā taonga tautuhi tirohanga hei rārangi, ēngari kaore e tohu i te hononga o te rārangi, he uaua ki ngā kaiwhakamahi te whakawhiti i ngā kōrero."
|
|
2594
2597
|
},
|
|
@@ -2619,9 +2622,6 @@ const locale = {
|
|
|
2619
2622
|
"wreath_product_200b38ef": {
|
|
2620
2623
|
"message": "Te karaehe Hua"
|
|
2621
2624
|
},
|
|
2622
|
-
"writing_assistant_a30ac16a": {
|
|
2623
|
-
"message": "Kaiāwhina Tuhituhi"
|
|
2624
|
-
},
|
|
2625
2625
|
"xi_149681d0": {
|
|
2626
2626
|
"message": "Xi"
|
|
2627
2627
|
},
|