@instructure/canvas-rce 7.3.1 → 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 +65 -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/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/youtube_overlay.js +18 -0
- package/es/getThemeVars.d.ts +1 -1
- package/es/getThemeVars.js +23 -26
- package/es/rce/KeyboardShortcutModal.js +1 -1
- 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 +6 -16
- package/es/rce/RCEWrapper.js +18 -87
- 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/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 -26
- 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 -6
- package/es/rce/plugins/shared/StudioLtiSupportUtils.js +82 -13
- 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 +65 -80
- package/es/translations/locales/ca.js +65 -80
- package/es/translations/locales/cy.js +65 -80
- package/es/translations/locales/da-x-k12.js +65 -80
- package/es/translations/locales/da.js +65 -80
- package/es/translations/locales/de.js +65 -80
- package/es/translations/locales/el.js +0 -9
- package/es/translations/locales/en-AU-x-unimelb.js +65 -80
- package/es/translations/locales/en-GB-x-ukhe.js +65 -80
- package/es/translations/locales/en.js +61 -79
- package/es/translations/locales/en_AU.js +65 -80
- package/es/translations/locales/en_CA.js +65 -80
- package/es/translations/locales/en_CY.js +65 -80
- package/es/translations/locales/en_GB.js +65 -80
- package/es/translations/locales/es.js +65 -80
- package/es/translations/locales/es_ES.js +65 -80
- package/es/translations/locales/fa_IR.js +0 -9
- package/es/translations/locales/fi.js +65 -80
- package/es/translations/locales/fr.js +65 -80
- package/es/translations/locales/fr_CA.js +65 -80
- package/es/translations/locales/ga.js +65 -80
- package/es/translations/locales/he.js +0 -9
- package/es/translations/locales/hi.js +65 -80
- package/es/translations/locales/ht.js +65 -80
- package/es/translations/locales/hu.js +0 -36
- package/es/translations/locales/hy.js +0 -9
- package/es/translations/locales/id.js +65 -80
- package/es/translations/locales/is.js +65 -80
- package/es/translations/locales/it.js +65 -80
- package/es/translations/locales/ja.js +65 -80
- package/es/translations/locales/ko.js +2455 -133
- package/es/translations/locales/mi.js +65 -80
- package/es/translations/locales/ms.js +65 -80
- package/es/translations/locales/nb-x-k12.js +65 -80
- package/es/translations/locales/nb.js +65 -80
- package/es/translations/locales/nl.js +66 -81
- package/es/translations/locales/nn.js +0 -36
- package/es/translations/locales/pl.js +65 -80
- package/es/translations/locales/pt.js +65 -80
- package/es/translations/locales/pt_BR.js +65 -80
- package/es/translations/locales/ru.js +65 -80
- package/es/translations/locales/sl.js +65 -80
- package/es/translations/locales/sv-x-k12.js +65 -80
- package/es/translations/locales/sv.js +65 -80
- package/es/translations/locales/th.js +65 -80
- package/es/translations/locales/tr.js +1962 -18
- package/es/translations/locales/uk_UA.js +0 -9
- package/es/translations/locales/vi.js +65 -80
- package/es/translations/locales/zh-Hans.js +65 -80
- package/es/translations/locales/zh-Hant.js +65 -80
- package/es/translations/locales/zh.js +65 -80
- package/es/translations/locales/zh_HK.js +65 -80
- 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
|
@@ -37,9 +37,6 @@ const locale = {
|
|
|
37
37
|
"add_alt_text_for_the_image_48cd88aa": {
|
|
38
38
|
"message": "Dodaj alternatywny tekst dla obrazka"
|
|
39
39
|
},
|
|
40
|
-
"add_another_f4e50d57": {
|
|
41
|
-
"message": "Dodaj kolejne"
|
|
42
|
-
},
|
|
43
40
|
"add_cc_subtitles_55f0394e": {
|
|
44
41
|
"message": "Dodaj CC/napisy"
|
|
45
42
|
},
|
|
@@ -61,12 +58,6 @@ const locale = {
|
|
|
61
58
|
"adjacent_links_with_the_same_url_should_be_a_singl_7a1f7f6c": {
|
|
62
59
|
"message": "Sąsiadujące łącza o tym samym adresie URL powinny stanowić pojedyncze łącze."
|
|
63
60
|
},
|
|
64
|
-
"ai_response_9624e8e8": {
|
|
65
|
-
"message": "Odpowiedź AI"
|
|
66
|
-
},
|
|
67
|
-
"ai_tools_fda01177": {
|
|
68
|
-
"message": "Narzędzia IA"
|
|
69
|
-
},
|
|
70
61
|
"aleph_f4ffd155": {
|
|
71
62
|
"message": "Alef"
|
|
72
63
|
},
|
|
@@ -82,6 +73,12 @@ const locale = {
|
|
|
82
73
|
"all_apps_a50dea49": {
|
|
83
74
|
"message": "Wszystkie aplikacje"
|
|
84
75
|
},
|
|
76
|
+
"allow_media_download_16dcf2bd": {
|
|
77
|
+
"message": "Zezwól na pobieranie multimediów"
|
|
78
|
+
},
|
|
79
|
+
"allow_transcript_download_3fa239f0": {
|
|
80
|
+
"message": "Zezwól na pobieranie transkrypcji"
|
|
81
|
+
},
|
|
85
82
|
"alpha_15d59033": {
|
|
86
83
|
"message": "Alfa"
|
|
87
84
|
},
|
|
@@ -103,9 +100,6 @@ const locale = {
|
|
|
103
100
|
"an_error_occurred_making_a_network_request_d1bda348": {
|
|
104
101
|
"message": "Wystąpił błąd podczas przesyłania żądania sieciowego"
|
|
105
102
|
},
|
|
106
|
-
"an_error_occurred_processing_your_request_a3a38d84": {
|
|
107
|
-
"message": "Podczas przetwarzania żądania wystąpił błąd."
|
|
108
|
-
},
|
|
109
103
|
"an_error_occurred_uploading_your_media_71f1444d": {
|
|
110
104
|
"message": "Podczas wysyłania multimediów wystąpił błąd."
|
|
111
105
|
},
|
|
@@ -244,6 +238,9 @@ const locale = {
|
|
|
244
238
|
"cap_product_3a5265a6": {
|
|
245
239
|
"message": "G mnożenie"
|
|
246
240
|
},
|
|
241
|
+
"caption_manager_aae0906f": {
|
|
242
|
+
"message": "Menedżer napisów"
|
|
243
|
+
},
|
|
247
244
|
"center_align_e68d9997": {
|
|
248
245
|
"message": "Wyśrodkuj"
|
|
249
246
|
},
|
|
@@ -265,6 +262,9 @@ const locale = {
|
|
|
265
262
|
"change_text_color_1aecb912": {
|
|
266
263
|
"message": "Zmień kolor tekstu"
|
|
267
264
|
},
|
|
265
|
+
"changes_will_apply_after_you_save_this_page_fb324e9d": {
|
|
266
|
+
"message": "Zmiany zostaną zastosowane, gdy opuścisz tę stronę."
|
|
267
|
+
},
|
|
268
268
|
"changes_you_made_may_not_be_saved_4e8db973": {
|
|
269
269
|
"message": "Zmiany mogą nie zostać zapisane."
|
|
270
270
|
},
|
|
@@ -325,6 +325,9 @@ const locale = {
|
|
|
325
325
|
"close_d634289d": {
|
|
326
326
|
"message": "Zamknij"
|
|
327
327
|
},
|
|
328
|
+
"close_keyboard_shortcuts_modal_291ce074": {
|
|
329
|
+
"message": "Zamknij okno skrótów klawiszowych"
|
|
330
|
+
},
|
|
328
331
|
"closed_caption_file_must_be_less_than_maxkb_kb_5880f752": {
|
|
329
332
|
"message": "Plik z napisami musi być mniejszy niż { maxKb } kb"
|
|
330
333
|
},
|
|
@@ -370,9 +373,6 @@ const locale = {
|
|
|
370
373
|
"complex_numbers_a543d004": {
|
|
371
374
|
"message": "Liczby zespolone"
|
|
372
375
|
},
|
|
373
|
-
"compose_44c904f4": {
|
|
374
|
-
"message": "Utwórz"
|
|
375
|
-
},
|
|
376
376
|
"computer_1d7dfa6f": {
|
|
377
377
|
"message": "Komputer"
|
|
378
378
|
},
|
|
@@ -403,9 +403,6 @@ const locale = {
|
|
|
403
403
|
"coproduct_e7838082": {
|
|
404
404
|
"message": "Suma"
|
|
405
405
|
},
|
|
406
|
-
"copy_9748f9f": {
|
|
407
|
-
"message": "Kopiuj"
|
|
408
|
-
},
|
|
409
406
|
"copyright_holder_66ee111": {
|
|
410
407
|
"message": "Właściciel praw autorskich:"
|
|
411
408
|
},
|
|
@@ -475,8 +472,8 @@ const locale = {
|
|
|
475
472
|
"custom_6979cd81": {
|
|
476
473
|
"message": "Niestandardowe"
|
|
477
474
|
},
|
|
478
|
-
"
|
|
479
|
-
"message": "
|
|
475
|
+
"custom_dimensions_96596dba": {
|
|
476
|
+
"message": "Niestandardowe wymiary"
|
|
480
477
|
},
|
|
481
478
|
"cyan_c1d5f68a": {
|
|
482
479
|
"message": "Cyjan"
|
|
@@ -532,9 +529,6 @@ const locale = {
|
|
|
532
529
|
"describe_the_type_ff448da5": {
|
|
533
530
|
"message": "(opisz { TYPE })"
|
|
534
531
|
},
|
|
535
|
-
"describe_the_video_2fe8f46a": {
|
|
536
|
-
"message": "(opisz wideo)"
|
|
537
|
-
},
|
|
538
532
|
"description_436c48d7": {
|
|
539
533
|
"message": "Opis"
|
|
540
534
|
},
|
|
@@ -556,9 +550,6 @@ const locale = {
|
|
|
556
550
|
"dimension_type_f5fa9170": {
|
|
557
551
|
"message": "Typ wymiaru"
|
|
558
552
|
},
|
|
559
|
-
"dimensions_45ddb7b7": {
|
|
560
|
-
"message": "Wymiary"
|
|
561
|
-
},
|
|
562
553
|
"directionality_26ae9e08": {
|
|
563
554
|
"message": "Kierunkowość"
|
|
564
555
|
},
|
|
@@ -580,9 +571,6 @@ const locale = {
|
|
|
580
571
|
"disjoint_union_e74351a8": {
|
|
581
572
|
"message": "Suma rozłączna"
|
|
582
573
|
},
|
|
583
|
-
"dislike_14befc48": {
|
|
584
|
-
"message": "Odrzuć"
|
|
585
|
-
},
|
|
586
574
|
"display_options_315aba85": {
|
|
587
575
|
"message": "Opcje wyświetlania"
|
|
588
576
|
},
|
|
@@ -709,6 +697,9 @@ const locale = {
|
|
|
709
697
|
"english_icon_25bfe845": {
|
|
710
698
|
"message": "Ikona angielskiego"
|
|
711
699
|
},
|
|
700
|
+
"enter_a_media_title_81b490ec": {
|
|
701
|
+
"message": "Wpisz tytuł multimediów"
|
|
702
|
+
},
|
|
712
703
|
"enter_at_least_3_characters_to_search_4f037ee0": {
|
|
713
704
|
"message": "Wpisz co najmniej 3 znaki, aby wyszukać."
|
|
714
705
|
},
|
|
@@ -718,9 +709,6 @@ const locale = {
|
|
|
718
709
|
"enter_search_text_26cb4459": {
|
|
719
710
|
"message": "Wpisz tekst do wyszukania"
|
|
720
711
|
},
|
|
721
|
-
"enter_text_8b35c65b": {
|
|
722
|
-
"message": "Wpisz tekst"
|
|
723
|
-
},
|
|
724
712
|
"epsilon_54bb8afa": {
|
|
725
713
|
"message": "Epsilon"
|
|
726
714
|
},
|
|
@@ -772,6 +760,9 @@ const locale = {
|
|
|
772
760
|
"extra_large_b6cdf1ff": {
|
|
773
761
|
"message": "Wyjątkowo duże"
|
|
774
762
|
},
|
|
763
|
+
"extra_large_width_x_height_px_915571fa": {
|
|
764
|
+
"message": "Bardzo duże ({ width } x { height }px)"
|
|
765
|
+
},
|
|
775
766
|
"extra_small_9ae33252": {
|
|
776
767
|
"message": "Bardzo małe"
|
|
777
768
|
},
|
|
@@ -787,15 +778,18 @@ const locale = {
|
|
|
787
778
|
"failed_getting_file_contents_e9ea19f4": {
|
|
788
779
|
"message": "Nie udało się pobrać zawartości pliku"
|
|
789
780
|
},
|
|
790
|
-
"failed_to_copy_response_d3def551": {
|
|
791
|
-
"message": "Nie udało się skopiować odpowiedzi"
|
|
792
|
-
},
|
|
793
781
|
"failed_to_retrieve_content_from_external_tool_5899c213": {
|
|
794
782
|
"message": "Nie udało się pobrać zawartości z zewnętrznego narzędzia"
|
|
795
783
|
},
|
|
796
784
|
"file_name_8fd421ff": {
|
|
797
785
|
"message": "Nazwa pliku"
|
|
798
786
|
},
|
|
787
|
+
"file_preview_21667a6e": {
|
|
788
|
+
"message": "Podgląd pliku"
|
|
789
|
+
},
|
|
790
|
+
"file_preview_for_filename_ab314195": {
|
|
791
|
+
"message": "Podgląd pliku { fileName }"
|
|
792
|
+
},
|
|
799
793
|
"file_storage_quota_exceeded_b7846cd1": {
|
|
800
794
|
"message": "Przekroczono przydział magazynowania plików"
|
|
801
795
|
},
|
|
@@ -976,12 +970,6 @@ const locale = {
|
|
|
976
970
|
"height_69b03e15": {
|
|
977
971
|
"message": "Wysokość"
|
|
978
972
|
},
|
|
979
|
-
"hello_please_describe_the_modifications_you_would__49b19837": {
|
|
980
|
-
"message": "Witaj. Opisz, co powinno zmienić się w Twoim wypracowaniu."
|
|
981
|
-
},
|
|
982
|
-
"hello_please_describe_the_modifications_you_would__600dbbf0": {
|
|
983
|
-
"message": "Witaj. Opisz, co powinno zmienić się w Twoich wyborach."
|
|
984
|
-
},
|
|
985
973
|
"hexagon_d8468e0d": {
|
|
986
974
|
"message": "Sześciobok"
|
|
987
975
|
},
|
|
@@ -997,6 +985,9 @@ const locale = {
|
|
|
997
985
|
"home_351838cd": {
|
|
998
986
|
"message": "Strona główna"
|
|
999
987
|
},
|
|
988
|
+
"how_to_request_and_edit_captions_a49a9c6b": {
|
|
989
|
+
"message": "Jak poprosić o napisy i je edytować?"
|
|
990
|
+
},
|
|
1000
991
|
"html_code_editor_fd967a44": {
|
|
1001
992
|
"message": "edytor kodu html"
|
|
1002
993
|
},
|
|
@@ -1009,9 +1000,6 @@ const locale = {
|
|
|
1009
1000
|
"i_hold_the_copyright_71ee91b1": {
|
|
1010
1001
|
"message": "Posiadam prawa autorskie"
|
|
1011
1002
|
},
|
|
1012
|
-
"i_m_sorry_but_i_cannot_find_the_ai_s_answer_67569d19": {
|
|
1013
|
-
"message": "Przepraszam, nie mogę znaleźć odpowiedzi AI"
|
|
1014
|
-
},
|
|
1015
1003
|
"icon_215a1dc6": {
|
|
1016
1004
|
"message": "Ikona"
|
|
1017
1005
|
},
|
|
@@ -1183,6 +1171,9 @@ const locale = {
|
|
|
1183
1171
|
"large_text_e7ba08cd": {
|
|
1184
1172
|
"message": "Duży tekst"
|
|
1185
1173
|
},
|
|
1174
|
+
"large_width_x_height_px_c61c2fd": {
|
|
1175
|
+
"message": "Duże ({ width } x { height }px)"
|
|
1176
|
+
},
|
|
1186
1177
|
"learn_ad3b3505": {
|
|
1187
1178
|
"message": "Nauka"
|
|
1188
1179
|
},
|
|
@@ -1327,6 +1318,9 @@ const locale = {
|
|
|
1327
1318
|
"loading_preview_9f077aa1": {
|
|
1328
1319
|
"message": "Wczytywanie podglądu"
|
|
1329
1320
|
},
|
|
1321
|
+
"lock_speed_at_1x_57d4f815": {
|
|
1322
|
+
"message": "Zablokuj prędkość na 1x"
|
|
1323
|
+
},
|
|
1330
1324
|
"locked_762f138b": {
|
|
1331
1325
|
"message": "Zablokowany"
|
|
1332
1326
|
},
|
|
@@ -1360,12 +1354,18 @@ const locale = {
|
|
|
1360
1354
|
"media_file_is_processing_please_try_again_later_58a6d49": {
|
|
1361
1355
|
"message": "Trwa przetwarzanie pliku multimediów. Spróbuj ponownie później."
|
|
1362
1356
|
},
|
|
1357
|
+
"media_options_saved_560c4ec8": {
|
|
1358
|
+
"message": "Zapisano opcje multimediów."
|
|
1359
|
+
},
|
|
1363
1360
|
"media_title_2112243b": {
|
|
1364
1361
|
"message": "Tytuł multimediów"
|
|
1365
1362
|
},
|
|
1366
1363
|
"medium_5a8e9ead": {
|
|
1367
1364
|
"message": "Średni"
|
|
1368
1365
|
},
|
|
1366
|
+
"medium_width_x_height_px_b076f6b6": {
|
|
1367
|
+
"message": "Średnie ({ width } x { height }px)"
|
|
1368
|
+
},
|
|
1369
1369
|
"merge_links_2478df96": {
|
|
1370
1370
|
"message": "Scal łącza"
|
|
1371
1371
|
},
|
|
@@ -1396,9 +1396,6 @@ const locale = {
|
|
|
1396
1396
|
"miscellaneous_e9818229": {
|
|
1397
1397
|
"message": "Różne"
|
|
1398
1398
|
},
|
|
1399
|
-
"modify_6b0b13e3": {
|
|
1400
|
-
"message": "Zmień"
|
|
1401
|
-
},
|
|
1402
1399
|
"module_90d9fd32": {
|
|
1403
1400
|
"message": "Moduł"
|
|
1404
1401
|
},
|
|
@@ -1702,15 +1699,15 @@ const locale = {
|
|
|
1702
1699
|
"play_media_comment_by_name_from_createdat_c230123d": {
|
|
1703
1700
|
"message": "Odtwórz komentarz multimedialny { name } z { createdAt }."
|
|
1704
1701
|
},
|
|
1702
|
+
"player_layout_14e09a29": {
|
|
1703
|
+
"message": "Układ odtwarzacza"
|
|
1704
|
+
},
|
|
1705
1705
|
"please_allow_canvas_to_access_your_microphone_and__dc2c3079": {
|
|
1706
1706
|
"message": "Zezwól Canvas na łączenie się z kamerą sieciową i mikrofonem."
|
|
1707
1707
|
},
|
|
1708
1708
|
"please_choose_a_file_c2449cc": {
|
|
1709
1709
|
"message": "Wybierz plik"
|
|
1710
1710
|
},
|
|
1711
|
-
"please_decribe_what_you_would_like_to_compose_27a51be5": {
|
|
1712
|
-
"message": "Opisz, jakie chcesz stworzyć wypracowanie."
|
|
1713
|
-
},
|
|
1714
1711
|
"please_enter_a_file_name_f159edc1": {
|
|
1715
1712
|
"message": "Wpisz nazwę pliku"
|
|
1716
1713
|
},
|
|
@@ -1846,9 +1843,6 @@ const locale = {
|
|
|
1846
1843
|
"remove_link_d1f2f4d0": {
|
|
1847
1844
|
"message": "Usuń łącze"
|
|
1848
1845
|
},
|
|
1849
|
-
"remove_studio_media_f913e502": {
|
|
1850
|
-
"message": "Usuń multimedia Studio"
|
|
1851
|
-
},
|
|
1852
1846
|
"replace_all_d3d68b3": {
|
|
1853
1847
|
"message": "Zamień wszystko"
|
|
1854
1848
|
},
|
|
@@ -1876,18 +1870,12 @@ const locale = {
|
|
|
1876
1870
|
"resize_ec83d538": {
|
|
1877
1871
|
"message": "Zmień rozmiar"
|
|
1878
1872
|
},
|
|
1879
|
-
"response_copied_to_clipboard_130d66cd": {
|
|
1880
|
-
"message": "Skopiowano odpowiedź do schowka."
|
|
1881
|
-
},
|
|
1882
1873
|
"restore_auto_save_deccd84b": {
|
|
1883
1874
|
"message": "Przywrócić automatycznie zapisaną zawartość?"
|
|
1884
1875
|
},
|
|
1885
1876
|
"result_index_of_max_7db5ad8b": {
|
|
1886
1877
|
"message": "Wynik { index } z { max }."
|
|
1887
1878
|
},
|
|
1888
|
-
"retry_ebd5f8ba": {
|
|
1889
|
-
"message": "Ponów próbę"
|
|
1890
|
-
},
|
|
1891
1879
|
"reverse_turnstile_does_not_yield_7558be06": {
|
|
1892
1880
|
"message": "Kołowrót zwrotny (nie spełnia)"
|
|
1893
1881
|
},
|
|
@@ -2038,23 +2026,17 @@ const locale = {
|
|
|
2038
2026
|
"shortcut_911d6255": {
|
|
2039
2027
|
"message": "Skrót"
|
|
2040
2028
|
},
|
|
2041
|
-
"show_all_967a90f0": {
|
|
2042
|
-
"message": "Pokaż wszystko"
|
|
2043
|
-
},
|
|
2044
|
-
"show_audio_options_b489926b": {
|
|
2045
|
-
"message": "Pokaż opcje audio"
|
|
2046
|
-
},
|
|
2047
2029
|
"show_image_options_1e2ecc6b": {
|
|
2048
2030
|
"message": "Pokaż opcje obrazów"
|
|
2049
2031
|
},
|
|
2050
2032
|
"show_link_options_545338fd": {
|
|
2051
2033
|
"message": "Pokaż opcje łącza"
|
|
2052
2034
|
},
|
|
2053
|
-
"
|
|
2054
|
-
"message": "Pokaż
|
|
2035
|
+
"show_rolling_transcript_c1481744": {
|
|
2036
|
+
"message": "Pokaż przewijaną transkrypcję"
|
|
2055
2037
|
},
|
|
2056
|
-
"
|
|
2057
|
-
"message": "Pokaż
|
|
2038
|
+
"show_rolling_transcript_d353aca4": {
|
|
2039
|
+
"message": "Pokaż przewijaną transkrypcję"
|
|
2058
2040
|
},
|
|
2059
2041
|
"sighted_users_browse_web_pages_quickly_looking_for_1d4db0c1": {
|
|
2060
2042
|
"message": "Użytkownicy z dobrym wzrokiem szybciej przeglądają strony internetowe, odszukując duże lub zapisane pogrubioną czcionką nagłówki. Użytkownicy czytników ekranu polegają na nagłówkach dla zrozumienia kontekstu. Nagłówki muszą wykorzystywać odpowiednią strukturę."
|
|
@@ -2083,6 +2065,9 @@ const locale = {
|
|
|
2083
2065
|
"small_b070434a": {
|
|
2084
2066
|
"message": "Mały"
|
|
2085
2067
|
},
|
|
2068
|
+
"small_width_x_height_px_359acd38": {
|
|
2069
|
+
"message": "Małe ({ width } x { height }px)"
|
|
2070
|
+
},
|
|
2086
2071
|
"solid_circle_9f061dfc": {
|
|
2087
2072
|
"message": "Pełny okrąg"
|
|
2088
2073
|
},
|
|
@@ -2344,6 +2329,9 @@ const locale = {
|
|
|
2344
2329
|
"timebar_a4d18443": {
|
|
2345
2330
|
"message": "Oś czasu"
|
|
2346
2331
|
},
|
|
2332
|
+
"title_can_t_be_blank_eb4021d7": {
|
|
2333
|
+
"message": "Tytuł nie może być pusty"
|
|
2334
|
+
},
|
|
2347
2335
|
"title_ee03d132": {
|
|
2348
2336
|
"message": "Tytuł"
|
|
2349
2337
|
},
|
|
@@ -2365,6 +2353,9 @@ const locale = {
|
|
|
2365
2353
|
"top_66e0adb6": {
|
|
2366
2354
|
"message": "Góra"
|
|
2367
2355
|
},
|
|
2356
|
+
"transcript_panel_is_available_at_widths_above_720p_1cf94c0d": {
|
|
2357
|
+
"message": "Panel transkrypcji jest dostępne dla szerokości powyżej 720px."
|
|
2358
|
+
},
|
|
2368
2359
|
"tray_839df38a": {
|
|
2369
2360
|
"message": "Zasobnik"
|
|
2370
2361
|
},
|
|
@@ -2398,6 +2389,9 @@ const locale = {
|
|
|
2398
2389
|
"unpublished_dfd8801": {
|
|
2399
2390
|
"message": "nieopublikowane"
|
|
2400
2391
|
},
|
|
2392
|
+
"unsaved_changes_will_be_lost_f977252a": {
|
|
2393
|
+
"message": "Niezapisane zmiany zostaną utracone."
|
|
2394
|
+
},
|
|
2401
2395
|
"untitled_16aa4f2b": {
|
|
2402
2396
|
"message": "Bez tytułu"
|
|
2403
2397
|
},
|
|
@@ -2521,9 +2515,6 @@ const locale = {
|
|
|
2521
2515
|
"used_by_screen_readers_to_describe_the_content_of__b1e76d9e": {
|
|
2522
2516
|
"message": "Używane przez czytniki ekranu do opisania zawartości obrazu"
|
|
2523
2517
|
},
|
|
2524
|
-
"used_by_screen_readers_to_describe_the_video_37ebad25": {
|
|
2525
|
-
"message": "Używane przez czytniki ekranu do opisania zawartości wideo"
|
|
2526
|
-
},
|
|
2527
2518
|
"user_documents_c206e61f": {
|
|
2528
2519
|
"message": "Dokumenty użytkownika"
|
|
2529
2520
|
},
|
|
@@ -2581,8 +2572,8 @@ const locale = {
|
|
|
2581
2572
|
"view_word_and_character_counts_a743dd0c": {
|
|
2582
2573
|
"message": "Wyświetl liczbę słów i znaków"
|
|
2583
2574
|
},
|
|
2584
|
-
"
|
|
2585
|
-
"message": "
|
|
2575
|
+
"viewer_restrictions_e14274c9": {
|
|
2576
|
+
"message": "Ograniczenia dla wyświetlających"
|
|
2586
2577
|
},
|
|
2587
2578
|
"we_couldn_t_detect_a_working_microphone_connected__ceb71c40": {
|
|
2588
2579
|
"message": "Nie udało się wykryć działającego mikrofonu podłączonego do urządzenia."
|
|
@@ -2602,9 +2593,6 @@ const locale = {
|
|
|
2602
2593
|
"webpages_should_only_have_a_single_h1_which_is_aut_dc99189e": {
|
|
2603
2594
|
"message": "Strony internetowe powinny mieć tylko jeden nagłówek H1, który jest automatycznie używany przez tytuł strony. Pierwszym nagłówkiem zawartości powinien być H2."
|
|
2604
2595
|
},
|
|
2605
|
-
"what_would_you_like_to_do_6dc0d541": {
|
|
2606
|
-
"message": "Co chcesz robić?"
|
|
2607
|
-
},
|
|
2608
2596
|
"when_markup_is_used_that_visually_formats_items_as_f941fc1b": {
|
|
2609
2597
|
"message": "Gdy używane jest oznaczenie, które wizualnie formatuje elementy jako listę, ale nie wskazuje na relacje w liście, użytkownicy mogą mieć problem z nawigowaniem po informacjach."
|
|
2610
2598
|
},
|
|
@@ -2635,9 +2623,6 @@ const locale = {
|
|
|
2635
2623
|
"wreath_product_200b38ef": {
|
|
2636
2624
|
"message": "Produkt splotowy"
|
|
2637
2625
|
},
|
|
2638
|
-
"writing_assistant_a30ac16a": {
|
|
2639
|
-
"message": "Asystent pisania"
|
|
2640
|
-
},
|
|
2641
2626
|
"xi_149681d0": {
|
|
2642
2627
|
"message": "Ksi"
|
|
2643
2628
|
},
|