From 28589c5e466d78a411262a77be25daf1d0113947 Mon Sep 17 00:00:00 2001 From: Arnei Date: Thu, 12 Dec 2024 12:33:34 +0100 Subject: [PATCH 01/10] Update @reduxjs/toolkit to 2.5.0 Supersedes #1002. Could not figure out why the type `AsyncThunkConfig` is not exported anymore, nor could I find an equivalent type, so I've just removed it for now. --- package-lock.json | 22 +++++++++---------- package.json | 2 +- .../DetailsExtendedMetadataTab.tsx | 3 +-- .../ModalTabsAndPages/DetailsMetadataTab.tsx | 3 +-- src/components/recordings/Recordings.tsx | 3 +-- src/components/shared/TableFilterProfiles.tsx | 3 +-- src/components/shared/TableFilters.tsx | 3 +-- .../modals/ResourceDetailsAccessPolicyTab.tsx | 7 +++--- 8 files changed, 20 insertions(+), 26 deletions(-) diff --git a/package-lock.json b/package-lock.json index be31794a2a..9f5d075643 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,7 +11,7 @@ "@hello-pangea/dnd": "^17.0.0", "@mui/material": "^6.1.6", "@mui/x-date-pickers": "^7.18.0", - "@reduxjs/toolkit": "^2.2.6", + "@reduxjs/toolkit": "^2.5.0", "@types/dompurify": "^3.0.5", "@types/react-router-dom": "^5.3.3", "array-move": "^4.0.0", @@ -3155,9 +3155,9 @@ } }, "node_modules/@reduxjs/toolkit": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.2.6.tgz", - "integrity": "sha512-kH0r495c5z1t0g796eDQAkYbEQ3a1OLYN9o8jQQVZyKyw367pfRGS+qZLkHYvFHiUUdafpoSlQ2QYObIApjPWA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.5.0.tgz", + "integrity": "sha512-awNe2oTodsZ6LmRqmkFhtb/KH03hUhxOamEQy411m3Njj3BbFvoBovxo4Q1cBWnV1ErprVj9MlF0UPXkng0eyg==", "dependencies": { "immer": "^10.0.3", "redux": "^5.0.1", @@ -3165,7 +3165,7 @@ "reselect": "^5.1.0" }, "peerDependencies": { - "react": "^16.9.0 || ^17.0.0 || ^18", + "react": "^16.9.0 || ^17.0.0 || ^18 || ^19", "react-redux": "^7.2.1 || ^8.1.3 || ^9.0.0" }, "peerDependenciesMeta": { @@ -5608,9 +5608,9 @@ } }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "dependencies": { "path-key": "^3.1.0", @@ -8565,9 +8565,9 @@ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", "funding": [ { "type": "github", diff --git a/package.json b/package.json index 6208ec3049..47b7c9ca61 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "@hello-pangea/dnd": "^17.0.0", "@mui/material": "^6.1.6", "@mui/x-date-pickers": "^7.18.0", - "@reduxjs/toolkit": "^2.2.6", + "@reduxjs/toolkit": "^2.5.0", "@types/dompurify": "^3.0.5", "@types/react-router-dom": "^5.3.3", "array-move": "^4.0.0", diff --git a/src/components/events/partials/ModalTabsAndPages/DetailsExtendedMetadataTab.tsx b/src/components/events/partials/ModalTabsAndPages/DetailsExtendedMetadataTab.tsx index 5a54353fde..3854a366a6 100644 --- a/src/components/events/partials/ModalTabsAndPages/DetailsExtendedMetadataTab.tsx +++ b/src/components/events/partials/ModalTabsAndPages/DetailsExtendedMetadataTab.tsx @@ -16,7 +16,6 @@ import { getMetadataCollectionFieldName } from "../../../../utils/resourceUtils" import { useAppDispatch, useAppSelector } from "../../../../store"; import { MetadataCatalog } from "../../../../slices/eventSlice"; import { AsyncThunk } from "@reduxjs/toolkit"; -import { AsyncThunkConfig } from "@reduxjs/toolkit/dist/createAsyncThunk"; /** * This component renders metadata details of a certain event or series @@ -34,7 +33,7 @@ const DetailsExtendedMetadataTab = ({ id: string; values: { [key: string]: any; }; catalog: MetadataCatalog; - }, AsyncThunkConfig> //(id: string, values: { [key: string]: any }, catalog: MetadataCatalog) => void, + }, any> //(id: string, values: { [key: string]: any }, catalog: MetadataCatalog) => void, }) => { const { t } = useTranslation(); const dispatch = useAppDispatch(); diff --git a/src/components/events/partials/ModalTabsAndPages/DetailsMetadataTab.tsx b/src/components/events/partials/ModalTabsAndPages/DetailsMetadataTab.tsx index 179f2abd10..09007b0bde 100644 --- a/src/components/events/partials/ModalTabsAndPages/DetailsMetadataTab.tsx +++ b/src/components/events/partials/ModalTabsAndPages/DetailsMetadataTab.tsx @@ -14,7 +14,6 @@ import { getMetadataCollectionFieldName } from "../../../../utils/resourceUtils" import { useAppDispatch, useAppSelector } from "../../../../store"; import { MetadataCatalog } from "../../../../slices/eventSlice"; import { AsyncThunk } from "@reduxjs/toolkit"; -import { AsyncThunkConfig } from "@reduxjs/toolkit/dist/createAsyncThunk"; /** * This component renders metadata details of a certain event or series @@ -27,7 +26,7 @@ const DetailsMetadataTab = ({ editAccessRole, }: { metadataFields: MetadataCatalog, - updateResource: AsyncThunk + updateResource: AsyncThunk resourceId: string, header: string, editAccessRole: string, diff --git a/src/components/recordings/Recordings.tsx b/src/components/recordings/Recordings.tsx index b030f0dce9..fa8c11cb27 100644 --- a/src/components/recordings/Recordings.tsx +++ b/src/components/recordings/Recordings.tsx @@ -20,7 +20,6 @@ import { getCurrentFilterResource } from "../../selectors/tableFilterSelectors"; import { useAppDispatch, useAppSelector } from "../../store"; import { fetchRecordings } from "../../slices/recordingSlice"; import { AsyncThunk } from "@reduxjs/toolkit"; -import { AsyncThunkConfig } from "@reduxjs/toolkit/dist/createAsyncThunk"; /** * This component renders the table view of recordings @@ -86,7 +85,7 @@ const Recordings = () => {
{/* Include filters component */} } + loadResource={fetchRecordings as AsyncThunk} loadResourceIntoTable={loadRecordingsIntoTable} resource={"recordings"} /> diff --git a/src/components/shared/TableFilterProfiles.tsx b/src/components/shared/TableFilterProfiles.tsx index 3c775d502e..b70340449c 100644 --- a/src/components/shared/TableFilterProfiles.tsx +++ b/src/components/shared/TableFilterProfiles.tsx @@ -17,7 +17,6 @@ import { useHotkeys } from "react-hotkeys-hook"; import { availableHotkeys } from "../../configs/hotkeysConfig"; import { Tooltip } from "./Tooltip"; import { AsyncThunk } from "@reduxjs/toolkit"; -import { AsyncThunkConfig } from "@reduxjs/toolkit/dist/createAsyncThunk"; /** * This component renders the table filter profiles in the upper right corner when clicked on settings icon of the @@ -32,7 +31,7 @@ const TableFiltersProfiles = ({ }: { showFilterSettings: boolean, setFilterSettings: (_: boolean) => void, - loadResource: AsyncThunk, + loadResource: AsyncThunk, loadResourceIntoTable: () => AppThunk, resource: string, }) => { diff --git a/src/components/shared/TableFilters.tsx b/src/components/shared/TableFilters.tsx index 449a395d55..130d3793ab 100644 --- a/src/components/shared/TableFilters.tsx +++ b/src/components/shared/TableFilters.tsx @@ -29,7 +29,6 @@ import { renderValidDate } from "../../utils/dateUtils"; import { Tooltip } from "./Tooltip"; import DropDown from "./DropDown"; import { AsyncThunk } from "@reduxjs/toolkit"; -import { AsyncThunkConfig } from "@reduxjs/toolkit/dist/createAsyncThunk"; /** * This component renders the table filters in the upper right corner of the table @@ -39,7 +38,7 @@ const TableFilters = ({ loadResourceIntoTable, resource, }: { - loadResource: AsyncThunk, + loadResource: AsyncThunk, loadResourceIntoTable: () => AppThunk, resource: string, }) => { diff --git a/src/components/shared/modals/ResourceDetailsAccessPolicyTab.tsx b/src/components/shared/modals/ResourceDetailsAccessPolicyTab.tsx index 3583664285..5a5f308623 100644 --- a/src/components/shared/modals/ResourceDetailsAccessPolicyTab.tsx +++ b/src/components/shared/modals/ResourceDetailsAccessPolicyTab.tsx @@ -25,7 +25,6 @@ import { removeNotificationWizardForm, addNotification } from "../../../slices/n import { useTranslation } from "react-i18next"; import { TransformedAcl } from "../../../slices/aclDetailsSlice"; import { AsyncThunk, unwrapResult } from "@reduxjs/toolkit"; -import { AsyncThunkConfig } from "@reduxjs/toolkit/dist/createAsyncThunk"; import { SaveEditFooter } from "../SaveEditFooter"; @@ -48,9 +47,9 @@ const ResourceDetailsAccessPolicyTab = ({ resourceId: string, header: string, policies: TransformedAcl[], - fetchHasActiveTransactions?: AsyncThunk - fetchAccessPolicies: AsyncThunk, - saveNewAccessPolicies: AsyncThunk + fetchHasActiveTransactions?: AsyncThunk + fetchAccessPolicies: AsyncThunk, + saveNewAccessPolicies: AsyncThunk descriptionText: string, buttonText: string, editAccessRole: string, From fba544d835c589f48a8d47f6241b8511825bc5b8 Mon Sep 17 00:00:00 2001 From: Crowdin Bot Date: Mon, 16 Dec 2024 05:23:46 +0000 Subject: [PATCH 02/10] Automatically update translation keys --- .../org/opencastproject/adminui/languages/lang-am_ET.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-cs_CZ.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-da_DK.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-de_DE.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-el_GR.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-en_GB.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-es_ES.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-fi_FI.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-fil_PH.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-fr_FR.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-gl_ES.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-he_IL.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-hi_IN.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-id_ID.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-it_IT.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-ja_JP.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-kn_IN.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-ml_IN.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-nl_NL.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-no_NO.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-pl_PL.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-pt_BR.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-pt_PT.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-ru_RU.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-si_LK.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-sl_SI.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-sv_SE.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-ta_IN.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-te_IN.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-tl_PH.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-tr_TR.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-zh_CN.json | 7 ++++++- .../org/opencastproject/adminui/languages/lang-zh_TW.json | 7 ++++++- 33 files changed, 198 insertions(+), 33 deletions(-) diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-am_ET.json b/src/i18n/org/opencastproject/adminui/languages/lang-am_ET.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-am_ET.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-am_ET.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-cs_CZ.json b/src/i18n/org/opencastproject/adminui/languages/lang-cs_CZ.json index 03e08ffc20..123fec88eb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-cs_CZ.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-cs_CZ.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded…", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-da_DK.json b/src/i18n/org/opencastproject/adminui/languages/lang-da_DK.json index 7f44916da6..23889349cf 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-da_DK.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-da_DK.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-de_DE.json b/src/i18n/org/opencastproject/adminui/languages/lang-de_DE.json index 5ab42a02d9..f9a94ecb24 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-de_DE.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-de_DE.json @@ -117,7 +117,8 @@ "GROUP": "Die folgende Gruppe wird gelöscht", "USER": "Der folgende Benutzer wird gelöscht", "THEME": "Das folgende Branding wird gelöscht", - "LOCATION": "Folgender Standort wird entfernt" + "LOCATION": "Folgender Standort wird entfernt", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "Die Serie wurde angelegt", "SERIES_NOT_SAVED": "Die Serie konnte nicht gespeichert werden", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "Das Video wurde angelegt", "EVENTS_UPLOAD_STARTED": "Das Video wird hochgeladen… {{ progress }}%", "EVENTS_NOT_CREATED": "Das Video konnte nicht angelegt werden", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Startseite", "SELECTED_PAGE": "Serie wird in folgendem Pfad eingebunden", "NO_PAGE_SELECTED": "Keine Seite ausgewählt. Serie wird nicht im Videoportal eingebunden.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Pfad", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Seiten im Videoportal, die diese Serie einbinden", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-el_GR.json b/src/i18n/org/opencastproject/adminui/languages/lang-el_GR.json index 18f64082a9..8448b21c1a 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-el_GR.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-el_GR.json @@ -117,7 +117,8 @@ "GROUP": "Η παρακάτω ομάδα θα διαγραφεί", "USER": "Ο παρακάτω χρήστης θα διαγραφεί", "THEME": "Το ακόλουθο θέμα θα διαγραφεί", - "LOCATION": "Η ακόλουθη τοποθεσία θα διαγραφεί" + "LOCATION": "Η ακόλουθη τοποθεσία θα διαγραφεί", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Όνομα" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "Η σειρά έχει δημιουργηθεί", "SERIES_NOT_SAVED": "Δεν ήταν δυνατή η αποθήκευση της σειράς", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "Η εκδήλωση έχει δημιουργηθεί", "EVENTS_UPLOAD_STARTED": "Μια εκδήλωση ανέβηκε…", "EVENTS_NOT_CREATED": "Δεν ήταν δυνατή η δημιουργία της εκδήλωσης", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-en_GB.json b/src/i18n/org/opencastproject/adminui/languages/lang-en_GB.json index f102392e6e..7a71919106 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-en_GB.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-en_GB.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-es_ES.json b/src/i18n/org/opencastproject/adminui/languages/lang-es_ES.json index 826fce54c2..523cdc7be9 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-es_ES.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-es_ES.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-fi_FI.json b/src/i18n/org/opencastproject/adminui/languages/lang-fi_FI.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-fi_FI.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-fi_FI.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-fil_PH.json b/src/i18n/org/opencastproject/adminui/languages/lang-fil_PH.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-fil_PH.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-fil_PH.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-fr_FR.json b/src/i18n/org/opencastproject/adminui/languages/lang-fr_FR.json index 389e15219a..729b7ee714 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-fr_FR.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-fr_FR.json @@ -117,7 +117,8 @@ "GROUP": "Le groupe suivant sera supprimé", "USER": "L’utilisateur suivant sera supprimée", "THEME": "Le thème suivant sera supprimé", - "LOCATION": "L’emplacement suivant sera supprimé" + "LOCATION": "L’emplacement suivant sera supprimé", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Nom" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "La série a été créée", "SERIES_NOT_SAVED": "La série n'a pas pu être enregistrée", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "L'événement a été créé", "EVENTS_UPLOAD_STARTED": "L’événement est en cours de téléchargement...", "EVENTS_NOT_CREATED": "L'événement n'a pas pu être créé", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-gl_ES.json b/src/i18n/org/opencastproject/adminui/languages/lang-gl_ES.json index 8dc7e8df39..472e93f0f6 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-gl_ES.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-gl_ES.json @@ -117,7 +117,8 @@ "GROUP": "Vaise borrar o seguinte grupo", "USER": "Vaise borrar o seguinte usuario", "THEME": "Vaise borrar o seguinte estilo", - "LOCATION": "Vaise borrar a seguinte localización" + "LOCATION": "Vaise borrar a seguinte localización", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Nome" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "Serie creada", "SERIES_NOT_SAVED": "Non se puido gardar a serie", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "Evento creado", "EVENTS_UPLOAD_STARTED": "Cargando o evento…", "EVENTS_NOT_CREATED": "Non se puido crear o evento", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-he_IL.json b/src/i18n/org/opencastproject/adminui/languages/lang-he_IL.json index e9f256c277..3a56989f11 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-he_IL.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-he_IL.json @@ -117,7 +117,8 @@ "GROUP": "הקבוצה הבאה תימחק", "USER": "המשתמש הבא יימחקו", "THEME": "רשימת המשתמשים בחסומים הבאה תמחק", - "LOCATION": "המיקום הבא יימחק" + "LOCATION": "המיקום הבא יימחק", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "שם" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "הסדרה נוצרה", "SERIES_NOT_SAVED": "לא ניתן לשמור את הסידרה", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "הארוע נוצר", "EVENTS_UPLOAD_STARTED": "האירוע מועלה לשרת…", "EVENTS_NOT_CREATED": "לא ניתן היה ליצור את האירוע", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-hi_IN.json b/src/i18n/org/opencastproject/adminui/languages/lang-hi_IN.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-hi_IN.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-hi_IN.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-id_ID.json b/src/i18n/org/opencastproject/adminui/languages/lang-id_ID.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-id_ID.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-id_ID.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-it_IT.json b/src/i18n/org/opencastproject/adminui/languages/lang-it_IT.json index a9fa0dea2d..195178bd1d 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-it_IT.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-it_IT.json @@ -117,7 +117,8 @@ "GROUP": "Il gruppo seguente sarà eliminato", "USER": "L'utente seguente sarà eliminato", "THEME": "Il tema seguente sarà eliminato", - "LOCATION": "La seguente posizione non sarà eliminata" + "LOCATION": "La seguente posizione non sarà eliminata", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Nome" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "La serie è stata creata", "SERIES_NOT_SAVED": "La serie non può essere salvata", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "L'evento è stato creato", "EVENTS_UPLOAD_STARTED": "L'evento è in fase di aggiornamento…", "EVENTS_NOT_CREATED": "L'evento non può essere creato", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-ja_JP.json b/src/i18n/org/opencastproject/adminui/languages/lang-ja_JP.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-ja_JP.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-ja_JP.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-kn_IN.json b/src/i18n/org/opencastproject/adminui/languages/lang-kn_IN.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-kn_IN.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-kn_IN.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-ml_IN.json b/src/i18n/org/opencastproject/adminui/languages/lang-ml_IN.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-ml_IN.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-ml_IN.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-nl_NL.json b/src/i18n/org/opencastproject/adminui/languages/lang-nl_NL.json index 9c42183ec1..a49c0deb03 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-nl_NL.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-nl_NL.json @@ -117,7 +117,8 @@ "GROUP": "Den følgende gruppe slettes", "USER": "Den følgende bruger slettes", "THEME": "Det følgende tema slettes", - "LOCATION": "Den følgende placering slettes" + "LOCATION": "Den følgende placering slettes", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Navn" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "Serien er blevet oprettet", "SERIES_NOT_SAVED": "Serien kunne ikke gemmes", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "Begivenheden er blevet oprettet", "EVENTS_UPLOAD_STARTED": "Begivenheden uploades…", "EVENTS_NOT_CREATED": "Begivenheden kunne ikke oprettes", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-no_NO.json b/src/i18n/org/opencastproject/adminui/languages/lang-no_NO.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-no_NO.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-no_NO.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-pl_PL.json b/src/i18n/org/opencastproject/adminui/languages/lang-pl_PL.json index e7339ecea1..4eb7b4210d 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-pl_PL.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-pl_PL.json @@ -117,7 +117,8 @@ "GROUP": "Następująca grupa zostanie usunięta", "USER": "Następujący użytkownik zostanie usunięty", "THEME": "Następujący motyw zostanie usunięty", - "LOCATION": "Następująca lokalizacja zostanie usunięta" + "LOCATION": "Następująca lokalizacja zostanie usunięta", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Imię" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "Seria została utworzona", "SERIES_NOT_SAVED": "Nie można zapisać serii", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "Wydarzenie zostało utworzone", "EVENTS_UPLOAD_STARTED": "Ładowanie wydarzenia…", "EVENTS_NOT_CREATED": "Nie można było utworzyć wydarzenia", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-pt_BR.json b/src/i18n/org/opencastproject/adminui/languages/lang-pt_BR.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-pt_BR.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-pt_BR.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-pt_PT.json b/src/i18n/org/opencastproject/adminui/languages/lang-pt_PT.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-pt_PT.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-pt_PT.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-ru_RU.json b/src/i18n/org/opencastproject/adminui/languages/lang-ru_RU.json index c935d83426..8d1796739f 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-ru_RU.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-ru_RU.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded…", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-si_LK.json b/src/i18n/org/opencastproject/adminui/languages/lang-si_LK.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-si_LK.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-si_LK.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-sl_SI.json b/src/i18n/org/opencastproject/adminui/languages/lang-sl_SI.json index 573eb9ca00..2a56c63e72 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-sl_SI.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-sl_SI.json @@ -117,7 +117,8 @@ "GROUP": "Naslednja skupina bo izbrisana", "USER": "Naslednji uporabnik bo izbrisan", "THEME": "Naslednja tema bo izbrisana", - "LOCATION": "Naslednja lokacija bo izbrisana" + "LOCATION": "Naslednja lokacija bo izbrisana", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Ime" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "Serija je ustvarjena", "SERIES_NOT_SAVED": "Serije ni bilo mogoče shraniti", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "Dogodek je ustvarjen", "EVENTS_UPLOAD_STARTED": "Dogodek se nalaga ...", "EVENTS_NOT_CREATED": "Dogodka ni bilo mogoče ustvariti", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-sv_SE.json b/src/i18n/org/opencastproject/adminui/languages/lang-sv_SE.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-sv_SE.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-sv_SE.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-ta_IN.json b/src/i18n/org/opencastproject/adminui/languages/lang-ta_IN.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-ta_IN.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-ta_IN.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-te_IN.json b/src/i18n/org/opencastproject/adminui/languages/lang-te_IN.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-te_IN.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-te_IN.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-tl_PH.json b/src/i18n/org/opencastproject/adminui/languages/lang-tl_PH.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-tl_PH.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-tl_PH.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-tr_TR.json b/src/i18n/org/opencastproject/adminui/languages/lang-tr_TR.json index 8256d69554..23627d1e10 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-tr_TR.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-tr_TR.json @@ -117,7 +117,8 @@ "GROUP": "Aşağıdaki grup silinecek", "USER": "Aşağıdaki kullanıcı silinecek", "THEME": "Aşağıdaki tema silinecek", - "LOCATION": "Aşağıdaki konum silinecek" + "LOCATION": "Aşağıdaki konum silinecek", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "İsim" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "Dizi oluşturuldu", "SERIES_NOT_SAVED": "Dizi kaydedilemedi", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "Etkinlik oluşturuldu", "EVENTS_UPLOAD_STARTED": "Etkinlik yüklenmekte…", "EVENTS_NOT_CREATED": "Etkinlik oluşturulamadı", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-zh_CN.json b/src/i18n/org/opencastproject/adminui/languages/lang-zh_CN.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-zh_CN.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-zh_CN.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, diff --git a/src/i18n/org/opencastproject/adminui/languages/lang-zh_TW.json b/src/i18n/org/opencastproject/adminui/languages/lang-zh_TW.json index fb342bac30..ac3cea81bb 100644 --- a/src/i18n/org/opencastproject/adminui/languages/lang-zh_TW.json +++ b/src/i18n/org/opencastproject/adminui/languages/lang-zh_TW.json @@ -117,7 +117,8 @@ "GROUP": "The following group will be deleted", "USER": "The following user will be deleted", "THEME": "The following theme will be deleted", - "LOCATION": "The following location will be deleted" + "LOCATION": "The following location will be deleted", + "TOBIRA_PATH": "The series will be removed from the following path in Tobira:" }, "NAME": "Name" }, @@ -169,7 +170,9 @@ "SERIES_ADDED": "The series has been created", "SERIES_NOT_SAVED": "The series could not be saved", "SERIES_PATH_UPDATED": "The series path has been updated", + "SERIES_PATH_REMOVED": "The series path has been removed", "SERIES_PATH_NOT_UPDATED": "The series path could not be updated", + "SERIES_PATH_NOT_REMOVED": "The series path could not be removed", "EVENTS_CREATED": "The event has been created", "EVENTS_UPLOAD_STARTED": "The event is being uploaded… {{ progress }}%", "EVENTS_NOT_CREATED": "The event could not be created", @@ -1143,6 +1146,7 @@ "HOMEPAGE": "Homepage", "SELECTED_PAGE": "Series will be mounted under the following path", "NO_PAGE_SELECTED": "No page selected. Series will not be mounted in Tobira.", + "NO_PAGE_SELECTED_EDIT": "No page selected. Series path will not be changed.", "PATH": "Path", "DIRECT_LINK": "A direct link will be available.", "MOUNT_DISCLAIMER": "Series can only be mounted in empty pages" @@ -1231,6 +1235,7 @@ "PAGES": "Pages in Tobira that contain this series", "SHOW_PAGES": "Show all pages", "EDIT_PATH": "Edit path", + "REMOVE_PATH": "Remove path", "MOUNT_SERIES": "Mount series", "DESCRIPTION": "You may edit the path of pages containing this series if the page has no other content." }, From d40ba63cb4779d466d4ecdbd858e1e181515797c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 11:05:42 +0000 Subject: [PATCH 03/10] Bump yup from 1.4.0 to 1.6.1 Bumps [yup](https://github.com/jquense/yup) from 1.4.0 to 1.6.1. - [Release notes](https://github.com/jquense/yup/releases) - [Changelog](https://github.com/jquense/yup/blob/master/CHANGELOG.md) - [Commits](https://github.com/jquense/yup/compare/v1.4.0...v1.6.1) --- updated-dependencies: - dependency-name: yup dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index ec2266184d..590a5dd6b2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -44,7 +44,7 @@ "redux-thunk": "^3.1.0", "reselect": "^5.1.1", "styled-components": "^6.1.13", - "yup": "^1.4.0" + "yup": "^1.6.1" }, "devDependencies": { "@babel/plugin-proposal-private-property-in-object": "^7.21.11", @@ -10698,9 +10698,9 @@ } }, "node_modules/yup": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/yup/-/yup-1.4.0.tgz", - "integrity": "sha512-wPbgkJRCqIf+OHyiTBQoJiP5PFuAXaWiJK6AmYkzQAh5/c2K9hzSApBZG5wV9KoKSePF7sAxmNSvh/13YHkFDg==", + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/yup/-/yup-1.6.1.tgz", + "integrity": "sha512-JED8pB50qbA4FOkDol0bYF/p60qSEDQqBD0/qeIrUCG1KbPBIQ776fCUNb9ldbPcSTxA69g/47XTo4TqWiuXOA==", "dependencies": { "property-expr": "^2.0.5", "tiny-case": "^1.0.3", diff --git a/package.json b/package.json index b8a8d33149..1b64916592 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "redux-thunk": "^3.1.0", "reselect": "^5.1.1", "styled-components": "^6.1.13", - "yup": "^1.4.0" + "yup": "^1.6.1" }, "scripts": { "start": "vite", From 55631a57758ef7dba6163acc90b5300e33fce5b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 11:06:02 +0000 Subject: [PATCH 04/10] Bump react-redux from 9.1.2 to 9.2.0 Bumps [react-redux](https://github.com/reduxjs/react-redux) from 9.1.2 to 9.2.0. - [Release notes](https://github.com/reduxjs/react-redux/releases) - [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md) - [Commits](https://github.com/reduxjs/react-redux/compare/v9.1.2...v9.2.0) --- updated-dependencies: - dependency-name: react-redux dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 30 +++++++++++++++--------------- package.json | 2 +- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/package-lock.json b/package-lock.json index ec2266184d..1be0abcfcd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -36,7 +36,7 @@ "react-hotkeys-hook": "^4.6.1", "react-i18next": "^15.1.3", "react-icons": "^5.3.0", - "react-redux": "^9.1.2", + "react-redux": "^9.2.0", "react-router-dom": "^6.27.0", "react-select": "^5.8.0", "redux": "^5.0.1", @@ -3943,9 +3943,9 @@ "integrity": "sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==" }, "node_modules/@types/use-sync-external-store": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz", - "integrity": "sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==" + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz", + "integrity": "sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==" }, "node_modules/@types/uuid": { "version": "10.0.0", @@ -9067,16 +9067,16 @@ "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" }, "node_modules/react-redux": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-9.1.2.tgz", - "integrity": "sha512-0OA4dhM1W48l3uzmv6B7TXPCGmokUU4p1M44DGN2/D9a1FjVPukVjER1PcPX97jIg6aUeLq1XJo1IpfbgULn0w==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-9.2.0.tgz", + "integrity": "sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==", "dependencies": { - "@types/use-sync-external-store": "^0.0.3", - "use-sync-external-store": "^1.0.0" + "@types/use-sync-external-store": "^0.0.6", + "use-sync-external-store": "^1.4.0" }, "peerDependencies": { - "@types/react": "^18.2.25", - "react": "^18.0", + "@types/react": "^18.2.25 || ^19", + "react": "^18.0 || ^19", "redux": "^5.0.0" }, "peerDependenciesMeta": { @@ -10267,11 +10267,11 @@ } }, "node_modules/use-sync-external-store": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz", - "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.4.0.tgz", + "integrity": "sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==", "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "node_modules/uuid": { diff --git a/package.json b/package.json index b8a8d33149..720cdb5cee 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "react-hotkeys-hook": "^4.6.1", "react-i18next": "^15.1.3", "react-icons": "^5.3.0", - "react-redux": "^9.1.2", + "react-redux": "^9.2.0", "react-router-dom": "^6.27.0", "react-select": "^5.8.0", "redux": "^5.0.1", From 7a420150dc23f832bf93335af320662d21eb4f0c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 11:06:18 +0000 Subject: [PATCH 05/10] Bump @mui/material from 6.1.9 to 6.3.0 Bumps [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) from 6.1.9 to 6.3.0. - [Release notes](https://github.com/mui/material-ui/releases) - [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md) - [Commits](https://github.com/mui/material-ui/commits/v6.3.0/packages/mui-material) --- updated-dependencies: - dependency-name: "@mui/material" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 94 +++++++++++++++++++++-------------------------- package.json | 2 +- 2 files changed, 43 insertions(+), 53 deletions(-) diff --git a/package-lock.json b/package-lock.json index ec2266184d..67eabb505f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "0.1.0", "dependencies": { "@hello-pangea/dnd": "^17.0.0", - "@mui/material": "^6.1.9", + "@mui/material": "^6.3.0", "@mui/x-date-pickers": "^7.23.1", "@reduxjs/toolkit": "^2.2.6", "@types/dompurify": "^3.0.5", @@ -2696,32 +2696,30 @@ "peer": true }, "node_modules/@mui/core-downloads-tracker": { - "version": "6.1.9", - "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-6.1.9.tgz", - "integrity": "sha512-TWqj7b1w5cmSz4H/uf+y2AHxAH4ldPR7D2bz0XVyn60GCAo/zRbRPx7cF8gTs/i7CiYeHzV6dtat0VpMwOtolw==", - "license": "MIT", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-6.3.0.tgz", + "integrity": "sha512-/d8NwSuC3rMwCjswmGB3oXC4sdDuhIUJ8inVQAxGrADJhf0eq/kmy+foFKvpYhHl2siOZR+MLdFttw6/Bzqtqg==", "funding": { "type": "opencollective", "url": "https://opencollective.com/mui-org" } }, "node_modules/@mui/material": { - "version": "6.1.9", - "resolved": "https://registry.npmjs.org/@mui/material/-/material-6.1.9.tgz", - "integrity": "sha512-NwqIN0bdsgzSbZd5JFcC+2ez0XW/XNs8uiV2PDHrqQ4qf/FEasFJG1z6g8JbCN0YlTrHZekVb17X0Fv0qcYJfQ==", - "license": "MIT", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/@mui/material/-/material-6.3.0.tgz", + "integrity": "sha512-qhlTFyRMxfoVPxUtA5e8IvqxP0dWo2Ij7cvot7Orag+etUlZH+3UwD8gZGt+3irOoy7Ms3UNBflYjwEikUXtAQ==", "dependencies": { "@babel/runtime": "^7.26.0", - "@mui/core-downloads-tracker": "^6.1.9", - "@mui/system": "^6.1.9", - "@mui/types": "^7.2.19", - "@mui/utils": "^6.1.9", + "@mui/core-downloads-tracker": "^6.3.0", + "@mui/system": "^6.3.0", + "@mui/types": "^7.2.20", + "@mui/utils": "^6.3.0", "@popperjs/core": "^2.11.8", - "@types/react-transition-group": "^4.4.11", + "@types/react-transition-group": "^4.4.12", "clsx": "^2.1.1", "csstype": "^3.1.3", "prop-types": "^15.8.1", - "react-is": "^18.3.1", + "react-is": "^19.0.0", "react-transition-group": "^4.4.5" }, "engines": { @@ -2734,7 +2732,7 @@ "peerDependencies": { "@emotion/react": "^11.5.0", "@emotion/styled": "^11.3.0", - "@mui/material-pigment-css": "^6.1.9", + "@mui/material-pigment-css": "^6.3.0", "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", "react": "^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0" @@ -2755,13 +2753,12 @@ } }, "node_modules/@mui/private-theming": { - "version": "6.1.9", - "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-6.1.9.tgz", - "integrity": "sha512-7aum/O1RquBYhfwL/7egDyl9GqJgPM6hoJDFFBbhF6Sgv9yI9v4w3ArKUkuVvR0CtVj4NXRVMKEioh1bjUzvuA==", - "license": "MIT", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-6.3.0.tgz", + "integrity": "sha512-tdS8jvqMokltNTXg6ioRCCbVdDmZUJZa/T9VtTnX2Lwww3FTgCakst9tWLZSxm1fEE9Xp0m7onZJmgeUmWQYVw==", "dependencies": { "@babel/runtime": "^7.26.0", - "@mui/utils": "^6.1.9", + "@mui/utils": "^6.3.0", "prop-types": "^15.8.1" }, "engines": { @@ -2782,10 +2779,9 @@ } }, "node_modules/@mui/styled-engine": { - "version": "6.1.9", - "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-6.1.9.tgz", - "integrity": "sha512-xynSLlJRxHLzSfQaiDjkaTx8LiFb9ByVa7aOdwFnTxGWFMY1F+mkXwAUY4jDDE+MAxkWxlzzQE0wOohnsxhdQg==", - "license": "MIT", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-6.3.0.tgz", + "integrity": "sha512-iWA6eyiPkO07AlHxRUvI7dwVRSc+84zV54kLmjUms67GJeOWVuXlu8ZO+UhCnwJxHacghxnabsMEqet5PYQmHg==", "dependencies": { "@babel/runtime": "^7.26.0", "@emotion/cache": "^11.13.5", @@ -2816,16 +2812,15 @@ } }, "node_modules/@mui/system": { - "version": "6.1.9", - "resolved": "https://registry.npmjs.org/@mui/system/-/system-6.1.9.tgz", - "integrity": "sha512-8x+RucnNp21gfFYsklCaZf0COXbv3+v0lrVuXONxvPEkESi2rwLlOi8UPJfcz6LxZOAX3v3oQ7qw18vnpgueRg==", - "license": "MIT", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/@mui/system/-/system-6.3.0.tgz", + "integrity": "sha512-L+8hUHMNlfReKSqcnVslFrVhoNfz/jw7Fe9NfDE85R3KarvZ4O3MU9daF/lZeqEAvnYxEilkkTfDwQ7qCgJdFg==", "dependencies": { "@babel/runtime": "^7.26.0", - "@mui/private-theming": "^6.1.9", - "@mui/styled-engine": "^6.1.9", - "@mui/types": "^7.2.19", - "@mui/utils": "^6.1.9", + "@mui/private-theming": "^6.3.0", + "@mui/styled-engine": "^6.3.0", + "@mui/types": "^7.2.20", + "@mui/utils": "^6.3.0", "clsx": "^2.1.1", "csstype": "^3.1.3", "prop-types": "^15.8.1" @@ -2856,9 +2851,9 @@ } }, "node_modules/@mui/types": { - "version": "7.2.19", - "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.19.tgz", - "integrity": "sha512-6XpZEM/Q3epK9RN8ENoXuygnqUQxE+siN/6rGRi2iwJPgBUR25mphYQ9ZI87plGh58YoZ5pp40bFvKYOCDJ3tA==", + "version": "7.2.20", + "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.20.tgz", + "integrity": "sha512-straFHD7L8v05l/N5vcWk+y7eL9JF0C2mtph/y4BPm3gn2Eh61dDwDB65pa8DLss3WJfDXYC7Kx5yjP0EmXpgw==", "peerDependencies": { "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0" }, @@ -2869,12 +2864,12 @@ } }, "node_modules/@mui/utils": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-6.2.0.tgz", - "integrity": "sha512-77CaFJi+OIi2SjbPwCis8z5DXvE0dfx9hBz5FguZHt1VYFlWEPCWTHcMsQCahSErnfik5ebLsYK8+D+nsjGVfw==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-6.3.0.tgz", + "integrity": "sha512-MkDBF08OPVwXhAjedyMykRojgvmf0y/jxkBWjystpfI/pasyTYrfdv4jic6s7j3y2+a+SJzS9qrD6X8ZYj/8AQ==", "dependencies": { "@babel/runtime": "^7.26.0", - "@mui/types": "^7.2.19", + "@mui/types": "^7.2.20", "@types/prop-types": "^15.7.14", "clsx": "^2.1.1", "prop-types": "^15.8.1", @@ -2897,11 +2892,6 @@ } } }, - "node_modules/@mui/utils/node_modules/react-is": { - "version": "19.0.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.0.0.tgz", - "integrity": "sha512-H91OHcwjZsbq3ClIDHMzBShc1rotbfACdWENsmEf0IFvZ3FgGPtdHMcsv45bQ1hAbgdfiA8SnxTKfDS+x/8m2g==" - }, "node_modules/@mui/x-date-pickers": { "version": "7.23.1", "resolved": "https://registry.npmjs.org/@mui/x-date-pickers/-/x-date-pickers-7.23.1.tgz", @@ -3918,10 +3908,10 @@ } }, "node_modules/@types/react-transition-group": { - "version": "4.4.11", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.11.tgz", - "integrity": "sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==", - "dependencies": { + "version": "4.4.12", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.12.tgz", + "integrity": "sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==", + "peerDependencies": { "@types/react": "*" } }, @@ -9062,9 +9052,9 @@ } }, "node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" + "version": "19.0.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.0.0.tgz", + "integrity": "sha512-H91OHcwjZsbq3ClIDHMzBShc1rotbfACdWENsmEf0IFvZ3FgGPtdHMcsv45bQ1hAbgdfiA8SnxTKfDS+x/8m2g==" }, "node_modules/react-redux": { "version": "9.1.2", diff --git a/package.json b/package.json index b8a8d33149..c65eb9413b 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "homepage": "/admin-ui", "dependencies": { "@hello-pangea/dnd": "^17.0.0", - "@mui/material": "^6.1.9", + "@mui/material": "^6.3.0", "@mui/x-date-pickers": "^7.23.1", "@reduxjs/toolkit": "^2.2.6", "@types/dompurify": "^3.0.5", From 121a023f357080b261022dc31068c5a269763346 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 11:06:25 +0000 Subject: [PATCH 06/10] Bump react-i18next from 15.1.3 to 15.4.0 Bumps [react-i18next](https://github.com/i18next/react-i18next) from 15.1.3 to 15.4.0. - [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md) - [Commits](https://github.com/i18next/react-i18next/compare/v15.1.3...v15.4.0) --- updated-dependencies: - dependency-name: react-i18next dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 9 ++++----- package.json | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index ec2266184d..d359852167 100644 --- a/package-lock.json +++ b/package-lock.json @@ -34,7 +34,7 @@ "react-datepicker": "^7.5.0", "react-dom": "^18.3.1", "react-hotkeys-hook": "^4.6.1", - "react-i18next": "^15.1.3", + "react-i18next": "^15.4.0", "react-icons": "^5.3.0", "react-redux": "^9.1.2", "react-router-dom": "^6.27.0", @@ -9032,10 +9032,9 @@ } }, "node_modules/react-i18next": { - "version": "15.1.3", - "resolved": "https://registry.npmjs.org/react-i18next/-/react-i18next-15.1.3.tgz", - "integrity": "sha512-J11oA30FbM3NZegUZjn8ySK903z6PLBz/ZuBYyT1JMR0QPrW6PFXvl1WoUhortdGi9dM0m48/zJQlPskVZXgVw==", - "license": "MIT", + "version": "15.4.0", + "resolved": "https://registry.npmjs.org/react-i18next/-/react-i18next-15.4.0.tgz", + "integrity": "sha512-Py6UkX3zV08RTvL6ZANRoBh9sL/ne6rQq79XlkHEdd82cZr2H9usbWpUNVadJntIZP2pu3M2rL1CN+5rQYfYFw==", "dependencies": { "@babel/runtime": "^7.25.0", "html-parse-stringify": "^3.0.1" diff --git a/package.json b/package.json index b8a8d33149..163ddd28b9 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "react-datepicker": "^7.5.0", "react-dom": "^18.3.1", "react-hotkeys-hook": "^4.6.1", - "react-i18next": "^15.1.3", + "react-i18next": "^15.4.0", "react-icons": "^5.3.0", "react-redux": "^9.1.2", "react-router-dom": "^6.27.0", From 777b134df7ce47d2904c19a8aa87a0b156ae4966 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 11:06:31 +0000 Subject: [PATCH 07/10] Bump axios from 1.7.7 to 1.7.9 Bumps [axios](https://github.com/axios/axios) from 1.7.7 to 1.7.9. - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v1.7.7...v1.7.9) --- updated-dependencies: - dependency-name: axios dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index ec2266184d..8fac274c5a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,7 +15,7 @@ "@types/dompurify": "^3.0.5", "@types/react-router-dom": "^5.3.3", "array-move": "^4.0.0", - "axios": "^1.7.7", + "axios": "^1.7.9", "bourbon": "^7.3.0", "classnames": "^2.5.1", "date-fns": "^3.6.0", @@ -5111,9 +5111,9 @@ } }, "node_modules/axios": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", - "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", + "version": "1.7.9", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz", + "integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==", "dependencies": { "follow-redirects": "^1.15.6", "form-data": "^4.0.0", diff --git a/package.json b/package.json index b8a8d33149..1bfbb21a8a 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "@types/dompurify": "^3.0.5", "@types/react-router-dom": "^5.3.3", "array-move": "^4.0.0", - "axios": "^1.7.7", + "axios": "^1.7.9", "bourbon": "^7.3.0", "classnames": "^2.5.1", "date-fns": "^3.6.0", From 93636f691b82fe1dc7cf9f3160b596c67d98bec9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 11:06:49 +0000 Subject: [PATCH 08/10] Bump sass from 1.79.4 to 1.83.0 Bumps [sass](https://github.com/sass/dart-sass) from 1.79.4 to 1.83.0. - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.79.4...1.83.0) --- updated-dependencies: - dependency-name: sass dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 335 +++++++++++++++++++++++++++++++++++++++++++++- package.json | 2 +- 2 files changed, 331 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index ec2266184d..27c7ccae5d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -61,7 +61,7 @@ "eslint-config-react-app": "^7.0.1", "prop-types": "^15.8.1", "rollup-preserve-directives": "^1.1.3", - "sass": "^1.79.4", + "sass": "^1.83.0", "typescript": "^5.6.3", "uuid": "^11.0.3", "vite": "^5.4.10", @@ -3058,6 +3058,302 @@ "node": ">= 8" } }, + "node_modules/@parcel/watcher": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.0.tgz", + "integrity": "sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.5.0", + "@parcel/watcher-darwin-arm64": "2.5.0", + "@parcel/watcher-darwin-x64": "2.5.0", + "@parcel/watcher-freebsd-x64": "2.5.0", + "@parcel/watcher-linux-arm-glibc": "2.5.0", + "@parcel/watcher-linux-arm-musl": "2.5.0", + "@parcel/watcher-linux-arm64-glibc": "2.5.0", + "@parcel/watcher-linux-arm64-musl": "2.5.0", + "@parcel/watcher-linux-x64-glibc": "2.5.0", + "@parcel/watcher-linux-x64-musl": "2.5.0", + "@parcel/watcher-win32-arm64": "2.5.0", + "@parcel/watcher-win32-ia32": "2.5.0", + "@parcel/watcher-win32-x64": "2.5.0" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.0.tgz", + "integrity": "sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.0.tgz", + "integrity": "sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.0.tgz", + "integrity": "sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.0.tgz", + "integrity": "sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.0.tgz", + "integrity": "sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.0.tgz", + "integrity": "sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.0.tgz", + "integrity": "sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.0.tgz", + "integrity": "sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.0.tgz", + "integrity": "sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.0.tgz", + "integrity": "sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.0.tgz", + "integrity": "sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.0.tgz", + "integrity": "sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.0.tgz", + "integrity": "sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, "node_modules/@popperjs/core": { "version": "2.11.8", "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", @@ -5743,6 +6039,19 @@ "node": ">=6" } }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "dev": true, + "optional": true, + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -8538,6 +8847,13 @@ "tslib": "^2.0.3" } }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "dev": true, + "optional": true + }, "node_modules/node-fetch": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", @@ -9462,13 +9778,13 @@ } }, "node_modules/sass": { - "version": "1.79.4", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.79.4.tgz", - "integrity": "sha512-K0QDSNPXgyqO4GZq2HO5Q70TLxTH6cIT59RdoCHMivrC8rqzaTw5ab9prjz9KUN1El4FLXrBXJhik61JR4HcGg==", + "version": "1.83.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.83.0.tgz", + "integrity": "sha512-qsSxlayzoOjdvXMVLkzF84DJFc2HZEL/rFyGIKbbilYtAvlCxyuzUeff9LawTn4btVnLKg75Z8MMr1lxU1lfGw==", "dev": true, "dependencies": { "chokidar": "^4.0.0", - "immutable": "^4.0.0", + "immutable": "^5.0.2", "source-map-js": ">=0.6.2 <2.0.0" }, "bin": { @@ -9476,8 +9792,17 @@ }, "engines": { "node": ">=14.0.0" + }, + "optionalDependencies": { + "@parcel/watcher": "^2.4.1" } }, + "node_modules/sass/node_modules/immutable": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.0.3.tgz", + "integrity": "sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==", + "dev": true + }, "node_modules/scheduler": { "version": "0.23.2", "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", diff --git a/package.json b/package.json index b8a8d33149..993a0ac786 100644 --- a/package.json +++ b/package.json @@ -76,7 +76,7 @@ "eslint-config-react-app": "^7.0.1", "prop-types": "^15.8.1", "rollup-preserve-directives": "^1.1.3", - "sass": "^1.79.4", + "sass": "^1.83.0", "typescript": "^5.6.3", "uuid": "^11.0.3", "vite": "^5.4.10", From 779c383ff733e3a808d0bd0aeb0838e6990c1517 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 11:07:28 +0000 Subject: [PATCH 09/10] Bump i18next-browser-languagedetector from 8.0.0 to 8.0.2 Bumps [i18next-browser-languagedetector](https://github.com/i18next/i18next-browser-languageDetector) from 8.0.0 to 8.0.2. - [Changelog](https://github.com/i18next/i18next-browser-languageDetector/blob/master/CHANGELOG.md) - [Commits](https://github.com/i18next/i18next-browser-languageDetector/compare/v8.0.0...v8.0.2) --- updated-dependencies: - dependency-name: i18next-browser-languagedetector dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index ec2266184d..c197058af4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24,7 +24,7 @@ "formik": "^2.4.6", "http-proxy-middleware": "^3.0.3", "i18next": "^23.16.4", - "i18next-browser-languagedetector": "^8.0.0", + "i18next-browser-languagedetector": "^8.0.2", "i18next-http-backend": "^2.6.1", "lodash": "^4.17.21", "moment": "^2.30.1", @@ -7677,9 +7677,9 @@ } }, "node_modules/i18next-browser-languagedetector": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/i18next-browser-languagedetector/-/i18next-browser-languagedetector-8.0.0.tgz", - "integrity": "sha512-zhXdJXTTCoG39QsrOCiOabnWj2jecouOqbchu3EfhtSHxIB5Uugnm9JaizenOy39h7ne3+fLikIjeW88+rgszw==", + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/i18next-browser-languagedetector/-/i18next-browser-languagedetector-8.0.2.tgz", + "integrity": "sha512-shBvPmnIyZeD2VU5jVGIOWP7u9qNG3Lj7mpaiPFpbJ3LVfHZJvVzKR4v1Cb91wAOFpNw442N+LGPzHOHsten2g==", "dependencies": { "@babel/runtime": "^7.23.2" } diff --git a/package.json b/package.json index b8a8d33149..ec82fe4ba6 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "formik": "^2.4.6", "http-proxy-middleware": "^3.0.3", "i18next": "^23.16.4", - "i18next-browser-languagedetector": "^8.0.0", + "i18next-browser-languagedetector": "^8.0.2", "i18next-http-backend": "^2.6.1", "lodash": "^4.17.21", "moment": "^2.30.1", From 4c193aed33434a0b50d755b157c05d8385e3622f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Jan 2025 15:38:24 +0000 Subject: [PATCH 10/10] Bump typescript from 5.6.3 to 5.7.2 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.6.3 to 5.7.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.6.3...v5.7.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 360bd80f72..5a772cb76e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -62,7 +62,7 @@ "prop-types": "^15.8.1", "rollup-preserve-directives": "^1.1.3", "sass": "^1.83.0", - "typescript": "^5.6.3", + "typescript": "^5.7.2", "uuid": "^11.0.3", "vite": "^5.4.10", "vite-plugin-svgr": "^4.2.0", @@ -10451,9 +10451,9 @@ } }, "node_modules/typescript": { - "version": "5.6.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz", - "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz", + "integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==", "dev": true, "bin": { "tsc": "bin/tsc", diff --git a/package.json b/package.json index d04942b9f6..8a1a69b544 100644 --- a/package.json +++ b/package.json @@ -77,7 +77,7 @@ "prop-types": "^15.8.1", "rollup-preserve-directives": "^1.1.3", "sass": "^1.83.0", - "typescript": "^5.6.3", + "typescript": "^5.7.2", "uuid": "^11.0.3", "vite": "^5.4.10", "vite-plugin-svgr": "^4.2.0",