From cb36d47aea1bfe956ac9efd224b5c735bd08bb0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Slez=C3=A1k?= Date: Fri, 26 Jul 2024 09:48:02 +0200 Subject: [PATCH 01/18] fix(ci): avoid accidetally adding NPM TGZ source files to OBS (#1502) ## Problem - Sometimes a TGZ file is accidentally added to the OBS package sources, [see an example](https://build.opensuse.org/package/show/systemsmanagement:Agama:Devel/agama-integration-tests?rev=4) - I guess that the `osc service` for some reason does not delete all downloaded NPM packages and leaves them there - Then they are submitted with the usual package sources ## Solution - To avoid this problem always delete all `*.tgz` files before submitting the package to OBS --- .github/workflows/obs-staging-shared.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/obs-staging-shared.yml b/.github/workflows/obs-staging-shared.yml index d7f5e48bc8..00d5b3c8ee 100644 --- a/.github/workflows/obs-staging-shared.yml +++ b/.github/workflows/obs-staging-shared.yml @@ -91,6 +91,13 @@ jobs: run: osc service manualrun working-directory: ./${{ vars.OBS_PROJECT }}/${{ inputs.package_name }} + - name: Cleanup + # sometimes the "osc service" run does not cleanup properly all + # downloaded NPM package tarballs and they are accidentally added to the + # OBS package, so delete any TGZ files present + run: rm -vf *.tgz + working-directory: ./${{ vars.OBS_PROJECT }}/${{ inputs.package_name }} + - name: Check status run: osc addremove && osc diff && osc status working-directory: ./${{ vars.OBS_PROJECT }}/${{ inputs.package_name }} From 354beab1fdf84460b27ede87d2a79b5ebcb9485a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Fri, 26 Jul 2024 12:36:50 +0100 Subject: [PATCH 02/18] fix(web): do not suspense when loading products in App --- web/src/MainLayout.jsx | 4 +-- .../product/ProductSelectionPage.jsx | 2 +- .../product/ProductSelectionProgress.jsx | 2 +- .../storage/ProposalTransactionalInfo.jsx | 2 +- web/src/queries/software.ts | 19 +++++++++++-- web/src/types/queries.ts | 27 +++++++++++++++++++ 6 files changed, 49 insertions(+), 7 deletions(-) create mode 100644 web/src/types/queries.ts diff --git a/web/src/MainLayout.jsx b/web/src/MainLayout.jsx index d85734d3d0..d1ad6be238 100644 --- a/web/src/MainLayout.jsx +++ b/web/src/MainLayout.jsx @@ -47,7 +47,7 @@ import { rootRoutes } from "~/router"; import { useProduct } from "./queries/software"; const Header = () => { - const { selectedProduct } = useProduct(); + const { selectedProduct } = useProduct({ suspense: true }); // NOTE: Agama is a name, do not translate const title = selectedProduct?.name || _("Agama"); @@ -84,7 +84,7 @@ const Header = () => { const ChangeProductButton = () => { const navigate = useNavigate(); - const { products } = useProduct(); + const { products } = useProduct({ suspense: true }); if (!products.length) return null; diff --git a/web/src/components/product/ProductSelectionPage.jsx b/web/src/components/product/ProductSelectionPage.jsx index bd5f2a8403..8bfcbcec58 100644 --- a/web/src/components/product/ProductSelectionPage.jsx +++ b/web/src/components/product/ProductSelectionPage.jsx @@ -33,7 +33,7 @@ const Label = ({ children }) => ( ); function ProductSelectionPage() { - const { products, selectedProduct } = useProduct(); + const { products, selectedProduct } = useProduct({ suspense: true }); const setConfig = useConfigMutation(); const [nextProduct, setNextProduct] = useState(selectedProduct); const [isLoading, setIsLoading] = useState(false); diff --git a/web/src/components/product/ProductSelectionProgress.jsx b/web/src/components/product/ProductSelectionProgress.jsx index 944ebe3243..9e7abdd99e 100644 --- a/web/src/components/product/ProductSelectionProgress.jsx +++ b/web/src/components/product/ProductSelectionProgress.jsx @@ -33,7 +33,7 @@ import { useInstallerClient } from "~/context/installer"; * Shows progress steps when a product is selected. */ function ProductSelectionProgress() { - const { selectedProduct } = useProduct(); + const { selectedProduct } = useProduct({ suspense: true }); const { manager } = useInstallerClient(); const [status, setStatus] = useState(); diff --git a/web/src/components/storage/ProposalTransactionalInfo.jsx b/web/src/components/storage/ProposalTransactionalInfo.jsx index 1221ad6374..9127aec430 100644 --- a/web/src/components/storage/ProposalTransactionalInfo.jsx +++ b/web/src/components/storage/ProposalTransactionalInfo.jsx @@ -38,7 +38,7 @@ import { isTransactionalSystem } from "~/components/storage/utils"; * @param {ProposalSettings} props.settings - Settings used for calculating a proposal. */ export default function ProposalTransactionalInfo({ settings }) { - const { selectedProduct } = useProduct(); + const { selectedProduct } = useProduct({ suspense: true }); if (!isTransactionalSystem(settings?.volumes)) return; diff --git a/web/src/queries/software.ts b/web/src/queries/software.ts index 9c29d8c73f..a652b3d64b 100644 --- a/web/src/queries/software.ts +++ b/web/src/queries/software.ts @@ -22,6 +22,7 @@ import React from "react"; import { useMutation, + useQueries, useQueryClient, useSuspenseQueries, useSuspenseQuery, @@ -113,14 +114,28 @@ const useConfigMutation = () => { return useMutation(query); }; +type QueryHookOptions = { + suspense: boolean; +}; + /** * Returns available products and selected one, if any */ -const useProduct = (): { products: Product[]; selectedProduct: Product | undefined } => { - const [{ data: selected }, { data: products }] = useSuspenseQueries({ +const useProduct = ( + options?: QueryHookOptions, +): { products: Product[]; selectedProduct: Product | undefined } => { + const func = options?.suspense ? useSuspenseQueries : useQueries; + const [{ data: selected }, { data: products }] = func({ queries: [selectedProductQuery(), productsQuery()], }); + if (!products) { + return { + products: [], + selectedProduct: undefined, + }; + } + const selectedProduct = products.find((p: Product) => p.id === selected); return { products, diff --git a/web/src/types/queries.ts b/web/src/types/queries.ts new file mode 100644 index 0000000000..34fadb4799 --- /dev/null +++ b/web/src/types/queries.ts @@ -0,0 +1,27 @@ +/* + * Copyright (c) [2024] SUSE LLC + * + * All Rights Reserved. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of version 2 of the GNU General Public License as published + * by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, contact SUSE LLC. + * + * To contact SUSE LLC about this file by physical or electronic mail, you may + * find current contact information at www.suse.com. + */ + +/** + * Typical options for our queries hooks. + */ +type QueryHookOptions = { + suspense: boolean; +}; From f4eb7325a15d0dd6b83ea93ecb77da387bf8111e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Fri, 26 Jul 2024 12:51:10 +0100 Subject: [PATCH 03/18] doc(web): update changes file --- web/package/agama-web-ui.changes | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/package/agama-web-ui.changes b/web/package/agama-web-ui.changes index 2b3de5b9e8..e24a93e7fb 100644 --- a/web/package/agama-web-ui.changes +++ b/web/package/agama-web-ui.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Fri Jul 26 11:42:05 UTC 2024 - Imobach Gonzalez Sosa + +- Allow reloading the page during installation + (gh#openSUSE/agama#1503). + ------------------------------------------------------------------- Mon Jul 22 15:28:42 UTC 2024 - Josef Reidinger From a7aff1ea1399dbf16bd27abbd0ecf0eaac832116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Fri, 26 Jul 2024 13:02:00 +0100 Subject: [PATCH 04/18] fix(web): make 'suspense' optional --- web/src/queries/software.ts | 4 ---- web/src/types/queries.ts | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/web/src/queries/software.ts b/web/src/queries/software.ts index a652b3d64b..af6dfa7572 100644 --- a/web/src/queries/software.ts +++ b/web/src/queries/software.ts @@ -114,10 +114,6 @@ const useConfigMutation = () => { return useMutation(query); }; -type QueryHookOptions = { - suspense: boolean; -}; - /** * Returns available products and selected one, if any */ diff --git a/web/src/types/queries.ts b/web/src/types/queries.ts index 34fadb4799..f1aed1b1ad 100644 --- a/web/src/types/queries.ts +++ b/web/src/types/queries.ts @@ -23,5 +23,5 @@ * Typical options for our queries hooks. */ type QueryHookOptions = { - suspense: boolean; + suspense?: boolean; }; From 00fb2daa52ab232304d60dc33e00371e06f0a669 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Fri, 26 Jul 2024 13:09:00 +0100 Subject: [PATCH 05/18] fix(web): make useProduct hook more robust --- web/src/queries/software.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/web/src/queries/software.ts b/web/src/queries/software.ts index af6dfa7572..9834bf8ec9 100644 --- a/web/src/queries/software.ts +++ b/web/src/queries/software.ts @@ -119,17 +119,17 @@ const useConfigMutation = () => { */ const useProduct = ( options?: QueryHookOptions, -): { products: Product[]; selectedProduct: Product | undefined } => { +): { products?: Product[]; selectedProduct?: Product } => { const func = options?.suspense ? useSuspenseQueries : useQueries; - const [{ data: selected }, { data: products }] = func({ + const [ + { data: selected, isPending: isSelectedPending }, + { data: products, isPending: isProductsPending }, + ] = func({ queries: [selectedProductQuery(), productsQuery()], }); - if (!products) { - return { - products: [], - selectedProduct: undefined, - }; + if (isSelectedPending || isProductsPending) { + return {}; } const selectedProduct = products.find((p: Product) => p.id === selected); From bf5ac366bda88bb848dcac05840284c9d5c666fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Fri, 26 Jul 2024 11:35:25 +0100 Subject: [PATCH 06/18] refactor(web): use queries to track progress --- web/src/components/core/ProgressReport.jsx | 82 +++++------ .../components/core/ProgressReport.test.jsx | 127 +++++++----------- web/src/queries/progress.ts | 91 +++++++++++++ web/src/types/progress.ts | 58 ++++++++ 4 files changed, 243 insertions(+), 115 deletions(-) create mode 100644 web/src/queries/progress.ts create mode 100644 web/src/types/progress.ts diff --git a/web/src/components/core/ProgressReport.jsx b/web/src/components/core/ProgressReport.jsx index 63b0230231..9791d8dd49 100644 --- a/web/src/components/core/ProgressReport.jsx +++ b/web/src/components/core/ProgressReport.jsx @@ -35,7 +35,13 @@ import { import { _ } from "~/i18n"; import { Center } from "~/components/layout"; -import { useInstallerClient } from "~/context/installer"; +import { + progressQuery, + useProgress, + useProgressChanges, + useResetProgress, +} from "~/queries/progress"; +import { useQuery } from "@tanstack/react-query"; const Progress = ({ steps, step, firstStep, detail }) => { const stepProperties = (stepNumber) => { @@ -45,9 +51,9 @@ const Progress = ({ steps, step, firstStep, detail }) => { titleId: `step-${stepNumber}-title`, }; - if (stepNumber < step.current) { - properties.variant = "success"; - properties.description =
{_("Finished")}
; + if (stepNumber > step.current) { + properties.variant = "pending"; + properties.description =
{_("Pending")}
; } if (properties.isCurrent) { @@ -69,9 +75,9 @@ const Progress = ({ steps, step, firstStep, detail }) => { } } - if (stepNumber > step.current) { - properties.variant = "pending"; - properties.description =
{_("Pending")}
; + if (stepNumber < step.current || step.finished) { + properties.variant = "success"; + properties.description =
{_("Finished")}
; } return properties; @@ -95,47 +101,43 @@ const Progress = ({ steps, step, firstStep, detail }) => { ); }; +function findDetail(progresses) { + return progresses.find((progress) => { + return progress?.finished === false; + }); +} + /** * @component * * Shows progress steps when a product is selected. */ function ProgressReport({ title, firstStep }) { - const { manager, storage, software } = useInstallerClient(); - const [steps, setSteps] = useState(); - const [step, setStep] = useState(); - const [detail, setDetail] = useState(); - - useEffect(() => software.onProgressChange(setDetail), [software, setDetail]); - useEffect(() => storage.onProgressChange(setDetail), [storage, setDetail]); + const progress = useProgress("manager", { suspense: true }); + const [steps, setSteps] = useState(progress.steps); + const softwareProgress = useProgress("software"); + const storageProgress = useProgress("storage"); + useResetProgress(); + useProgressChanges(); useEffect(() => { - manager.getProgress().then((progress) => { - setSteps(progress.steps); - setStep(progress); - }); - - return manager.onProgressChange(setStep); - }, [manager, setSteps]); - - const Content = () => { - if (!steps) { - return; - } - - return ( - - ); - }; + if (progress.steps.length === 0) return; + + setSteps(progress.steps); + }, [progress, steps]); + const detail = findDetail([softwareProgress, storageProgress]); + + const Content = () => ( + + ); - const progressTitle = !steps ? _("Waiting for progress status...") : title; return (
@@ -149,7 +151,7 @@ function ProgressReport({ title, firstStep }) { >

- {progressTitle} + {title}

diff --git a/web/src/components/core/ProgressReport.test.jsx b/web/src/components/core/ProgressReport.test.jsx index f90b083b5d..1a2384195a 100644 --- a/web/src/components/core/ProgressReport.test.jsx +++ b/web/src/components/core/ProgressReport.test.jsx @@ -1,5 +1,5 @@ /* - * Copyright (c) [2022] SUSE LLC + * Copyright (c) [2022-2024] SUSE LLC * * All Rights Reserved. * @@ -22,98 +22,75 @@ import React from "react"; import { act, screen } from "@testing-library/react"; -import { installerRender, createCallbackMock } from "~/test-utils"; -import { createClient } from "~/client"; +import { plainRender } from "~/test-utils"; import { ProgressReport } from "~/components/core"; -jest.mock("~/client"); +let mockProgress; -let callbacks; -let onManagerProgressChange = jest.fn(); -let onSoftwareProgressChange = jest.fn(); -let onStorageProgressChange = jest.fn(); - -beforeEach(() => { - createClient.mockImplementation(() => { - return { - manager: { - onProgressChange: onManagerProgressChange, - getProgress: jest.fn().mockResolvedValue({ - message: "Partition disks", - current: 1, - total: 10, - steps: ["Partition disks", "Install software"], - }), - }, - software: { - onProgressChange: onSoftwareProgressChange, - }, - storage: { - onProgressChange: onStorageProgressChange, - }, - }; - }); -}); +jest.mock("~/queries/progress", () => ({ + ...jest.requireActual("~/queries/progress"), + useProgress: (service) => mockProgress[service], +})); describe("ProgressReport", () => { - describe("when there is progress information available", () => { + describe("when there are details of the storage service", () => { beforeEach(() => { - const [onManagerProgress, managerCallbacks] = createCallbackMock(); - const [onSoftwareProgress, softwareCallbacks] = createCallbackMock(); - const [onStorageProgress, storageCallbacks] = createCallbackMock(); - onManagerProgressChange = onManagerProgress; - onSoftwareProgressChange = onSoftwareProgress; - onStorageProgressChange = onStorageProgress; - callbacks = { - manager: managerCallbacks, - software: softwareCallbacks, - storage: storageCallbacks, + mockProgress = { + manager: { + message: "Partition disks", + current: 1, + total: 3, + steps: ["Partition disks", "Install software", "Install bootloader"], + }, + storage: { + message: "Doing some partitioning", + current: 1, + total: 1, + finished: false, + }, }; }); - it("shows the progress including the details from the storage service", async () => { - installerRender(); + it("shows the progress including the details", () => { + plainRender(); - await screen.findByText(/Waiting/i); - await screen.findByText(/Partition disks/i); - await screen.findByText(/Install software/i); - - const cb = callbacks.storage[callbacks.storage.length - 1]; - act(() => { - cb({ - message: "Doing some partitioning", - current: 1, - total: 10, - finished: false, - }); - }); + expect(screen.getByText(/Partition disks/)).toBeInTheDocument(); + expect(screen.getByText(/Install software/)).toBeInTheDocument(); // NOTE: not finding the whole text because it is now split in two because of PF/Truncate - await screen.findByText(/Doing some/); - await screen.findByText(/\(1\/10\)/); + expect(screen.getByText(/Doing some/)).toBeInTheDocument(); + expect(screen.getByText(/\(1\/1\)/)).toBeInTheDocument(); }); + }); - it("shows the progress including the details from the software service", async () => { - installerRender(); + describe("when there are details of the software service", () => { + beforeEach(() => { + mockProgress = { + manager: { + message: "Installing software", + current: 2, + total: 3, + steps: ["Partition disks", "Install software", "Install bootloader"], + }, + software: { + message: "Installing vim", + current: 5, + total: 200, + finished: false, + }, + }; + }); - await screen.findByText(/Waiting/i); - await screen.findByText(/Install software/i); + it("shows the progress including the details", () => { + plainRender(); - const cb = callbacks.software[callbacks.software.length - 1]; - act(() => { - cb({ - message: "Installing packages", - current: 495, - total: 500, - finished: false, - }); - }); + expect(screen.getByText(/Partition disks/)).toBeInTheDocument(); + expect(screen.getByText(/Install software/)).toBeInTheDocument(); - // NOTE: not finding the whole "Intalling packages (495/500)" because it - // is now split in two because of PF/Truncate - await screen.findByText(/Installing/); - await screen.findByText(/.*\(495\/500\)/); + // NOTE: not finding the whole text because it is now split in two because of PF/Truncate + expect(screen.getByText(/Installing vim/)).toBeInTheDocument(); + expect(screen.getByText(/\(5\/200\)/)).toBeInTheDocument(); }); }); }); diff --git a/web/src/queries/progress.ts b/web/src/queries/progress.ts new file mode 100644 index 0000000000..d7fbfff5c2 --- /dev/null +++ b/web/src/queries/progress.ts @@ -0,0 +1,91 @@ +/* + * Copyright (c) [2024] SUSE LLC + * + * All Rights Reserved. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of version 2 of the GNU General Public License as published + * by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, contact SUSE LLC. + * + * To contact SUSE LLC about this file by physical or electronic mail, you may + * find current contact information at www.suse.com. + */ + +import React from "react"; +import { useQuery, useQueryClient, useSuspenseQuery } from "@tanstack/react-query"; +import { useInstallerClient } from "~/context/installer"; +import { Progress } from "~/types/progress"; + +const servicesMap = { + "org.opensuse.Agama.Manager1": "manager", + "org.opensuse.Agama.Software1": "software", + "org.opensuse.Agama.Storage1": "storage", +}; + +const progressQuery = (service: string) => { + return { + queryKey: ["progress", service], + queryFn: () => + fetch(`/api/${service}/progress`) + .then((res) => res.json()) + .then((body) => Progress.fromApi(body)), + }; +}; + +type UseProgressOptions = { + suspense: boolean; +}; + +const useProgress = (service: string, options?: QueryHookOptions): Progress => { + const query = progressQuery(service); + const func = options?.suspense ? useSuspenseQuery : useQuery; + const { data } = func(query); + return data; +}; + +const useProgressChanges = () => { + const client = useInstallerClient(); + const queryClient = useQueryClient(); + + React.useEffect(() => { + if (!client) return; + + return client.ws().onEvent((event) => { + if (event.type === "Progress") { + const service = servicesMap[event.service]; + if (!service) { + console.warn("Unknown service", event.service); + return; + } + + const data = queryClient.getQueryData(["progress", service]); + if (data) { + // NOTE: steps are not coming in the updates + const steps = (data as Progress).steps; + const fromEvent = Progress.fromApi(event); + queryClient.setQueryData(["progress", service], { ...fromEvent, steps }); + } + } + }); + }, [client, queryClient]); +}; + +const useResetProgress = () => { + const queryClient = useQueryClient(); + + React.useEffect(() => { + return () => { + queryClient.invalidateQueries({ queryKey: ["progress"] }); + }; + }, []); +}; + +export { useProgress, useProgressChanges, useResetProgress, progressQuery }; diff --git a/web/src/types/progress.ts b/web/src/types/progress.ts new file mode 100644 index 0000000000..d32da63524 --- /dev/null +++ b/web/src/types/progress.ts @@ -0,0 +1,58 @@ +/* + * Copyright (c) [2024] SUSE LLC + * + * All Rights Reserved. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of version 2 of the GNU General Public License as published + * by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, contact SUSE LLC. + * + * To contact SUSE LLC about this file by physical or electronic mail, you may + * find current contact information at www.suse.com. + */ + +type ProgressApi = { + currentStep: number; + maxSteps: number; + currentTitle: string; + finished: boolean; + steps?: string[]; + service: string; +}; + +class Progress { + total: number; + current: number; + message: string; + finished: boolean; + steps: string[]; + + constructor(current: number, total: number, message: string, finished: boolean, steps: string[]) { + this.current = current; + this.total = total; + this.message = message; + this.finished = finished; + this.steps = steps; + } + + static fromApi(progress: ProgressApi) { + const { + currentStep: current, + maxSteps: total, + currentTitle: message, + finished, + steps = [], + } = progress; + return new Progress(current, total, message, finished, steps); + } +} + +export { Progress }; From ae08dddeb2cfd2032e4ab494d5ea97ca03dfb7c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Fri, 26 Jul 2024 15:45:45 +0100 Subject: [PATCH 07/18] refactor(web): drop the WithProgress mixin --- web/src/client/manager.js | 8 +--- web/src/client/mixins.js | 85 +------------------------------------- web/src/client/software.js | 8 +--- web/src/client/storage.js | 8 +--- 4 files changed, 7 insertions(+), 102 deletions(-) diff --git a/web/src/client/manager.js b/web/src/client/manager.js index 365a831b01..2c4a50113b 100644 --- a/web/src/client/manager.js +++ b/web/src/client/manager.js @@ -21,7 +21,7 @@ // @ts-check -import { WithProgress, WithStatus } from "./mixins"; +import { WithStatus } from "./mixins"; const MANAGER_SERVICE = "org.opensuse.Agama.Manager1"; @@ -148,10 +148,6 @@ class ManagerBaseClient { /** * Client to interact with the Agama manager service */ -class ManagerClient extends WithProgress( - WithStatus(ManagerBaseClient, "/manager/status", MANAGER_SERVICE), - "/manager/progress", - MANAGER_SERVICE, -) {} +class ManagerClient extends WithStatus(ManagerBaseClient, "/manager/status", MANAGER_SERVICE) {} export { ManagerClient }; diff --git a/web/src/client/mixins.js b/web/src/client/mixins.js index 18acdab3ab..1c60923bd0 100644 --- a/web/src/client/mixins.js +++ b/web/src/client/mixins.js @@ -113,89 +113,6 @@ const WithStatus = (superclass, status_path, service_name) => } }; -/** - * @typedef {object} Progress - * @property {number} total - number of steps - * @property {number} current - current step - * @property {string} message - message of the current step - * @property {boolean} finished - whether the progress already finished - */ - -/** - * @typedef {object} ProgressSequence - * @property {string[]} steps - sequence steps if known in advance - * @property {number} total - number of steps - * @property {number} current - current step - * @property {string} message - message of the current step - * @property {boolean} finished - whether the progress already finished - */ - -/** - * @callback ProgressHandler - * @param {Progress} progress - progress status - * @return {void} - */ - -/** - * Extends the given class with methods to get and track the service progress - * - * @template {!WithHTTPClient} T - * @param {T} superclass - superclass to extend - * @param {string} progress_path - status resource path (e.g., "/manager/status"). - * @param {string} service_name - service name (e.g., "org.opensuse.Agama.Manager1"). - */ -const WithProgress = (superclass, progress_path, service_name) => - class extends superclass { - /** - * Returns the service progress - * - * @return {Promise} an object containing the total steps, - * the current step and whether the service finished or not. - */ - async getProgress() { - const response = await this.client.get(progress_path); - if (!response.ok) { - console.log("get progress failed with:", response); - return { - steps: [], - total: 0, - current: 0, - message: "Failed to get progress", - finished: false, - }; - } else { - const { steps, currentStep, maxSteps, currentTitle, finished } = await response.json(); - return { - steps, - total: maxSteps, - current: currentStep, - message: currentTitle, - finished, - }; - } - } - - /** - * Register a callback to run when the progress changes - * - * @param {ProgressHandler} handler - callback function - * @return {import ("./http").RemoveFn} function to disable the callback - */ - onProgressChange(handler) { - return this.client.onEvent("Progress", ({ service, ...progress }) => { - if (service === service_name) { - const { currentStep, maxSteps, currentTitle, finished } = progress; - handler({ - total: maxSteps, - current: currentStep, - message: currentTitle, - finished, - }); - } - }); - } - }; - /** * @typedef {object} ValidationError * @property {string} message - Error message @@ -214,4 +131,4 @@ const createError = (message) => { return { message }; }; -export { WithProgress, WithStatus }; +export { WithStatus }; diff --git a/web/src/client/software.js b/web/src/client/software.js index e5a5fd0ad2..1e886bad56 100644 --- a/web/src/client/software.js +++ b/web/src/client/software.js @@ -21,7 +21,7 @@ // @ts-check -import { WithProgress, WithStatus } from "./mixins"; +import { WithStatus } from "./mixins"; const SOFTWARE_SERVICE = "org.opensuse.Agama.Software1"; @@ -45,11 +45,7 @@ class SoftwareBaseClient { /** * Manages software and product configuration. */ -class SoftwareClient extends WithProgress( - WithStatus(SoftwareBaseClient, "/software/status", SOFTWARE_SERVICE), - "/software/progress", - SOFTWARE_SERVICE, -) {} +class SoftwareClient extends WithStatus(SoftwareBaseClient, "/software/status", SOFTWARE_SERVICE) {} class ProductClient { /** diff --git a/web/src/client/storage.js b/web/src/client/storage.js index 2734dbd896..3a14b4e318 100644 --- a/web/src/client/storage.js +++ b/web/src/client/storage.js @@ -23,7 +23,7 @@ // cspell:ignore ptable import { compact, hex, uniq } from "~/utils"; -import { WithProgress, WithStatus } from "./mixins"; +import { WithStatus } from "./mixins"; import { HTTPClient } from "./http"; const SERVICE_NAME = "org.opensuse.Agama.Storage1"; @@ -1652,10 +1652,6 @@ class StorageBaseClient { /** * Allows interacting with the storage settings */ -class StorageClient extends WithProgress( - WithStatus(StorageBaseClient, "/storage/status", SERVICE_NAME), - "/storage/progress", - SERVICE_NAME, -) {} +class StorageClient extends WithStatus(StorageBaseClient, "/storage/status", SERVICE_NAME) {} export { StorageClient, EncryptionMethods }; From adb1fe2f5dcf0c1d46f8e2aec2a8a52fa33487d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Slez=C3=A1k?= Date: Fri, 26 Jul 2024 17:48:35 +0200 Subject: [PATCH 08/18] Live: Fixed building the PXE image --- live/src/agama-installer.kiwi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/live/src/agama-installer.kiwi b/live/src/agama-installer.kiwi index 6adc773307..d1d93c08d0 100644 --- a/live/src/agama-installer.kiwi +++ b/live/src/agama-installer.kiwi @@ -184,7 +184,7 @@ - + From b42fc2b4e6309281a80754926c73f643d1441c0b Mon Sep 17 00:00:00 2001 From: YaST Bot Date: Sun, 28 Jul 2024 02:52:57 +0000 Subject: [PATCH 09/18] Update service PO files Agama-weblate commit: e9e0281b40b6dbc2e580ee437bcac18c44e36c0e --- service/po/cs.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/service/po/cs.po b/service/po/cs.po index aad8bf2983..d0ebd81fa9 100644 --- a/service/po/cs.po +++ b/service/po/cs.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-07-10 02:23+0000\n" -"PO-Revision-Date: 2024-07-12 07:47+0000\n" +"PO-Revision-Date: 2024-07-22 20:47+0000\n" "Last-Translator: Aleš Kastner \n" "Language-Team: Czech \n" @@ -192,7 +192,7 @@ msgstr "Zapisuji konfiguraci boot zavaděče v sysconfig" #. @return [Issue] #: service/lib/agama/storage/proposal.rb:192 msgid "Cannot accommodate the required file systems for installation" -msgstr "Nemohu zajistit systémy souborů pro instalaci" +msgstr "Nelze umístit požadované souborové systémy pro instalaci" #. Issue to communicate a generic Y2Storage error. #. From 373f722ba8b53fdf86b9c3aec59dd29312683737 Mon Sep 17 00:00:00 2001 From: YaST Bot Date: Sun, 28 Jul 2024 02:52:58 +0000 Subject: [PATCH 10/18] Update web PO files Agama-weblate commit: e9e0281b40b6dbc2e580ee437bcac18c44e36c0e --- web/po/ca.po | 357 ++++++------- web/po/cs.po | 1148 +++++++++++++++++++++------------------- web/po/de.po | 342 ++++++------ web/po/es.po | 345 ++++++------ web/po/fr.po | 336 ++++++------ web/po/id.po | 326 +++++------- web/po/ja.po | 343 ++++++------ web/po/ka.po | 314 +++++------ web/po/mk.po | 285 ++++------ web/po/nb_NO.po | 340 ++++++------ web/po/nl.po | 347 ++++++------ web/po/pt_BR.po | 340 ++++++------ web/po/ru.po | 354 ++++++------- web/po/sv.po | 351 ++++++------ web/po/tr.po | 294 ++++------ web/po/uk.po | 281 ++++------ web/po/zh_Hans.po | 338 ++++++------ web/src/languages.json | 23 +- 18 files changed, 3006 insertions(+), 3458 deletions(-) diff --git a/web/po/ca.po b/web/po/ca.po index 6b84b4dbc6..7132f194c6 100644 --- a/web/po/ca.po +++ b/web/po/ca.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-18 02:24+0000\n" -"PO-Revision-Date: 2024-07-18 11:47+0000\n" +"POT-Creation-Date: 2024-07-28 02:29+0000\n" +"PO-Revision-Date: 2024-07-25 08:46+0000\n" "Last-Translator: David Medina \n" "Language-Team: Catalan \n" @@ -56,7 +56,6 @@ msgstr "" "Per obtenir-ne més informació, visiteu el repositori del projecte a %s." #: src/components/core/About.jsx:92 src/components/core/LogsButton.jsx:126 -#: src/components/software/SoftwarePatternsSelection.jsx:268 msgid "Close" msgstr "Tanca" @@ -85,7 +84,7 @@ msgstr "Continua" #. TRANSLATORS: button label #: src/components/core/InstallButton.jsx:49 src/components/core/Page.jsx:90 #: src/components/core/Popup.jsx:132 -#: src/components/network/WifiConnectionForm.jsx:134 +#: src/components/network/WifiConnectionForm.jsx:141 msgid "Cancel" msgstr "Cancel·la" @@ -181,14 +180,13 @@ msgstr "No es pot canviar a la instal·lació remota." #: src/components/core/InstallerOptions.jsx:142 #: src/components/network/IpSettingsForm.jsx:228 -#: src/components/product/ProductRegistrationPage.jsx:85 #: src/components/storage/BootSelection.jsx:250 #: src/components/storage/DeviceSelection.jsx:254 #: src/components/storage/EncryptionSettingsDialog.jsx:155 #: src/components/storage/SpacePolicySelection.jsx:200 #: src/components/storage/VolumeDialog.jsx:794 #: src/components/storage/ZFCPPage.jsx:528 -#: src/components/users/FirstUserForm.jsx:303 +#: src/components/users/FirstUserForm.jsx:293 msgid "Accept" msgstr "Accepta-ho" @@ -270,11 +268,13 @@ msgstr "" msgid "Passwords do not match" msgstr "Les contrasenyes no coincideixen." +#. TRANSLATORS: field label #: src/components/core/PasswordAndConfirmationInput.jsx:79 -#: src/components/network/WifiConnectionForm.jsx:121 +#: src/components/network/WifiConnectionForm.jsx:128 +#: src/components/questions/QuestionWithPassword.jsx:48 #: src/components/storage/iscsi/AuthFields.jsx:90 #: src/components/storage/iscsi/AuthFields.jsx:94 -#: src/components/users/RootAuthMethods.jsx:165 +#: src/components/users/RootAuthMethods.jsx:130 msgid "Password" msgstr "Contrasenya" @@ -366,11 +366,11 @@ msgstr "Encara no s'ha seleccionat." #: src/components/l10n/L10nPage.jsx:64 src/components/l10n/L10nPage.jsx:72 #: src/components/l10n/L10nPage.jsx:83 -#: src/components/network/NetworkPage.jsx:112 +#: src/components/network/NetworkPage.jsx:74 #: src/components/storage/InstallationDeviceField.jsx:108 #: src/components/storage/ProposalActionsSummary.jsx:238 -#: src/components/users/RootAuthMethods.jsx:100 -#: src/components/users/RootAuthMethods.jsx:112 +#: src/components/users/RootAuthMethods.jsx:74 +#: src/components/users/RootAuthMethods.jsx:86 msgid "Change" msgstr "Canvia" @@ -449,7 +449,7 @@ msgstr "Llista de dades d'adreces" #. TRANSLATORS: input field for the iSCSI initiator name #. TRANSLATORS: table header #: src/components/network/ConnectionsTable.jsx:64 -#: src/components/network/ConnectionsTable.jsx:92 +#: src/components/network/ConnectionsTable.jsx:93 #: src/components/storage/ZFCPPage.jsx:381 #: src/components/storage/iscsi/InitiatorForm.jsx:52 #: src/components/storage/iscsi/InitiatorPresenter.jsx:68 @@ -461,41 +461,46 @@ msgstr "Nom" #. TRANSLATORS: table header #: src/components/network/ConnectionsTable.jsx:66 -#: src/components/network/ConnectionsTable.jsx:93 +#: src/components/network/ConnectionsTable.jsx:94 msgid "IP addresses" msgstr "Adreces IP" -#: src/components/network/ConnectionsTable.jsx:74 -#: src/components/network/WifiNetworksListPage.jsx:107 -#: src/components/network/WifiNetworksListPage.jsx:130 +#. TRANSLATORS: table header aria label +#: src/components/network/ConnectionsTable.jsx:68 +msgid "Connection actions" +msgstr "Accions de connexió" + +#: src/components/network/ConnectionsTable.jsx:75 +#: src/components/network/WifiNetworksListPage.jsx:112 +#: src/components/network/WifiNetworksListPage.jsx:135 #: src/components/storage/PartitionsField.jsx:347 #: src/components/storage/iscsi/InitiatorPresenter.jsx:49 #: src/components/storage/iscsi/NodesPresenter.jsx:73 -#: src/components/users/FirstUser.jsx:120 +#: src/components/users/FirstUser.jsx:85 msgid "Edit" msgstr "Edita" #. TRANSLATORS: %s is replaced by a network connection name -#: src/components/network/ConnectionsTable.jsx:77 +#: src/components/network/ConnectionsTable.jsx:78 #: src/components/network/IpSettingsForm.jsx:151 #, c-format msgid "Edit connection %s" msgstr "Edita la connexió %s" -#: src/components/network/ConnectionsTable.jsx:81 -#: src/components/network/WifiNetworksListPage.jsx:109 -#: src/components/network/WifiNetworksListPage.jsx:137 +#: src/components/network/ConnectionsTable.jsx:82 +#: src/components/network/WifiNetworksListPage.jsx:114 +#: src/components/network/WifiNetworksListPage.jsx:142 msgid "Forget" msgstr "Oblida-la" #. TRANSLATORS: %s is replaced by a network connection name -#: src/components/network/ConnectionsTable.jsx:83 +#: src/components/network/ConnectionsTable.jsx:84 #, c-format msgid "Forget connection %s" msgstr "Oblida la connexió %s" #. TRANSLATORS: %s is replaced by a network connection name -#: src/components/network/ConnectionsTable.jsx:98 +#: src/components/network/ConnectionsTable.jsx:99 #, c-format msgid "Actions for connection %s" msgstr "Accions per a la connexió %s" @@ -556,11 +561,11 @@ msgstr "Passarel·la" msgid "Gateway can be defined only in 'Manual' mode" msgstr "La passarel·la només es pot definir en mode manual." -#: src/components/network/NetworkPage.jsx:93 +#: src/components/network/NetworkPage.jsx:55 msgid "No Wi-Fi supported" msgstr "No és compatible amb Wi-Fi." -#: src/components/network/NetworkPage.jsx:95 +#: src/components/network/NetworkPage.jsx:57 msgid "" "The system does not support Wi-Fi connections, probably because of missing " "or disabled hardware." @@ -568,125 +573,124 @@ msgstr "" "El sistema no admet connexions de wifi, probablement a causa de maquinari " "que manca o que està inhabilitat." -#: src/components/network/NetworkPage.jsx:109 +#: src/components/network/NetworkPage.jsx:71 msgid "Wi-Fi" msgstr "Wifi" #. TRANSLATORS: button label, connect to a WiFi network -#: src/components/network/NetworkPage.jsx:112 -#: src/components/network/WifiConnectionForm.jsx:130 -#: src/components/network/WifiNetworksListPage.jsx:105 +#: src/components/network/NetworkPage.jsx:74 +#: src/components/network/WifiConnectionForm.jsx:137 +#: src/components/network/WifiNetworksListPage.jsx:110 msgid "Connect" msgstr "Connecta't" -#: src/components/network/NetworkPage.jsx:119 +#: src/components/network/NetworkPage.jsx:81 #, c-format msgid "Conected to %s" msgstr "Connectat amb %s" -#: src/components/network/NetworkPage.jsx:126 +#: src/components/network/NetworkPage.jsx:88 msgid "No connected yet" msgstr "Encara no s'ha connetat." -#: src/components/network/NetworkPage.jsx:127 +#: src/components/network/NetworkPage.jsx:89 msgid "" "The system has not been configured for connecting to a Wi-Fi network yet." msgstr "" "El sistema encara no s'ha configurat per connectar-se a una xarxa de wifi." -#: src/components/network/NetworkPage.jsx:156 +#: src/components/network/NetworkPage.jsx:102 msgid "Wired" msgstr "Amb fil" -#: src/components/network/NetworkPage.jsx:160 +#: src/components/network/NetworkPage.jsx:104 msgid "No wired connections found" msgstr "No s'ha trobat cap connexió amb fil." -#: src/components/network/NetworkPage.jsx:173 -#: src/components/network/routes.js:59 +#: src/components/network/NetworkPage.jsx:114 +#: src/components/network/routes.js:33 msgid "Network" msgstr "Xarxa" #. TRANSLATORS: WiFi authentication mode -#: src/components/network/WifiConnectionForm.jsx:43 +#: src/components/network/WifiConnectionForm.jsx:45 #: src/components/storage/iscsi/InitiatorPresenter.jsx:72 msgid "None" msgstr "Cap" #. TRANSLATORS: WiFi authentication mode -#: src/components/network/WifiConnectionForm.jsx:45 +#: src/components/network/WifiConnectionForm.jsx:47 msgid "WPA & WPA2 Personal" msgstr "WPA i WPA2 personal" -#: src/components/network/WifiConnectionForm.jsx:85 -#: src/components/product/ProductRegistrationPage.jsx:68 +#: src/components/network/WifiConnectionForm.jsx:92 #: src/components/storage/ZFCPDiskForm.jsx:105 #: src/components/storage/iscsi/DiscoverForm.jsx:98 #: src/components/storage/iscsi/LoginForm.jsx:69 -#: src/components/users/FirstUserForm.jsx:217 +#: src/components/users/FirstUserForm.jsx:207 msgid "Something went wrong" msgstr "Alguna cosa ha anat malament." -#: src/components/network/WifiConnectionForm.jsx:86 +#: src/components/network/WifiConnectionForm.jsx:93 msgid "Please, review provided settings and try again." msgstr "" "Si us plau, reviseu la configuració proporcionada i torneu-ho a provar." #. TRANSLATORS: SSID (Wifi network name) configuration -#: src/components/network/WifiConnectionForm.jsx:92 -#: src/components/network/WifiConnectionForm.jsx:96 +#: src/components/network/WifiConnectionForm.jsx:99 +#: src/components/network/WifiConnectionForm.jsx:103 msgid "SSID" msgstr "SSID" #. TRANSLATORS: Wifi security configuration (password protected or not) -#: src/components/network/WifiConnectionForm.jsx:105 -#: src/components/network/WifiConnectionForm.jsx:108 +#: src/components/network/WifiConnectionForm.jsx:112 +#: src/components/network/WifiConnectionForm.jsx:115 msgid "Security" msgstr "Seguretat" #. TRANSLATORS: WiFi password -#: src/components/network/WifiConnectionForm.jsx:117 +#: src/components/network/WifiConnectionForm.jsx:124 msgid "WPA Password" msgstr "Contrasenya de WPA" #. TRANSLATORS: Wifi network status -#: src/components/network/WifiNetworksListPage.jsx:63 -#: src/components/network/WifiNetworksListPage.jsx:117 +#: src/components/network/WifiNetworksListPage.jsx:64 +#: src/components/network/WifiNetworksListPage.jsx:122 msgid "Connecting" msgstr "Connectant" #. TRANSLATORS: Wifi network status -#: src/components/network/WifiNetworksListPage.jsx:66 -#: src/components/network/WifiNetworksListPage.jsx:121 -#: src/components/network/WifiNetworksListPage.jsx:164 +#: src/components/network/WifiNetworksListPage.jsx:67 +#: src/components/network/WifiNetworksListPage.jsx:126 +#: src/components/network/WifiNetworksListPage.jsx:169 msgid "Connected" msgstr "Connectat" #. TRANSLATORS: iSCSI connection status #. TRANSLATORS: Wifi network status -#: src/components/network/WifiNetworksListPage.jsx:71 -#: src/components/network/WifiNetworksListPage.jsx:119 +#: src/components/network/WifiNetworksListPage.jsx:72 +#: src/components/network/WifiNetworksListPage.jsx:124 #: src/components/storage/iscsi/NodesPresenter.jsx:63 msgid "Disconnected" msgstr "Desconnectat" -#: src/components/network/WifiNetworksListPage.jsx:127 +#: src/components/network/WifiNetworksListPage.jsx:132 msgid "Disconnect" msgstr "Desconnecta" -#: src/components/network/WifiNetworksListPage.jsx:150 +#: src/components/network/WifiNetworksListPage.jsx:155 msgid "Connect to a hidden network" msgstr "Connecta't a una xarxa oculta" -#: src/components/network/WifiNetworksListPage.jsx:161 +#: src/components/network/WifiNetworksListPage.jsx:166 msgid "configured" msgstr "configurat" -#: src/components/network/WifiNetworksListPage.jsx:265 +#: src/components/network/WifiNetworksListPage.jsx:268 msgid "Connect to hidden network" msgstr "Connecta't a una xarxa oculta" -#: src/components/network/WifiSelectorPage.jsx:136 +#: src/components/network/WifiSelectorPage.jsx:40 msgid "Connect to a Wi-Fi network" msgstr "Connecteu-vos a una xarxa Wi-Fi" @@ -711,8 +715,6 @@ msgid "Storage" msgstr "Emmagatzematge" #: src/components/overview/OverviewPage.jsx:51 -#: src/components/overview/SoftwareSection.jsx:86 -#: src/components/software/SoftwarePage.jsx:181 #: src/components/software/routes.js:32 msgid "Software" msgstr "Programari" @@ -745,16 +747,6 @@ msgstr "" "Aquests són els paràmetres d'instal·lació més rellevants. No dubteu a " "navegar per les seccions del menú per a més detalls." -#: src/components/overview/SoftwareSection.jsx:60 -msgid "The installation will take" -msgstr "La instal·lació necessitarà" - -#. TRANSLATORS: %s will be replaced with the installation size, example: "5GiB". -#: src/components/overview/SoftwareSection.jsx:67 -#, c-format -msgid "The installation will take %s including:" -msgstr "La instal·lació necessitarà %s, incloent-hi el següent:" - #: src/components/overview/StorageSection.jsx:53 msgid "" "Install in a new Logical Volume Manager (LVM) volume group shrinking " @@ -865,19 +857,6 @@ msgstr "" msgid "Overview" msgstr "Resum" -#: src/components/product/ProductRegistrationPage.jsx:66 -#, c-format -msgid "Register %s" -msgstr "Registra %s" - -#: src/components/product/ProductRegistrationPage.jsx:73 -msgid "Registration code" -msgstr "Codi de registre" - -#: src/components/product/ProductRegistrationPage.jsx:76 -msgid "Email" -msgstr "Adreça electrònica" - #: src/components/product/ProductSelectionProgress.jsx:49 msgid "Configuring the product, please wait ..." msgstr "Configurant el producte. Espereu, si us plau..." @@ -901,65 +880,9 @@ msgstr "Dispositiu encriptat" msgid "Encryption Password" msgstr "Contrasenya d'encriptació" -#: src/components/software/SoftwarePage.jsx:85 -msgid "No additional software was selected." -msgstr "No s'ha seleccionat cap programari addicional." - -#: src/components/software/SoftwarePage.jsx:90 -msgid "The following software patterns are selected for installation:" -msgstr "" -"S'han seleccionat els patrons de programari següents per a la instal·lació:" - -#: src/components/software/SoftwarePage.jsx:105 -#: src/components/software/SoftwarePage.jsx:119 -msgid "Selected patterns" -msgstr "Patrons seleccionats" - -#: src/components/software/SoftwarePage.jsx:108 -msgid "Change selection" -msgstr "Canvia la selecció" - -#: src/components/software/SoftwarePage.jsx:123 -msgid "" -"This product does not allow to select software patterns during installation. " -"However, you can add additional software once the installation is finished." -msgstr "" -"Aquest producte no permet seleccionar patrons de programari durant la instal·" -"lació. Tanmateix, hi podeu afegir programari addicional un cop acabada la " -"instal·lació." - -#: src/components/software/SoftwarePatternsSelection.jsx:223 -msgid "auto selected" -msgstr "seleccionat automàticament" - -#: src/components/software/SoftwarePatternsSelection.jsx:241 -msgid "None of the patterns match the filter." -msgstr "Cap dels patrons coincideix amb el filtre." - -#: src/components/software/SoftwarePatternsSelection.jsx:248 -msgid "Software selection" -msgstr "Selecció de programari" - -#. TRANSLATORS: search field placeholder text -#: src/components/software/SoftwarePatternsSelection.jsx:251 -#: src/components/software/SoftwarePatternsSelection.jsx:252 -msgid "Filter by pattern title or description" -msgstr "Filtra per títol o descripció del patró" - -#. TRANSLATORS: %s will be replaced by the estimated installation size, -#. example: "728.8 MiB" -#: src/components/software/UsedSize.jsx:33 -#, c-format -msgid "Installation will take %s." -msgstr "La instal·lació necessitarà %s." - -#: src/components/software/UsedSize.jsx:37 -msgid "" -"This space includes the base system and the selected software patterns, if " -"any." -msgstr "" -"Aquest espai inclou el sistema de base i els patrons de programari " -"seleccionats, si n'hi ha." +#: src/components/questions/QuestionWithPassword.jsx:42 +msgid "Password Required" +msgstr "Cal una contrasenya." #: src/components/storage/BootConfigField.jsx:43 msgid "Change boot options" @@ -1066,7 +989,7 @@ msgstr "Identificador del canal" #: src/components/storage/ZFCPPage.jsx:325 #: src/components/storage/iscsi/NodesPresenter.jsx:102 #: src/components/storage/iscsi/NodesPresenter.jsx:123 -#: src/components/users/RootAuthMethods.jsx:159 +#: src/components/users/RootAuthMethods.jsx:124 msgid "Status" msgstr "Estat" @@ -2378,11 +2301,11 @@ msgstr "Seleccioneu què voleu fer amb cada partició." msgid "with custom actions" msgstr "amb accions personalitzades." -#: src/components/users/FirstUser.jsx:35 +#: src/components/users/FirstUser.jsx:34 msgid "No user defined yet." msgstr "Encara no s'ha definit cap usuari." -#: src/components/users/FirstUser.jsx:39 +#: src/components/users/FirstUser.jsx:38 msgid "" "Please, be aware that a user must be defined before installing the system to " "be able to log into it." @@ -2390,76 +2313,72 @@ msgstr "" "Si us plau, tingueu en compte que cal definir un usuari abans d'instal·lar " "el sistema per poder-hi iniciar sessió." -#: src/components/users/FirstUser.jsx:45 +#: src/components/users/FirstUser.jsx:44 msgid "Define a user now" msgstr "Definiu un usuari ara" -#: src/components/users/FirstUser.jsx:58 -#: src/components/users/FirstUserForm.jsx:227 +#: src/components/users/FirstUser.jsx:57 +#: src/components/users/FirstUserForm.jsx:217 msgid "Full name" msgstr "Nom complet" -#: src/components/users/FirstUser.jsx:59 -#: src/components/users/FirstUserForm.jsx:241 -#: src/components/users/FirstUserForm.jsx:246 -#: src/components/users/FirstUserForm.jsx:249 +#: src/components/users/FirstUser.jsx:58 +#: src/components/users/FirstUserForm.jsx:231 +#: src/components/users/FirstUserForm.jsx:236 +#: src/components/users/FirstUserForm.jsx:239 msgid "Username" msgstr "Nom d'usuari" -#: src/components/users/FirstUser.jsx:124 -#: src/components/users/RootAuthMethods.jsx:104 -#: src/components/users/RootAuthMethods.jsx:116 +#: src/components/users/FirstUser.jsx:89 +#: src/components/users/RootAuthMethods.jsx:78 +#: src/components/users/RootAuthMethods.jsx:90 msgid "Discard" msgstr "Descarta'l" -#: src/components/users/FirstUserForm.jsx:57 +#: src/components/users/FirstUserForm.jsx:58 msgid "Username suggestion dropdown" msgstr "Menú desplegable de suggeriments de nom d'usuari" #. TRANSLATORS: dropdown username suggestions -#: src/components/users/FirstUserForm.jsx:72 +#: src/components/users/FirstUserForm.jsx:73 msgid "Use suggested username" msgstr "Usa el nom d'usuari suggerit" -#: src/components/users/FirstUserForm.jsx:151 +#: src/components/users/FirstUserForm.jsx:144 msgid "All fields are required" msgstr "Tots els camps són obligatoris." -#: src/components/users/FirstUserForm.jsx:158 -msgid "Please, try again." -msgstr "Si us plau, torneu-ho a provar." - -#: src/components/users/FirstUserForm.jsx:211 +#: src/components/users/FirstUserForm.jsx:201 msgid "Create user" msgstr "Crea un usuari" -#: src/components/users/FirstUserForm.jsx:211 +#: src/components/users/FirstUserForm.jsx:201 msgid "Edit user" msgstr "Edita l'usuari" -#: src/components/users/FirstUserForm.jsx:231 -#: src/components/users/FirstUserForm.jsx:233 +#: src/components/users/FirstUserForm.jsx:221 +#: src/components/users/FirstUserForm.jsx:223 msgid "User full name" msgstr "Nom complet de l'usuari" -#: src/components/users/FirstUserForm.jsx:271 +#: src/components/users/FirstUserForm.jsx:261 msgid "Edit password too" msgstr "Edita també la contrasenya" -#: src/components/users/FirstUserForm.jsx:287 +#: src/components/users/FirstUserForm.jsx:277 msgid "user autologin" msgstr "entrada de sessió automàtica de l'usuari" #. TRANSLATORS: check box label -#: src/components/users/FirstUserForm.jsx:291 +#: src/components/users/FirstUserForm.jsx:281 msgid "Auto-login" msgstr "Entrada automàtica" -#: src/components/users/RootAuthMethods.jsx:35 +#: src/components/users/RootAuthMethods.jsx:36 msgid "No root authentication method defined yet." msgstr "Encara no s'ha definit cap mètode d'autenticació d'arrel." -#: src/components/users/RootAuthMethods.jsx:39 +#: src/components/users/RootAuthMethods.jsx:40 msgid "" "Please, define at least one authentication method for logging into the " "system as root." @@ -2467,54 +2386,54 @@ msgstr "" "Si us plau, definiu almenys un mètode d'autenticació per iniciar sessió al " "sistema com a arrel." -#: src/components/users/RootAuthMethods.jsx:46 +#: src/components/users/RootAuthMethods.jsx:47 msgid "Set a password" msgstr "Establiu una contrasenya" -#: src/components/users/RootAuthMethods.jsx:50 +#: src/components/users/RootAuthMethods.jsx:51 msgid "Upload a SSH Public Key" msgstr "Carrega una clau pública SSH" -#: src/components/users/RootAuthMethods.jsx:100 -#: src/components/users/RootAuthMethods.jsx:112 +#: src/components/users/RootAuthMethods.jsx:74 +#: src/components/users/RootAuthMethods.jsx:86 msgid "Set" msgstr "Estableix" -#: src/components/users/RootAuthMethods.jsx:132 +#: src/components/users/RootAuthMethods.jsx:97 msgid "Already set" msgstr "Ja s'ha establert" -#: src/components/users/RootAuthMethods.jsx:132 -#: src/components/users/RootAuthMethods.jsx:136 +#: src/components/users/RootAuthMethods.jsx:97 +#: src/components/users/RootAuthMethods.jsx:101 msgid "Not set" msgstr "No s'ha establert" #. TRANSLATORS: table header, user authentication method -#: src/components/users/RootAuthMethods.jsx:157 +#: src/components/users/RootAuthMethods.jsx:122 msgid "Method" msgstr "Mètode" -#: src/components/users/RootAuthMethods.jsx:174 +#: src/components/users/RootAuthMethods.jsx:139 msgid "SSH Key" msgstr "Clau SSH" -#: src/components/users/RootAuthMethods.jsx:193 +#: src/components/users/RootAuthMethods.jsx:158 msgid "Change the root password" msgstr "Canvia la contrasenya d'arrel" -#: src/components/users/RootAuthMethods.jsx:193 +#: src/components/users/RootAuthMethods.jsx:158 msgid "Set a root password" msgstr "Establiu una contrasenya d'arrel" -#: src/components/users/RootAuthMethods.jsx:203 +#: src/components/users/RootAuthMethods.jsx:168 msgid "Edit the SSH Public Key for root" msgstr "Edita la clau pública SSH per a l'arrel" -#: src/components/users/RootAuthMethods.jsx:204 +#: src/components/users/RootAuthMethods.jsx:169 msgid "Add a SSH Public Key for root" msgstr "Afegiu una clau pública SSH per a l'arrel" -#: src/components/users/RootPasswordPopup.jsx:43 +#: src/components/users/RootPasswordPopup.jsx:44 msgid "Root password" msgstr "Contrasenya d'arrel" @@ -2548,6 +2467,72 @@ msgstr "Usuari primer" msgid "Root authentication" msgstr "Autenticació d'arrel" +#, c-format +#~ msgid "Register %s" +#~ msgstr "Registra %s" + +#~ msgid "Registration code" +#~ msgstr "Codi de registre" + +#~ msgid "Email" +#~ msgstr "Adreça electrònica" + +#~ msgid "The installation will take" +#~ msgstr "La instal·lació necessitarà" + +#, c-format +#~ msgid "The installation will take %s including:" +#~ msgstr "La instal·lació necessitarà %s, incloent-hi el següent:" + +#~ msgid "No additional software was selected." +#~ msgstr "No s'ha seleccionat cap programari addicional." + +#~ msgid "The following software patterns are selected for installation:" +#~ msgstr "" +#~ "S'han seleccionat els patrons de programari següents per a la " +#~ "instal·lació:" + +#~ msgid "Selected patterns" +#~ msgstr "Patrons seleccionats" + +#~ msgid "Change selection" +#~ msgstr "Canvia la selecció" + +#~ msgid "" +#~ "This product does not allow to select software patterns during " +#~ "installation. However, you can add additional software once the " +#~ "installation is finished." +#~ msgstr "" +#~ "Aquest producte no permet seleccionar patrons de programari durant la " +#~ "instal·lació. Tanmateix, hi podeu afegir programari addicional un cop " +#~ "acabada la instal·lació." + +#~ msgid "auto selected" +#~ msgstr "seleccionat automàticament" + +#~ msgid "None of the patterns match the filter." +#~ msgstr "Cap dels patrons coincideix amb el filtre." + +#~ msgid "Software selection" +#~ msgstr "Selecció de programari" + +#~ msgid "Filter by pattern title or description" +#~ msgstr "Filtra per títol o descripció del patró" + +#, c-format +#~ msgid "Installation will take %s." +#~ msgstr "La instal·lació necessitarà %s." + +#~ msgid "" +#~ "This space includes the base system and the selected software patterns, " +#~ "if any." +#~ msgstr "" +#~ "Aquest espai inclou el sistema de base i els patrons de programari " +#~ "seleccionats, si n'hi ha." + +#~ msgid "Please, try again." +#~ msgstr "Si us plau, torneu-ho a provar." + #~ msgid "Reading file..." #~ msgstr "Llegint el fitxer..." diff --git a/web/po/cs.po b/web/po/cs.po index 836ba34bab..b89e698f18 100644 --- a/web/po/cs.po +++ b/web/po/cs.po @@ -8,11 +8,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-18 02:24+0000\n" -"PO-Revision-Date: 2024-07-20 17:47+0000\n" +"POT-Creation-Date: 2024-07-28 02:29+0000\n" +"PO-Revision-Date: 2024-07-25 08:46+0000\n" "Last-Translator: Aleš Kastner \n" -"Language-Team: Czech " -"\n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,6 @@ msgid "For more information, please visit the project's repository at %s." msgstr "Další informace najdete v úložišti projektu na %s." #: src/components/core/About.jsx:92 src/components/core/LogsButton.jsx:126 -#: src/components/software/SoftwarePatternsSelection.jsx:268 msgid "Close" msgstr "Zavřít" @@ -84,7 +83,7 @@ msgstr "Pokračovat" #. TRANSLATORS: button label #: src/components/core/InstallButton.jsx:49 src/components/core/Page.jsx:90 #: src/components/core/Popup.jsx:132 -#: src/components/network/WifiConnectionForm.jsx:134 +#: src/components/network/WifiConnectionForm.jsx:141 msgid "Cancel" msgstr "Zrušit/Storno" @@ -179,14 +178,13 @@ msgstr "U instalace na dálku nelze změnit" #: src/components/core/InstallerOptions.jsx:142 #: src/components/network/IpSettingsForm.jsx:228 -#: src/components/product/ProductRegistrationPage.jsx:85 #: src/components/storage/BootSelection.jsx:250 #: src/components/storage/DeviceSelection.jsx:254 #: src/components/storage/EncryptionSettingsDialog.jsx:155 #: src/components/storage/SpacePolicySelection.jsx:200 #: src/components/storage/VolumeDialog.jsx:794 #: src/components/storage/ZFCPPage.jsx:528 -#: src/components/users/FirstUserForm.jsx:303 +#: src/components/users/FirstUserForm.jsx:293 msgid "Accept" msgstr "Přijmout" @@ -261,11 +259,13 @@ msgstr "Stahování záznamů se nezdařilo. Zkuste to znovu." msgid "Passwords do not match" msgstr "Hesla se neshodují" +#. TRANSLATORS: field label #: src/components/core/PasswordAndConfirmationInput.jsx:79 -#: src/components/network/WifiConnectionForm.jsx:121 +#: src/components/network/WifiConnectionForm.jsx:128 +#: src/components/questions/QuestionWithPassword.jsx:48 #: src/components/storage/iscsi/AuthFields.jsx:90 #: src/components/storage/iscsi/AuthFields.jsx:94 -#: src/components/users/RootAuthMethods.jsx:165 +#: src/components/users/RootAuthMethods.jsx:130 msgid "Password" msgstr "Heslo" @@ -343,51 +343,51 @@ msgstr "Výběr klávesnice" #: src/components/l10n/TimezoneSelection.jsx:125 #: src/components/product/ProductSelectionPage.jsx:90 msgid "Select" -msgstr "" +msgstr "Zvolit" #: src/components/l10n/L10nPage.jsx:53 #: src/components/overview/L10nSection.jsx:37 src/routes/l10n.js:38 msgid "Localization" -msgstr "" +msgstr "Lokalizace" #: src/components/l10n/L10nPage.jsx:61 src/components/l10n/L10nPage.jsx:70 #: src/components/l10n/L10nPage.jsx:80 msgid "Not selected yet" -msgstr "" +msgstr "Dosud nevybráno" #: src/components/l10n/L10nPage.jsx:64 src/components/l10n/L10nPage.jsx:72 #: src/components/l10n/L10nPage.jsx:83 -#: src/components/network/NetworkPage.jsx:112 +#: src/components/network/NetworkPage.jsx:74 #: src/components/storage/InstallationDeviceField.jsx:108 #: src/components/storage/ProposalActionsSummary.jsx:238 -#: src/components/users/RootAuthMethods.jsx:100 -#: src/components/users/RootAuthMethods.jsx:112 +#: src/components/users/RootAuthMethods.jsx:74 +#: src/components/users/RootAuthMethods.jsx:86 msgid "Change" -msgstr "" +msgstr "Změnit" #: src/components/l10n/L10nPage.jsx:70 msgid "Keyboard" -msgstr "" +msgstr "Klávesnice" #: src/components/l10n/L10nPage.jsx:79 msgid "Time zone" -msgstr "" +msgstr "Časové pásmo" #: src/components/l10n/LocaleSelection.jsx:39 msgid "Filter by language, territory or locale code" -msgstr "" +msgstr "Filtrování podle jazyka, území nebo kódu lokality" #: src/components/l10n/LocaleSelection.jsx:72 msgid "None of the locales match the filter." -msgstr "" +msgstr "Žádné umístění neodpovídá filtru." #: src/components/l10n/LocaleSelection.jsx:78 msgid "Locale selection" -msgstr "" +msgstr "Výběr lokality" #: src/components/l10n/TimezoneSelection.jsx:64 msgid "Filter by territory, time zone code or UTC offset" -msgstr "" +msgstr "Filtrování podle území, kódu časového pásma nebo posunu od UTC" #: src/components/l10n/TimezoneSelection.jsx:101 msgid "None of the time zones match the filter." @@ -440,7 +440,7 @@ msgstr "Seznam údajů o adresách" #. TRANSLATORS: input field for the iSCSI initiator name #. TRANSLATORS: table header #: src/components/network/ConnectionsTable.jsx:64 -#: src/components/network/ConnectionsTable.jsx:92 +#: src/components/network/ConnectionsTable.jsx:93 #: src/components/storage/ZFCPPage.jsx:381 #: src/components/storage/iscsi/InitiatorForm.jsx:52 #: src/components/storage/iscsi/InitiatorPresenter.jsx:68 @@ -452,242 +452,248 @@ msgstr "Název" #. TRANSLATORS: table header #: src/components/network/ConnectionsTable.jsx:66 -#: src/components/network/ConnectionsTable.jsx:93 +#: src/components/network/ConnectionsTable.jsx:94 msgid "IP addresses" msgstr "IP adresy" -#: src/components/network/ConnectionsTable.jsx:74 -#: src/components/network/WifiNetworksListPage.jsx:107 -#: src/components/network/WifiNetworksListPage.jsx:130 +#. TRANSLATORS: table header aria label +#: src/components/network/ConnectionsTable.jsx:68 +msgid "Connection actions" +msgstr "Akce připojení" + +#: src/components/network/ConnectionsTable.jsx:75 +#: src/components/network/WifiNetworksListPage.jsx:112 +#: src/components/network/WifiNetworksListPage.jsx:135 #: src/components/storage/PartitionsField.jsx:347 #: src/components/storage/iscsi/InitiatorPresenter.jsx:49 #: src/components/storage/iscsi/NodesPresenter.jsx:73 -#: src/components/users/FirstUser.jsx:120 +#: src/components/users/FirstUser.jsx:85 msgid "Edit" msgstr "Upravit" #. TRANSLATORS: %s is replaced by a network connection name -#: src/components/network/ConnectionsTable.jsx:77 +#: src/components/network/ConnectionsTable.jsx:78 #: src/components/network/IpSettingsForm.jsx:151 #, c-format msgid "Edit connection %s" -msgstr "" +msgstr "Upravit připojení %s" -#: src/components/network/ConnectionsTable.jsx:81 -#: src/components/network/WifiNetworksListPage.jsx:109 -#: src/components/network/WifiNetworksListPage.jsx:137 +#: src/components/network/ConnectionsTable.jsx:82 +#: src/components/network/WifiNetworksListPage.jsx:114 +#: src/components/network/WifiNetworksListPage.jsx:142 msgid "Forget" -msgstr "" +msgstr "Zapomenout" #. TRANSLATORS: %s is replaced by a network connection name -#: src/components/network/ConnectionsTable.jsx:83 +#: src/components/network/ConnectionsTable.jsx:84 #, c-format msgid "Forget connection %s" -msgstr "" +msgstr "Zapomenout připojení %s" #. TRANSLATORS: %s is replaced by a network connection name -#: src/components/network/ConnectionsTable.jsx:98 +#: src/components/network/ConnectionsTable.jsx:99 #, c-format msgid "Actions for connection %s" -msgstr "" +msgstr "Akce pro připojení %s" #. TRANSLATORS: input field name #: src/components/network/DnsDataList.jsx:81 #: src/components/network/DnsDataList.jsx:82 msgid "Server IP" -msgstr "" +msgstr "IP serveru" #: src/components/network/DnsDataList.jsx:104 msgid "Add DNS" -msgstr "" +msgstr "Přidat DNS" #. TRANSLATORS: button label #: src/components/network/DnsDataList.jsx:104 msgid "Add another DNS" -msgstr "" +msgstr "Přidat další DNS" #: src/components/network/DnsDataList.jsx:109 msgid "DNS" -msgstr "" +msgstr "DNS" #. TRANSLATORS: input field name #: src/components/network/IpPrefixInput.jsx:33 msgid "IP prefix or netmask" -msgstr "" +msgstr "Předpona IP nebo maska sítě" #. TRANSLATORS: error message #: src/components/network/IpSettingsForm.jsx:104 msgid "At least one address must be provided for selected mode" -msgstr "" +msgstr "Pro zvolený režim musí být uvedena alespoň jedna adresa" #. TRANSLATORS: network connection mode (automatic via DHCP or manual with static IP) #: src/components/network/IpSettingsForm.jsx:160 #: src/components/network/IpSettingsForm.jsx:165 #: src/components/network/IpSettingsForm.jsx:167 msgid "Mode" -msgstr "" +msgstr "Režim" #: src/components/network/IpSettingsForm.jsx:174 msgid "Automatic (DHCP)" -msgstr "" +msgstr "Automatický (DHCP)" #. TRANSLATORS: manual network configuration mode with a static IP address #: src/components/network/IpSettingsForm.jsx:177 #: src/components/storage/iscsi/NodeStartupOptions.js:25 msgid "Manual" -msgstr "" +msgstr "Manuální" #. TRANSLATORS: network gateway configuration #: src/components/network/IpSettingsForm.jsx:185 #: src/components/network/IpSettingsForm.jsx:188 msgid "Gateway" -msgstr "" +msgstr "Brána" #: src/components/network/IpSettingsForm.jsx:196 msgid "Gateway can be defined only in 'Manual' mode" -msgstr "" +msgstr "Bránu lze definovat pouze v režimu 'Manual'" -#: src/components/network/NetworkPage.jsx:93 +#: src/components/network/NetworkPage.jsx:55 msgid "No Wi-Fi supported" -msgstr "" +msgstr "Wi-Fi není podporováno" -#: src/components/network/NetworkPage.jsx:95 +#: src/components/network/NetworkPage.jsx:57 msgid "" "The system does not support Wi-Fi connections, probably because of missing " "or disabled hardware." msgstr "" +"Systém nepodporuje připojení Wi-Fi, pravděpodobně chybí hardware nebo je " +"zakázán." -#: src/components/network/NetworkPage.jsx:109 +#: src/components/network/NetworkPage.jsx:71 msgid "Wi-Fi" -msgstr "" +msgstr "Wi-Fi" #. TRANSLATORS: button label, connect to a WiFi network -#: src/components/network/NetworkPage.jsx:112 -#: src/components/network/WifiConnectionForm.jsx:130 -#: src/components/network/WifiNetworksListPage.jsx:105 +#: src/components/network/NetworkPage.jsx:74 +#: src/components/network/WifiConnectionForm.jsx:137 +#: src/components/network/WifiNetworksListPage.jsx:110 msgid "Connect" -msgstr "" +msgstr "Připojit" -#: src/components/network/NetworkPage.jsx:119 +#: src/components/network/NetworkPage.jsx:81 #, c-format msgid "Conected to %s" -msgstr "" +msgstr "Připojit k %s" -#: src/components/network/NetworkPage.jsx:126 +#: src/components/network/NetworkPage.jsx:88 msgid "No connected yet" -msgstr "" +msgstr "Dosud nepřipojeno" -#: src/components/network/NetworkPage.jsx:127 +#: src/components/network/NetworkPage.jsx:89 msgid "" "The system has not been configured for connecting to a Wi-Fi network yet." -msgstr "" +msgstr "Systém zatím nebyl konfigurován pro připojení k síti Wi-Fi." -#: src/components/network/NetworkPage.jsx:156 +#: src/components/network/NetworkPage.jsx:102 msgid "Wired" -msgstr "" +msgstr "Připojení kabelem (Ethernet)" -#: src/components/network/NetworkPage.jsx:160 +#: src/components/network/NetworkPage.jsx:104 msgid "No wired connections found" -msgstr "" +msgstr "Nebyla nalezena žádná kabelová připojení" -#: src/components/network/NetworkPage.jsx:173 -#: src/components/network/routes.js:59 +#: src/components/network/NetworkPage.jsx:114 +#: src/components/network/routes.js:33 msgid "Network" -msgstr "" +msgstr "Síť" #. TRANSLATORS: WiFi authentication mode -#: src/components/network/WifiConnectionForm.jsx:43 +#: src/components/network/WifiConnectionForm.jsx:45 #: src/components/storage/iscsi/InitiatorPresenter.jsx:72 msgid "None" -msgstr "" +msgstr "Žádná" #. TRANSLATORS: WiFi authentication mode -#: src/components/network/WifiConnectionForm.jsx:45 +#: src/components/network/WifiConnectionForm.jsx:47 msgid "WPA & WPA2 Personal" -msgstr "" +msgstr "WPA & WPA2 Osobní" -#: src/components/network/WifiConnectionForm.jsx:85 -#: src/components/product/ProductRegistrationPage.jsx:68 +#: src/components/network/WifiConnectionForm.jsx:92 #: src/components/storage/ZFCPDiskForm.jsx:105 #: src/components/storage/iscsi/DiscoverForm.jsx:98 #: src/components/storage/iscsi/LoginForm.jsx:69 -#: src/components/users/FirstUserForm.jsx:217 +#: src/components/users/FirstUserForm.jsx:207 msgid "Something went wrong" -msgstr "" +msgstr "Něco se nezdařilo" -#: src/components/network/WifiConnectionForm.jsx:86 +#: src/components/network/WifiConnectionForm.jsx:93 msgid "Please, review provided settings and try again." -msgstr "" +msgstr "Zkontrolujte poskytnutá nastavení a zkuste to znovu." #. TRANSLATORS: SSID (Wifi network name) configuration -#: src/components/network/WifiConnectionForm.jsx:92 -#: src/components/network/WifiConnectionForm.jsx:96 +#: src/components/network/WifiConnectionForm.jsx:99 +#: src/components/network/WifiConnectionForm.jsx:103 msgid "SSID" -msgstr "" +msgstr "SSID" #. TRANSLATORS: Wifi security configuration (password protected or not) -#: src/components/network/WifiConnectionForm.jsx:105 -#: src/components/network/WifiConnectionForm.jsx:108 +#: src/components/network/WifiConnectionForm.jsx:112 +#: src/components/network/WifiConnectionForm.jsx:115 msgid "Security" -msgstr "" +msgstr "Zabezpečení" #. TRANSLATORS: WiFi password -#: src/components/network/WifiConnectionForm.jsx:117 +#: src/components/network/WifiConnectionForm.jsx:124 msgid "WPA Password" -msgstr "" +msgstr "Heslo k WPA" #. TRANSLATORS: Wifi network status -#: src/components/network/WifiNetworksListPage.jsx:63 -#: src/components/network/WifiNetworksListPage.jsx:117 +#: src/components/network/WifiNetworksListPage.jsx:64 +#: src/components/network/WifiNetworksListPage.jsx:122 msgid "Connecting" -msgstr "" +msgstr "Připojuji" #. TRANSLATORS: Wifi network status -#: src/components/network/WifiNetworksListPage.jsx:66 -#: src/components/network/WifiNetworksListPage.jsx:121 -#: src/components/network/WifiNetworksListPage.jsx:164 +#: src/components/network/WifiNetworksListPage.jsx:67 +#: src/components/network/WifiNetworksListPage.jsx:126 +#: src/components/network/WifiNetworksListPage.jsx:169 msgid "Connected" -msgstr "" +msgstr "Připojeno" #. TRANSLATORS: iSCSI connection status #. TRANSLATORS: Wifi network status -#: src/components/network/WifiNetworksListPage.jsx:71 -#: src/components/network/WifiNetworksListPage.jsx:119 +#: src/components/network/WifiNetworksListPage.jsx:72 +#: src/components/network/WifiNetworksListPage.jsx:124 #: src/components/storage/iscsi/NodesPresenter.jsx:63 msgid "Disconnected" -msgstr "" +msgstr "Odpojeno" -#: src/components/network/WifiNetworksListPage.jsx:127 +#: src/components/network/WifiNetworksListPage.jsx:132 msgid "Disconnect" -msgstr "" +msgstr "Odpojit" -#: src/components/network/WifiNetworksListPage.jsx:150 +#: src/components/network/WifiNetworksListPage.jsx:155 msgid "Connect to a hidden network" -msgstr "" +msgstr "Připojení ke skryté síti" -#: src/components/network/WifiNetworksListPage.jsx:161 +#: src/components/network/WifiNetworksListPage.jsx:166 msgid "configured" -msgstr "" +msgstr "konfigurováno" -#: src/components/network/WifiNetworksListPage.jsx:265 +#: src/components/network/WifiNetworksListPage.jsx:268 msgid "Connect to hidden network" -msgstr "" +msgstr "Připojit ke skryté síti" -#: src/components/network/WifiSelectorPage.jsx:136 +#: src/components/network/WifiSelectorPage.jsx:40 msgid "Connect to a Wi-Fi network" -msgstr "" +msgstr "Připojení k síti Wi-Fi" #. TRANSLATORS: %s will be replaced by a language name and territory, example: #. "English (United States)". #: src/components/overview/L10nSection.jsx:33 #, c-format msgid "The system will use %s as its default language." -msgstr "" +msgstr "Systém použije jako výchozí jazyk %s." #: src/components/overview/OverviewPage.jsx:49 #: src/components/users/UsersPage.jsx:36 src/components/users/routes.js:32 msgid "Users" -msgstr "" +msgstr "Uživatelé" #: src/components/overview/OverviewPage.jsx:50 #: src/components/overview/StorageSection.jsx:111 @@ -695,72 +701,70 @@ msgstr "" #: src/components/storage/StoragePage.jsx:30 #: src/components/storage/routes.js:58 msgid "Storage" -msgstr "" +msgstr "Paměť" #: src/components/overview/OverviewPage.jsx:51 -#: src/components/overview/SoftwareSection.jsx:86 -#: src/components/software/SoftwarePage.jsx:181 #: src/components/software/routes.js:32 msgid "Software" -msgstr "" +msgstr "Software" #: src/components/overview/OverviewPage.jsx:56 msgid "Ready for installation" -msgstr "" +msgstr "Připraveno k instalaci" #: src/components/overview/OverviewPage.jsx:102 msgid "Installation" -msgstr "" +msgstr "Instalace" #: src/components/overview/OverviewPage.jsx:103 msgid "Before installing, please check the following problems." -msgstr "" +msgstr "Před instalací zkontrolujte tyto problémy." #: src/components/overview/OverviewPage.jsx:114 msgid "" "Take your time to check your configuration before starting the installation " "process." -msgstr "" +msgstr "Před zahájením instalace zkontrolujte konfiguraci." #: src/components/overview/OverviewPage.jsx:123 msgid "" "These are the most relevant installation settings. Feel free to browse the " "sections in the menu for further details." msgstr "" - -#: src/components/overview/SoftwareSection.jsx:60 -msgid "The installation will take" -msgstr "" - -#. TRANSLATORS: %s will be replaced with the installation size, example: "5GiB". -#: src/components/overview/SoftwareSection.jsx:67 -#, c-format -msgid "The installation will take %s including:" -msgstr "" +"Toto je nejdůležitější nastavení instalace. Další podrobnosti najdete v " +"sekcích v nabídce." #: src/components/overview/StorageSection.jsx:53 msgid "" "Install in a new Logical Volume Manager (LVM) volume group shrinking " "existing partitions at the underlying devices as needed" msgstr "" +"Instalace do nové skupiny svazků LVM (Logical Volume Manager), která podle " +"potřeby zmenší existující oddíly na základních zařízeních" #: src/components/overview/StorageSection.jsx:58 msgid "" "Install in a new Logical Volume Manager (LVM) volume group without modifying " "the partitions at the underlying devices" msgstr "" +"Instalace do nové skupiny svazků Správce logických svazků (LVM) bez úpravy " +"oddílů v základních zařízeních" #: src/components/overview/StorageSection.jsx:63 msgid "" "Install in a new Logical Volume Manager (LVM) volume group deleting all the " "content of the underlying devices" msgstr "" +"Instalace do nové skupiny svazků LVM (Logical Volume Manager), která " +"odstraní veškerý obsah základních zařízení" #: src/components/overview/StorageSection.jsx:68 msgid "" "Install in a new Logical Volume Manager (LVM) volume group using a custom " "strategy to find the needed space at the underlying devices" msgstr "" +"Instalace do nové skupiny svazků LVM (Logical Volume Manager) pomocí vlastní " +"strategie pro nalezení potřebného místa v základních zařízeních" #: src/components/overview/StorageSection.jsx:86 #, c-format @@ -768,6 +772,8 @@ msgid "" "Install in a new Logical Volume Manager (LVM) volume group on %s shrinking " "existing partitions as needed" msgstr "" +"Instalace do nové skupiny svazků LVM (Logical Volume Manager) na %s se " +"zmenšením stávajících oddílů podle potřeby" #: src/components/overview/StorageSection.jsx:92 #, c-format @@ -775,6 +781,8 @@ msgid "" "Install in a new Logical Volume Manager (LVM) volume group on %s without " "modifying existing partitions" msgstr "" +"Instalace do nové skupiny svazků LVM (Logical Volume Manager) na %s bez " +"úpravy existujících oddílů" #: src/components/overview/StorageSection.jsx:98 #, c-format @@ -782,6 +790,8 @@ msgid "" "Install in a new Logical Volume Manager (LVM) volume group on %s deleting " "all its content" msgstr "" +"Instalace do nové skupiny svazků LVM (Logical Volume Manager) na %s s " +"odstraněním veškerého jejich obsahu" #: src/components/overview/StorageSection.jsx:104 #, c-format @@ -789,11 +799,13 @@ msgid "" "Install in a new Logical Volume Manager (LVM) volume group on %s using a " "custom strategy to find the needed space" msgstr "" +"Instalace do nové skupiny svazků LVM (Logical Volume Manager) na %s s " +"použitím vlastní strategie pro nalezení potřebného místa" #: src/components/overview/StorageSection.jsx:179 #: src/components/storage/InstallationDeviceField.jsx:66 msgid "No device selected yet" -msgstr "" +msgstr "Zatím nebylo vybráno žádné zařízení" #. TRANSLATORS: %s will be replaced by the device name and its size, #. example: "/dev/sda, 20 GiB" @@ -801,20 +813,21 @@ msgstr "" #, c-format msgid "Install using device %s shrinking existing partitions as needed" msgstr "" +"Instalace pomocí zařízení %s se zmenšením stávajících oddílů podle potřeby" #. TRANSLATORS: %s will be replaced by the device name and its size, #. example: "/dev/sda, 20 GiB" #: src/components/overview/StorageSection.jsx:190 #, c-format msgid "Install using device %s without modifying existing partitions" -msgstr "" +msgstr "Instalace pomocí zařízení %s bez úpravy stávajících oddílů" #. TRANSLATORS: %s will be replaced by the device name and its size, #. example: "/dev/sda, 20 GiB" #: src/components/overview/StorageSection.jsx:194 #, c-format msgid "Install using device %s and deleting all its content" -msgstr "" +msgstr "Instalace pomocí zařízení %s a odstranění veškerého jeho obsahu" #. TRANSLATORS: %s will be replaced by the device name and its size, #. example: "/dev/sda, 20 GiB" @@ -822,202 +835,145 @@ msgstr "" #, c-format msgid "Install using device %s with a custom strategy to find the needed space" msgstr "" +"Instalace pomocí zařízení %s s vlastní strategií pro vyhledání potřebného " +"místa" #: src/components/overview/routes.js:30 msgid "Overview" -msgstr "" - -#: src/components/product/ProductRegistrationPage.jsx:66 -#, c-format -msgid "Register %s" -msgstr "" - -#: src/components/product/ProductRegistrationPage.jsx:73 -msgid "Registration code" -msgstr "" - -#: src/components/product/ProductRegistrationPage.jsx:76 -msgid "Email" -msgstr "" +msgstr "Přehled" #: src/components/product/ProductSelectionProgress.jsx:49 msgid "Configuring the product, please wait ..." -msgstr "" +msgstr "Konfigurace produktu, počkejte prosím..." #: src/components/questions/GenericQuestion.jsx:35 #: src/components/questions/LuksActivationQuestion.jsx:60 msgid "Question" -msgstr "" +msgstr "Dotaz" #. TRANSLATORS: error message, user entered a wrong password #: src/components/questions/LuksActivationQuestion.jsx:34 msgid "Given encryption password didn't work" -msgstr "" +msgstr "Zadané šifrovací heslo nefungovalo" #: src/components/questions/LuksActivationQuestion.jsx:59 msgid "Encrypted Device" -msgstr "" +msgstr "Šifrované zařízení" #. TRANSLATORS: field label #: src/components/questions/LuksActivationQuestion.jsx:67 msgid "Encryption Password" -msgstr "" - -#: src/components/software/SoftwarePage.jsx:85 -msgid "No additional software was selected." -msgstr "" - -#: src/components/software/SoftwarePage.jsx:90 -msgid "The following software patterns are selected for installation:" -msgstr "" - -#: src/components/software/SoftwarePage.jsx:105 -#: src/components/software/SoftwarePage.jsx:119 -msgid "Selected patterns" -msgstr "" - -#: src/components/software/SoftwarePage.jsx:108 -msgid "Change selection" -msgstr "" - -#: src/components/software/SoftwarePage.jsx:123 -msgid "" -"This product does not allow to select software patterns during installation. " -"However, you can add additional software once the installation is finished." -msgstr "" - -#: src/components/software/SoftwarePatternsSelection.jsx:223 -msgid "auto selected" -msgstr "" - -#: src/components/software/SoftwarePatternsSelection.jsx:241 -msgid "None of the patterns match the filter." -msgstr "" - -#: src/components/software/SoftwarePatternsSelection.jsx:248 -msgid "Software selection" -msgstr "" - -#. TRANSLATORS: search field placeholder text -#: src/components/software/SoftwarePatternsSelection.jsx:251 -#: src/components/software/SoftwarePatternsSelection.jsx:252 -msgid "Filter by pattern title or description" -msgstr "" - -#. TRANSLATORS: %s will be replaced by the estimated installation size, -#. example: "728.8 MiB" -#: src/components/software/UsedSize.jsx:33 -#, c-format -msgid "Installation will take %s." -msgstr "" +msgstr "Heslo pro šifrování" -#: src/components/software/UsedSize.jsx:37 -msgid "" -"This space includes the base system and the selected software patterns, if " -"any." -msgstr "" +#: src/components/questions/QuestionWithPassword.jsx:42 +msgid "Password Required" +msgstr "Vyžadováno heslo" #: src/components/storage/BootConfigField.jsx:43 msgid "Change boot options" -msgstr "" +msgstr "Změna možností spouštění systému" #: src/components/storage/BootConfigField.jsx:81 msgid "Installation will not configure partitions for booting." -msgstr "" +msgstr "Instalace nenakonfiguruje oddíly pro zavádění systému." #: src/components/storage/BootConfigField.jsx:85 msgid "" "Installation will configure partitions for booting at the installation disk." -msgstr "" +msgstr "Instalace nakonfiguruje oddíly pro zavádění na instalačním disku." #: src/components/storage/BootConfigField.jsx:89 #, c-format msgid "Installation will configure partitions for booting at %s." -msgstr "" +msgstr "Instalace nakonfiguruje oddíly pro zavádění v %s." #: src/components/storage/BootSelection.jsx:132 msgid "" "To ensure the new system is able to boot, the installer may need to create " "or configure some partitions in the appropriate disk." msgstr "" +"Aby bylo možné nový systém spustit, může být nutné, aby instalační program " +"vytvořil nebo nakonfiguroval některé oddíly na příslušném disku." #: src/components/storage/BootSelection.jsx:138 msgid "Partitions to boot will be allocated at the installation disk." -msgstr "" +msgstr "Oddíly pro zavádění budou přiděleny na instalačním disku." #. TRANSLATORS: %s is replaced by a device name and size (e.g., "/dev/sda, 500GiB") #: src/components/storage/BootSelection.jsx:143 #, c-format msgid "Partitions to boot will be allocated at the installation disk (%s)." -msgstr "" +msgstr "Oddíly pro zavádění budou přiděleny na instalačním disku (%s)." #: src/components/storage/BootSelection.jsx:159 msgid "Select booting partition" -msgstr "" +msgstr "Výběr zaváděcího oddílu" #: src/components/storage/BootSelection.jsx:180 #: src/components/storage/iscsi/NodeStartupOptions.js:27 msgid "Automatic" -msgstr "" +msgstr "Automatický" #: src/components/storage/BootSelection.jsx:198 msgid "Select a disk" -msgstr "" +msgstr "Výběr disku" #: src/components/storage/BootSelection.jsx:204 msgid "Partitions to boot will be allocated at the following device." -msgstr "" +msgstr "Oddíly pro zavádění budou přiděleny na tomto zařízení." #: src/components/storage/BootSelection.jsx:207 msgid "Choose a disk for placing the boot loader" -msgstr "" +msgstr "Výběr disku pro umístění zavaděče" #: src/components/storage/BootSelection.jsx:230 msgid "Do not configure" -msgstr "" +msgstr "Nekonfigurujte" #: src/components/storage/BootSelection.jsx:236 msgid "" "No partitions will be automatically configured for booting. Use with caution." msgstr "" +"Žádné oddíly nebudou automaticky konfigurovány pro zavádění systému. " +"Používejte opatrně." #: src/components/storage/DASDFormatProgress.jsx:60 msgid "Waiting for progress report" -msgstr "" +msgstr "Čekám na zprávu o postupu" #: src/components/storage/DASDFormatProgress.jsx:67 msgid "Formatting DASD devices" -msgstr "" +msgstr "Formátuji zařízení DASD" #: src/components/storage/DASDTable.jsx:62 #: src/components/storage/ZFCPPage.jsx:340 #: src/components/storage/iscsi/InitiatorPresenter.jsx:71 #: src/components/storage/iscsi/NodesPresenter.jsx:101 msgid "No" -msgstr "" +msgstr "Ne" #: src/components/storage/DASDTable.jsx:62 #: src/components/storage/ZFCPPage.jsx:340 #: src/components/storage/iscsi/InitiatorPresenter.jsx:71 #: src/components/storage/iscsi/NodesPresenter.jsx:101 msgid "Yes" -msgstr "" +msgstr "Ano" #: src/components/storage/DASDTable.jsx:69 #: src/components/storage/ZFCPDiskForm.jsx:110 #: src/components/storage/ZFCPPage.jsx:324 #: src/components/storage/ZFCPPage.jsx:382 msgid "Channel ID" -msgstr "" +msgstr "ID kanálu" #. TRANSLATORS: table header #: src/components/storage/DASDTable.jsx:70 #: src/components/storage/ZFCPPage.jsx:325 #: src/components/storage/iscsi/NodesPresenter.jsx:102 #: src/components/storage/iscsi/NodesPresenter.jsx:123 -#: src/components/users/RootAuthMethods.jsx:159 +#: src/components/users/RootAuthMethods.jsx:124 msgid "Status" -msgstr "" +msgstr "Stav" #: src/components/storage/DASDTable.jsx:71 #: src/components/storage/DeviceSelectorTable.jsx:197 @@ -1025,81 +981,83 @@ msgstr "" #: src/components/storage/SpaceActionsTable.jsx:200 #: src/components/storage/VolumeLocationSelectorTable.jsx:107 msgid "Device" -msgstr "" +msgstr "Zařízení" #: src/components/storage/DASDTable.jsx:72 msgid "Type" -msgstr "" +msgstr "Typ" #. TRANSLATORS: table header, the column contains "Yes"/"No" values #. for the DIAG access mode (special disk access mode on IBM mainframes), #. usually keep untranslated #: src/components/storage/DASDTable.jsx:76 msgid "DIAG" -msgstr "" +msgstr "DIAG" #: src/components/storage/DASDTable.jsx:77 msgid "Formatted" -msgstr "" +msgstr "Formátován" #: src/components/storage/DASDTable.jsx:78 msgid "Partition Info" -msgstr "" +msgstr "Údaje o oddílech" #. TRANSLATORS: drop down menu label #: src/components/storage/DASDTable.jsx:115 msgid "Perform an action" -msgstr "" +msgstr "Provést akci" #: src/components/storage/DASDTable.jsx:122 #: src/components/storage/ZFCPPage.jsx:353 msgid "Activate" -msgstr "" +msgstr "Aktivace" #: src/components/storage/DASDTable.jsx:126 #: src/components/storage/ZFCPPage.jsx:395 msgid "Deactivate" -msgstr "" +msgstr "Deaktivace" #: src/components/storage/DASDTable.jsx:131 msgid "Set DIAG On" -msgstr "" +msgstr "Zapnout DIAG" #: src/components/storage/DASDTable.jsx:135 msgid "Set DIAG Off" -msgstr "" +msgstr "Vypnout DIAG" #: src/components/storage/DASDTable.jsx:140 msgid "Format" -msgstr "" +msgstr "Formát" #: src/components/storage/DASDTable.jsx:261 #: src/components/storage/DASDTable.jsx:262 msgid "Filter by min channel" -msgstr "" +msgstr "Filtrování podle min. kanálu" #: src/components/storage/DASDTable.jsx:269 msgid "Remove min channel filter" -msgstr "" +msgstr "Odstranění filtru min. kanálu" #: src/components/storage/DASDTable.jsx:283 #: src/components/storage/DASDTable.jsx:284 msgid "Filter by max channel" -msgstr "" +msgstr "Filtrování podle max. kanálu" #: src/components/storage/DASDTable.jsx:291 msgid "Remove max channel filter" -msgstr "" +msgstr "Odstranění filtru max. kanálu" #: src/components/storage/DeviceSelection.jsx:108 msgid "Loading data, please wait a second..." -msgstr "" +msgstr "Načítání dat chvíli trvá..." #: src/components/storage/DeviceSelection.jsx:144 msgid "" "The file systems will be allocated by default as [new partitions in the " "selected device]." msgstr "" +"Souborové systémy budou ve výchozím nastavení přiděleny jako [nové oddíly ve " +"vybraném zařízení]." #: src/components/storage/DeviceSelection.jsx:151 msgid "" @@ -1107,101 +1065,105 @@ msgid "" "LVM Volume Group]. The corresponding physical volumes will be created on " "demand as new partitions at the selected devices." msgstr "" +"Souborové systémy budou ve výchozím nastavení přiděleny jako [logické svazky " +"nové skupiny svazků LVM]. Odpovídající fyzické svazky budou na vyžádání " +"vytvořeny jako nové oddíly na vybraných zařízeních." #: src/components/storage/DeviceSelection.jsx:160 msgid "Select installation device" -msgstr "" +msgstr "Výběr instalačního zařízení" #: src/components/storage/DeviceSelection.jsx:166 msgid "Install new system on" -msgstr "" +msgstr "Instalace nového systému na" #: src/components/storage/DeviceSelection.jsx:169 msgid "An existing disk" -msgstr "" +msgstr "Existující disk" #: src/components/storage/DeviceSelection.jsx:178 msgid "A new LVM Volume Group" -msgstr "" +msgstr "Nová skupina svazků LVM" #: src/components/storage/DeviceSelection.jsx:203 msgid "Device selector for target disk" -msgstr "" +msgstr "Výběr zařízení pro cílový disk" #: src/components/storage/DeviceSelection.jsx:226 msgid "Device selector for new LVM volume group" -msgstr "" +msgstr "Výběr zařízení pro novou skupinu svazků LVM" #: src/components/storage/DeviceSelection.jsx:242 msgid "Prepare more devices by configuring advanced" -msgstr "" +msgstr "Připravte další zařízení pomocí pokročilé konfigurace" #: src/components/storage/DeviceSelection.jsx:243 +#, fuzzy msgid "storage techs" -msgstr "" +msgstr "technologie úložiště" #. TRANSLATORS: multipath device type #: src/components/storage/DeviceSelectorTable.jsx:61 msgid "Multipath" -msgstr "" +msgstr "Vícecestný" #. TRANSLATORS: %s is replaced by the device bus ID #: src/components/storage/DeviceSelectorTable.jsx:66 #, c-format msgid "DASD %s" -msgstr "" +msgstr "DASD %s" #. TRANSLATORS: software RAID device, %s is replaced by the RAID level, e.g. RAID-1 #: src/components/storage/DeviceSelectorTable.jsx:71 #, c-format msgid "Software %s" -msgstr "" +msgstr "Software %s" #: src/components/storage/DeviceSelectorTable.jsx:76 msgid "SD Card" -msgstr "" +msgstr "Karta SD" #. TRANSLATORS: %s is substituted by the type of disk like "iSCSI" or "SATA" #: src/components/storage/DeviceSelectorTable.jsx:81 #, c-format msgid "%s disk" -msgstr "" +msgstr "%s disk" #: src/components/storage/DeviceSelectorTable.jsx:82 msgid "Disk" -msgstr "" +msgstr "Disk" #. TRANSLATORS: RAID details, %s is replaced by list of devices used by the array #: src/components/storage/DeviceSelectorTable.jsx:102 #, c-format msgid "Members: %s" -msgstr "" +msgstr "Členové: %s" #. TRANSLATORS: RAID details, %s is replaced by list of devices used by the array #: src/components/storage/DeviceSelectorTable.jsx:111 #, c-format msgid "Devices: %s" -msgstr "" +msgstr "Zařízení: %s" #. TRANSLATORS: multipath details, %s is replaced by list of connections used by the device #: src/components/storage/DeviceSelectorTable.jsx:120 #, c-format msgid "Wires: %s" -msgstr "" +msgstr "Kabely: %s" #. TRANSLATORS: disk partition info, %s is replaced by partition table #. type (MS-DOS or GPT), %d is the number of the partitions #: src/components/storage/DeviceSelectorTable.jsx:155 #, c-format msgid "%s with %d partitions" -msgstr "" +msgstr "%s s %d oddíly" #. TRANSLATORS: status message, no existing content was found on the disk, #. i.e. the disk is completely empty #: src/components/storage/DeviceSelectorTable.jsx:161 #: src/components/storage/SpaceActionsTable.jsx:175 msgid "No content found" -msgstr "" +msgstr "Nebyl nalezen žádný obsah" #: src/components/storage/DeviceSelectorTable.jsx:198 #: src/components/storage/PartitionsField.jsx:487 @@ -1209,7 +1171,7 @@ msgstr "" #: src/components/storage/SpaceActionsTable.jsx:201 #: src/components/storage/VolumeLocationSelectorTable.jsx:108 msgid "Details" -msgstr "" +msgstr "Podrobnosti" #: src/components/storage/DeviceSelectorTable.jsx:199 #: src/components/storage/PartitionsField.jsx:488 @@ -1218,71 +1180,77 @@ msgstr "" #: src/components/storage/VolumeFields.jsx:488 #: src/components/storage/VolumeLocationSelectorTable.jsx:113 msgid "Size" -msgstr "" +msgstr "Velikost" #: src/components/storage/DevicesTechMenu.jsx:38 msgid "Manage and format" -msgstr "" +msgstr "Správa a formátování" #: src/components/storage/DevicesTechMenu.jsx:52 msgid "Activate disks" -msgstr "" +msgstr "Aktivace disků" #: src/components/storage/DevicesTechMenu.jsx:53 msgid "zFCP" -msgstr "" +msgstr "zFCP" #: src/components/storage/DevicesTechMenu.jsx:66 msgid "Connect to iSCSI targets" -msgstr "" +msgstr "Připojení k cílům iSCSI" #: src/components/storage/DevicesTechMenu.jsx:67 #: src/components/storage/routes.js:37 msgid "iSCSI" -msgstr "" +msgstr "iSCSI" #: src/components/storage/EncryptionField.jsx:38 #: src/components/storage/EncryptionSettingsDialog.jsx:36 msgid "Encryption" -msgstr "" +msgstr "Šifrování" #: src/components/storage/EncryptionField.jsx:40 msgid "" "Protection for the information stored at the device, including data, " "programs, and system files." msgstr "" +"Ochrana informací uložených v zařízení, včetně dat, programů a systémových " +"souborů." #: src/components/storage/EncryptionField.jsx:44 msgid "disabled" -msgstr "" +msgstr "odpojeno" #: src/components/storage/EncryptionField.jsx:45 msgid "enabled" -msgstr "" +msgstr "zapojeno" #: src/components/storage/EncryptionField.jsx:46 msgid "using TPM unlocking" -msgstr "" +msgstr "odemykání čipem TPM" #: src/components/storage/EncryptionField.jsx:60 msgid "Enable" -msgstr "" +msgstr "Zapojit" #: src/components/storage/EncryptionField.jsx:60 msgid "Modify" -msgstr "" +msgstr "Upravit" #: src/components/storage/EncryptionSettingsDialog.jsx:38 msgid "" "Full Disk Encryption (FDE) allows to protect the information stored at the " "device, including data, programs, and system files." msgstr "" +"Šifrování celého disku (FDE) umožňuje chránit informace uložené v zařízení, " +"včetně dat, programů a systémových souborů." #. TRANSLATORS: "Trusted Platform Module" is the name of the technology and TPM its abbreviation #: src/components/storage/EncryptionSettingsDialog.jsx:42 msgid "" "Use the Trusted Platform Module (TPM) to decrypt automatically on each boot" msgstr "" +"Použití modulu TPM (Trusted Platform Module) k automatickému dešifrování při " +"každém spuštění systému" #: src/components/storage/EncryptionSettingsDialog.jsx:46 msgid "" @@ -1290,98 +1258,101 @@ msgid "" "verify the integrity of the system. TPM sealing requires the new system to " "be booted directly on its first run." msgstr "" +"Dokáže-li čip TPM ověřit integritu systému, nebude heslo pro spuštění " +"systému a přístup k datům potřebné. Zapečetění TPM vyžaduje, aby byl nový " +"systém spuštěn hned při prvním použití." #: src/components/storage/EncryptionSettingsDialog.jsx:129 msgid "Encrypt the system" -msgstr "" +msgstr "Šifrování systému" #: src/components/storage/InstallationDeviceField.jsx:36 #: src/components/storage/VolumeLocationSelectorTable.jsx:61 msgid "Installation device" -msgstr "" +msgstr "Instalační zařízení" #. TRANSLATORS: The storage "Installation device" field's description. #: src/components/storage/InstallationDeviceField.jsx:38 msgid "Main disk or LVM Volume Group for installation." -msgstr "" +msgstr "Hlavní disk nebo skupina svazků LVM pro instalaci." #. TRANSLATORS: %s is the installation disk (eg. "/dev/sda, 80 GiB) #: src/components/storage/InstallationDeviceField.jsx:52 #, c-format msgid "File systems created as new partitions at %s" -msgstr "" +msgstr "Souborové systémy vytvořené jako nové oddíly v %s" #: src/components/storage/InstallationDeviceField.jsx:55 msgid "File systems created at a new LVM volume group" -msgstr "" +msgstr "Souborové systémy vytvořené v nové skupině svazků LVM" #: src/components/storage/InstallationDeviceField.jsx:60 #, c-format msgid "File systems created at a new LVM volume group on %s" -msgstr "" +msgstr "Souborové systémy vytvořené v nové skupině svazků LVM na %s" #. TRANSLATORS: minimum device size, %s is replaced by size string, e.g. "17.5 GiB" #: src/components/storage/PartitionsField.jsx:84 #, c-format msgid "at least %s" -msgstr "" +msgstr "alespoň %s" #. TRANSLATORS: "/" is in an LVM logical volume. %s replaced by size string, e.g. "17.5 GiB" #: src/components/storage/PartitionsField.jsx:108 #, c-format msgid "Transactional Btrfs root volume (%s)" -msgstr "" +msgstr "Transakční kořenový svazek Btrfs (%s)" #. TRANSLATORS: %s replaced by size string, e.g. "17.5 GiB" #: src/components/storage/PartitionsField.jsx:110 #, c-format msgid "Transactional Btrfs root partition (%s)" -msgstr "" +msgstr "Transakční kořenový oddíl Btrfs (%s)" #. TRANSLATORS: "/" is in an LVM logical volume. %s replaced by size string, e.g. "17.5 GiB" #: src/components/storage/PartitionsField.jsx:115 #, c-format msgid "Btrfs root volume with snapshots (%s)" -msgstr "" +msgstr "Kořenový svazek Btrfs se snímky (%s)" #. TRANSLATORS: %s replaced by size string, e.g. "17.5 GiB" #: src/components/storage/PartitionsField.jsx:117 #, c-format msgid "Btrfs root partition with snapshots (%s)" -msgstr "" +msgstr "Kořenový oddíl Btrfs se snímky (%s)" #. TRANSLATORS: This results in something like "Mount /dev/sda3 at /home (25 GiB)" since #. %1$s is replaced by the device name, %2$s by the mount point and %3$s by the size #: src/components/storage/PartitionsField.jsx:126 #, c-format msgid "Mount %1$s at %2$s (%3$s)" -msgstr "" +msgstr "Připojit %1$s at %2$s (%3$s)" #. TRANSLATORS: This results in something like "Swap at /dev/sda3 (2 GiB)" since #. %1$s is replaced by the device name, and %2$s by the size #: src/components/storage/PartitionsField.jsx:132 #, c-format msgid "Swap at %1$s (%2$s)" -msgstr "" +msgstr "Přepnout na %1$s (%2$s)" #. TRANSLATORS: Swap is in an LVM logical volume. %s replaced by size string, e.g. "8 GiB" #: src/components/storage/PartitionsField.jsx:136 #, c-format msgid "Swap volume (%s)" -msgstr "" +msgstr "Přepnout svazek (%s)" #. TRANSLATORS: %s replaced by size string, e.g. "8 GiB" #: src/components/storage/PartitionsField.jsx:138 #, c-format msgid "Swap partition (%s)" -msgstr "" +msgstr "Přepnout oddíl (%s)" #. TRANSLATORS: This results in something like "Btrfs root at /dev/sda3 (20 GiB)" since #. %1$s is replaced by the filesystem type, %2$s by the device name, and %3$s by the size #: src/components/storage/PartitionsField.jsx:147 #, c-format msgid "%1$s root at %2$s (%3$s)" -msgstr "" +msgstr "%1$s kořen na %2$s (%3$s)" #. TRANSLATORS: "/" is in an LVM logical volume. #. Results in something like "Btrfs root volume (at least 20 GiB)" since @@ -1389,21 +1360,21 @@ msgstr "" #: src/components/storage/PartitionsField.jsx:153 #, c-format msgid "%1$s root volume (%2$s)" -msgstr "" +msgstr "%1$s kořenový svazek (%2$s)" #. TRANSLATORS: Results in something like "Btrfs root partition (at least 20 GiB)" since #. $1$s is replaced by filesystem type and %2$s by size description #: src/components/storage/PartitionsField.jsx:156 #, c-format msgid "%1$s root partition (%2$s)" -msgstr "" +msgstr "%1$s kořenový oddíl (%2$s)" #. TRANSLATORS: This results in something like "Ext4 /home at /dev/sda3 (20 GiB)" since #. %1$s is replaced by filesystem type, %2$s by mount point, %3$s by device name and %4$s by size #: src/components/storage/PartitionsField.jsx:162 #, c-format msgid "%1$s %2$s at %3$s (%4$s)" -msgstr "" +msgstr "%1$s %2$s na %3$s (%4$s)" #. TRANSLATORS: The filesystem is in an LVM logical volume. #. Results in something like "Ext4 /home volume (at least 10 GiB)" since @@ -1411,248 +1382,250 @@ msgstr "" #: src/components/storage/PartitionsField.jsx:168 #, c-format msgid "%1$s %2$s volume (%3$s)" -msgstr "" +msgstr "%1$s %2$s svazek (%3$s)" #. TRANSLATORS: This results in something like "Ext4 /home partition (at least 10 GiB)" since #. %1$s is replaced by the filesystem type, %2$s by the mount point and %3$s by the size description #: src/components/storage/PartitionsField.jsx:171 #, c-format msgid "%1$s %2$s partition (%3$s)" -msgstr "" +msgstr "%1$s %2$s oddíl (%3$s)" #: src/components/storage/PartitionsField.jsx:182 msgid "Do not configure partitions for booting" -msgstr "" +msgstr "Nekonfigurujte oddíly pro zavádění systému" #: src/components/storage/PartitionsField.jsx:184 msgid "Boot partitions at installation disk" -msgstr "" +msgstr "Oddíly zavádějící systém na instalačním disku" #. TRANSLATORS: %s is the disk used to configure the boot-related partitions (eg. "/dev/sda, 80 GiB) #: src/components/storage/PartitionsField.jsx:187 #, c-format msgid "Boot partitions at %s" -msgstr "" +msgstr "Zaváděcí oddíly na %s" #. TRANSLATORS: header for a list of items referring to size limits for file systems #: src/components/storage/PartitionsField.jsx:209 msgid "These limits are affected by:" -msgstr "" +msgstr "Tyto limity jsou ovlivněny (čím):" #. TRANSLATORS: list item, this affects the computed partition size limits #: src/components/storage/PartitionsField.jsx:213 msgid "The configuration of snapshots" -msgstr "" +msgstr "Konfigurace snímků" #: src/components/storage/PartitionsField.jsx:219 #, c-format msgid "Presence of other volumes (%s)" -msgstr "" +msgstr "Přítomnost dalších svazků (%s)" #. TRANSLATORS: list item, describes a factor that affects the computed size of a #. file system; eg. adjusting the size of the swap #: src/components/storage/PartitionsField.jsx:225 msgid "The amount of RAM in the system" -msgstr "" +msgstr "Množství paměti RAM v systému" #: src/components/storage/PartitionsField.jsx:292 msgid "auto" -msgstr "" +msgstr "auto" #. TRANSLATORS: %s will be replaced by a file-system type like "Btrfs" or "Ext4" #: src/components/storage/PartitionsField.jsx:309 #, c-format msgid "Reused %s" -msgstr "" +msgstr "Opětovné použití %s" #: src/components/storage/PartitionsField.jsx:310 msgid "Transactional Btrfs" -msgstr "" +msgstr "Transakční systém Btrfs" #: src/components/storage/PartitionsField.jsx:311 msgid "Btrfs with snapshots" -msgstr "" +msgstr "Btrfs se snímky" #. TRANSLATORS: %s will be replaced by a disk name (eg. "/dev/sda") #: src/components/storage/PartitionsField.jsx:325 #, c-format msgid "Partition at %s" -msgstr "" +msgstr "Oddíl na %s" #. TRANSLATORS: %s will be replaced by a disk name (eg. "/dev/sda") #: src/components/storage/PartitionsField.jsx:328 #, c-format msgid "Separate LVM at %s" -msgstr "" +msgstr "Oddělené LVM na %s" #: src/components/storage/PartitionsField.jsx:331 msgid "Logical volume at system LVM" -msgstr "" +msgstr "Logický svazek na systému LVM" #: src/components/storage/PartitionsField.jsx:333 msgid "Partition at installation disk" -msgstr "" +msgstr "Oddíl na instalačním disku" #: src/components/storage/PartitionsField.jsx:348 msgid "Reset location" -msgstr "" +msgstr "Výmaz umístění" #: src/components/storage/PartitionsField.jsx:349 msgid "Change location" -msgstr "" +msgstr "Změna umístění" #: src/components/storage/PartitionsField.jsx:350 #: src/components/storage/iscsi/NodesPresenter.jsx:77 msgid "Delete" -msgstr "" +msgstr "Smazat" #: src/components/storage/PartitionsField.jsx:486 #: src/components/storage/VolumeFields.jsx:66 #: src/components/storage/VolumeFields.jsx:75 #: src/components/storage/VolumeFields.jsx:80 msgid "Mount point" -msgstr "" +msgstr "Přípojný bod" #. TRANSLATORS: where (and how) the file-system is going to be created #: src/components/storage/PartitionsField.jsx:490 msgid "Location" -msgstr "" +msgstr "Umístění" #: src/components/storage/PartitionsField.jsx:532 msgid "Table with mount points" -msgstr "" +msgstr "Tabulka s přípojnými body" #: src/components/storage/PartitionsField.jsx:604 #: src/components/storage/PartitionsField.jsx:624 #: src/components/storage/VolumeDialog.jsx:86 msgid "Add file system" -msgstr "" +msgstr "Přidat souborový systém" #: src/components/storage/PartitionsField.jsx:636 msgid "Other" -msgstr "" +msgstr "Ostatní/jiné" #: src/components/storage/PartitionsField.jsx:777 msgid "Reset to defaults" -msgstr "" +msgstr "Návrat k standardním hodnotám" #: src/components/storage/PartitionsField.jsx:849 msgid "Partitions and file systems" -msgstr "" +msgstr "Oddíly a souborové systémy" #: src/components/storage/PartitionsField.jsx:851 msgid "" "Structure of the new system, including any additional partition needed for " "booting" msgstr "" +"Struktura nového systému, včetně případných dalších oddílů potřebných pro " +"zavádění systému" #: src/components/storage/PartitionsField.jsx:858 msgid "Show partitions and file-systems actions" -msgstr "" +msgstr "Zobrazení oddílů a akcí souborových systémů" #: src/components/storage/ProposalActionsDialog.jsx:65 #, c-format msgid "Hide %d subvolume action" msgid_plural "Hide %d subvolume actions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Skrýt %d akci podsvazku" +msgstr[1] "Skrýt %d akce podsvazku" +msgstr[2] "Skrýt %d akcí podsvazku" #: src/components/storage/ProposalActionsDialog.jsx:70 #, c-format msgid "Show %d subvolume action" msgid_plural "Show %d subvolume actions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Zobrazit %d akci podsvazku" +msgstr[1] "Zobrazit %d akce podsvazku" +msgstr[2] "Zobrazit %d akcí podsvazku" #: src/components/storage/ProposalActionsSummary.jsx:57 msgid "Destructive actions are not allowed" -msgstr "" +msgstr "Destruktivní akce nejsou povoleny" #: src/components/storage/ProposalActionsSummary.jsx:59 msgid "Destructive actions are allowed" -msgstr "" +msgstr "Destruktivní akce jsou povoleny" #: src/components/storage/ProposalActionsSummary.jsx:82 #: src/components/storage/ProposalActionsSummary.jsx:132 msgid "affecting" -msgstr "" +msgstr "ovlivňující" #: src/components/storage/ProposalActionsSummary.jsx:112 msgid "Shrinking partitions is not allowed" -msgstr "" +msgstr "Zmenšování oddílů není povoleno" #: src/components/storage/ProposalActionsSummary.jsx:116 msgid "Shrinking partitions is allowed" -msgstr "" +msgstr "Zmenšování oddílů je povoleno" #: src/components/storage/ProposalActionsSummary.jsx:118 msgid "Shrinking some partitions is allowed but not needed" -msgstr "" +msgstr "Zmenšení některých oddílů je povoleno, ale není nutné" #: src/components/storage/ProposalActionsSummary.jsx:121 #, c-format msgid "%d partition will be shrunk" msgid_plural "%d partitions will be shrunk" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%d oddíl bude zmenšen" +msgstr[1] "%d oddíly budou zmenšeny" +msgstr[2] "%d oddílů bude zmenšeno" #: src/components/storage/ProposalActionsSummary.jsx:159 msgid "Cannot accommodate the required file systems for installation" -msgstr "" +msgstr "Nelze umístit požadované souborové systémy pro instalaci" #: src/components/storage/ProposalActionsSummary.jsx:167 #, c-format msgid "Check the planned action" msgid_plural "Check the %d planned actions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Zkontrolujte plánovanou akci" +msgstr[1] "Zkontrolujte %d plánované akce" +msgstr[2] "Zkontrolujte %d plánovaných akcí" #: src/components/storage/ProposalActionsSummary.jsx:182 msgid "Waiting for actions information..." -msgstr "" +msgstr "Čekáme na informace o akcích..." #: src/components/storage/ProposalPage.jsx:317 msgid "Planned Actions" -msgstr "" +msgstr "Plánované akce" #: src/components/storage/ProposalResultSection.jsx:43 msgid "Waiting for information about storage configuration" -msgstr "" +msgstr "Čekání na informace o konfiguraci úložiště" #: src/components/storage/ProposalResultSection.jsx:73 msgid "Final layout" -msgstr "" +msgstr "Konečné rozvržení" #: src/components/storage/ProposalResultSection.jsx:74 msgid "The systems will be configured as displayed below." -msgstr "" +msgstr "Systémy budou konfigurovány tak, jak je zobrazeno níže." #: src/components/storage/ProposalResultSection.jsx:83 msgid "Storage proposal not possible" -msgstr "" +msgstr "Návrh úložiště není možný" #: src/components/storage/ProposalResultTable.jsx:79 msgid "New" -msgstr "" +msgstr "Nový" #. TRANSLATORS: Label to indicate the device size before resizing, where %s is #. replaced by the original size (e.g., 3.00 GiB). #: src/components/storage/ProposalResultTable.jsx:105 #, c-format msgid "Before %s" -msgstr "" +msgstr "Před %s" #: src/components/storage/ProposalResultTable.jsx:131 msgid "Mount Point" -msgstr "" +msgstr "Přípojný bod" #: src/components/storage/ProposalTransactionalInfo.jsx:45 msgid "Transactional root file system" -msgstr "" +msgstr "Transakční kořenový souborový systém" #: src/components/storage/ProposalTransactionalInfo.jsx:49 #, c-format @@ -1660,182 +1633,186 @@ msgid "" "%s is an immutable system with atomic updates. It uses a read-only Btrfs " "file system updated via snapshots." msgstr "" +"%s je neměnný systém s atomickými aktualizacemi. Používá souborový systém " +"Btrfs pouze pro čtení aktualizovaný pomocí snímků." #: src/components/storage/SnapshotsField.jsx:36 msgid "Use Btrfs snapshots for the root file system" -msgstr "" +msgstr "Použití snímků Btrfs pro kořenový souborový systém" #: src/components/storage/SnapshotsField.jsx:38 msgid "" "Allows to boot to a previous version of the system after configuration " "changes or software upgrades." msgstr "" +"Umožňuje zavést předchozí verzi systému po změně konfigurace nebo " +"aktualizaci softwaru." #: src/components/storage/SpaceActionsTable.jsx:68 #, c-format msgid "Up to %s can be recovered by shrinking the device." -msgstr "" +msgstr "Zmenšením zařízení lze obnovit až %s." #: src/components/storage/SpaceActionsTable.jsx:77 msgid "The device cannot be shrunk:" -msgstr "" +msgstr "Zařízení nelze zmenšit:" #: src/components/storage/SpaceActionsTable.jsx:98 #, c-format msgid "Show information about %s" -msgstr "" +msgstr "Zobrazit informace o %s" #: src/components/storage/SpaceActionsTable.jsx:172 msgid "The content may be deleted" -msgstr "" +msgstr "Obsah může být smazán" #: src/components/storage/SpaceActionsTable.jsx:204 msgid "Action" -msgstr "" +msgstr "Akce" #: src/components/storage/SpaceActionsTable.jsx:215 msgid "Actions to find space" -msgstr "" +msgstr "Akce k nalezení prostoru" #: src/components/storage/SpacePolicySelection.jsx:172 msgid "Space policy" -msgstr "" +msgstr "Zásady pro volné místo" #: src/components/storage/VolumeDialog.jsx:83 #, c-format msgid "Add %s file system" -msgstr "" +msgstr "Přidání souborového systému %s" #: src/components/storage/VolumeDialog.jsx:84 #, c-format msgid "Edit %s file system" -msgstr "" +msgstr "Upravit souborový systém %s" #: src/components/storage/VolumeDialog.jsx:86 msgid "Edit file system" -msgstr "" +msgstr "Úprava souborového systému" #. TRANSLATORS: Warning when editing a file system. #: src/components/storage/VolumeDialog.jsx:101 msgid "The type and size of the file system cannot be edited." -msgstr "" +msgstr "Typ a velikost souborového systému nelze upravovat." #: src/components/storage/VolumeDialog.jsx:105 #, c-format msgid "The current file system on %s is selected to be mounted at %s." -msgstr "" +msgstr "Aktuální souborový systém na %s je vybrán k připojení k %s." #. TRANSLATORS: Warning when editing a file system. #: src/components/storage/VolumeDialog.jsx:113 msgid "The size of the file system cannot be edited" -msgstr "" +msgstr "Velikost souborového systému nelze měnit" #. TRANSLATORS: Description of a warning. %s is replaced by a device name (e.g., /dev/vda). #: src/components/storage/VolumeDialog.jsx:115 #, c-format msgid "The file system is allocated at the device %s." -msgstr "" +msgstr "Souborový systém je přidělen na zařízení %s." #: src/components/storage/VolumeDialog.jsx:163 msgid "A mount point is required" -msgstr "" +msgstr "Je vyžadován přípojný bod" #: src/components/storage/VolumeDialog.jsx:190 msgid "The mount point is invalid" -msgstr "" +msgstr "Přípojný bod je neplatný" #: src/components/storage/VolumeDialog.jsx:218 msgid "A size value is required" -msgstr "" +msgstr "Je vyžadována hodnota velikosti" #: src/components/storage/VolumeDialog.jsx:246 msgid "Minimum size is required" -msgstr "" +msgstr "Je vyžadována minimální velikost" #: src/components/storage/VolumeDialog.jsx:278 msgid "Maximum must be greater than minimum" -msgstr "" +msgstr "Maximum musí být větší než minimum" #: src/components/storage/VolumeDialog.jsx:320 #, c-format msgid "There is already a file system for %s." -msgstr "" +msgstr "Pro %s již existuje souborový systém." #: src/components/storage/VolumeDialog.jsx:322 msgid "Do you want to edit it?" -msgstr "" +msgstr "Chcete to upravit?" #: src/components/storage/VolumeDialog.jsx:367 #, c-format msgid "There is a predefined file system for %s." -msgstr "" +msgstr "Pro %s existuje předdefinovaný souborový systém." #: src/components/storage/VolumeDialog.jsx:369 msgid "Do you want to add it?" -msgstr "" +msgstr "Chcete ho přidat?" #: src/components/storage/VolumeFields.jsx:225 msgid "" "The options for the file system type depends on the product and the mount " "point." -msgstr "" +msgstr "Možnosti typu souborového systému závisí na produktu a přípojném bodu." #: src/components/storage/VolumeFields.jsx:232 msgid "More info for file system types" -msgstr "" +msgstr "Další informace o typech souborových systémů" #. TRANSLATORS: label for the file system selector. #: src/components/storage/VolumeFields.jsx:243 msgid "File system type" -msgstr "" +msgstr "Typ systému souborů" #. TRANSLATORS: item which affects the final computed partition size #: src/components/storage/VolumeFields.jsx:274 msgid "the configuration of snapshots" -msgstr "" +msgstr "konfigurace snímků" #: src/components/storage/VolumeFields.jsx:281 #, c-format msgid "the presence of the file system for %s" -msgstr "" +msgstr "přítomnost souborového systému pro %s" #. TRANSLATORS: conjunction for merging two list items #: src/components/storage/VolumeFields.jsx:283 msgid ", " -msgstr "" +msgstr ", " #. TRANSLATORS: item which affects the final computed partition size #: src/components/storage/VolumeFields.jsx:289 msgid "the amount of RAM in the system" -msgstr "" +msgstr "velikost paměti RAM v systému" #: src/components/storage/VolumeFields.jsx:293 #, c-format msgid "The final size depends on %s." -msgstr "" +msgstr "Konečná velikost závisí na %s." #. TRANSLATORS: conjunction for merging two texts #: src/components/storage/VolumeFields.jsx:295 msgid " and " -msgstr "" +msgstr " a " #: src/components/storage/VolumeFields.jsx:302 msgid "Automatically calculated size according to the selected product." -msgstr "" +msgstr "Automatický výpočet velikosti podle vybraného produktu." #: src/components/storage/VolumeFields.jsx:321 msgid "Exact size for the file system." -msgstr "" +msgstr "Přesná velikost souborového systému." #. TRANSLATORS: requested partition size #: src/components/storage/VolumeFields.jsx:330 msgid "Exact size" -msgstr "" +msgstr "Přesná velikost" #. TRANSLATORS: units selector (like KiB, MiB, GiB...) #: src/components/storage/VolumeFields.jsx:347 msgid "Size unit" -msgstr "" +msgstr "Jednotka velikosti" #: src/components/storage/VolumeFields.jsx:376 msgid "" @@ -1843,209 +1820,223 @@ msgid "" "given minimum and maximum. If no maximum is given then the file system will " "be as big as possible." msgstr "" +"Omezení velikosti souborového systému. Konečná velikost bude hodnota mezi " +"zadaným minimem a maximem. Pokud není zadáno žádné maximum, bude souborový " +"systém co největší." #. TRANSLATORS: the minimal partition size #: src/components/storage/VolumeFields.jsx:384 msgid "Minimum" -msgstr "" +msgstr "Minimum" #. TRANSLATORS: the minium partition size #: src/components/storage/VolumeFields.jsx:395 msgid "Minimum desired size" -msgstr "" +msgstr "Minimální požadovaná velikost" #: src/components/storage/VolumeFields.jsx:406 msgid "Unit for the minimum size" -msgstr "" +msgstr "Jednotka pro minimální velikost" #. TRANSLATORS: the maximum partition size #: src/components/storage/VolumeFields.jsx:418 msgid "Maximum" -msgstr "" +msgstr "Maximum" #. TRANSLATORS: the maximum partition size #: src/components/storage/VolumeFields.jsx:430 msgid "Maximum desired size" -msgstr "" +msgstr "Maximální požadovaná velikost" #: src/components/storage/VolumeFields.jsx:440 msgid "Unit for the maximum size" -msgstr "" +msgstr "Jednotka pro maximální velikost" #. TRANSLATORS: radio button label, fully automatically computed partition size, no user input #: src/components/storage/VolumeFields.jsx:458 msgid "Auto" -msgstr "" +msgstr "Auto" #. TRANSLATORS: radio button label, exact partition size requested by user #: src/components/storage/VolumeFields.jsx:460 msgid "Fixed" -msgstr "" +msgstr "Opraveno" #. TRANSLATORS: radio button label, automatically computed partition size within the user provided min and max limits #: src/components/storage/VolumeFields.jsx:462 msgid "Range" -msgstr "" +msgstr "Rozsah" #: src/components/storage/VolumeLocationDialog.jsx:41 msgid "" "The file systems are allocated at the installation device by default. " "Indicate a custom location to create the file system at a specific device." msgstr "" +"Souborové systémy jsou ve výchozím nastavení vytvořeny v instalačním " +"zařízení. Chcete-li vytvořit souborový systém na konkrétním zařízení, " +"zadejte vlastní umístění." #. TRANSLATORS: Title of the dialog for changing the location of a file system. %s is replaced #. by a mount path (e.g., /home). #: src/components/storage/VolumeLocationDialog.jsx:137 #, c-format msgid "Location for %s file system" -msgstr "" +msgstr "Umístění souborového systému %s" #: src/components/storage/VolumeLocationDialog.jsx:147 msgid "Select in which device to allocate the file system" -msgstr "" +msgstr "Vyberte, ve kterém zařízení se má vytvořit systém souborů" #: src/components/storage/VolumeLocationDialog.jsx:150 msgid "Select a location" -msgstr "" +msgstr "Vyberte umístění" #: src/components/storage/VolumeLocationDialog.jsx:162 msgid "Select how to allocate the file system" -msgstr "" +msgstr "Zvolte způsob vytvoření souborového systému" #: src/components/storage/VolumeLocationDialog.jsx:167 msgid "Create a new partition" -msgstr "" +msgstr "Vytvořit nový oddíl" #: src/components/storage/VolumeLocationDialog.jsx:169 msgid "" "The file system will be allocated as a new partition at the selected disk." -msgstr "" +msgstr "Souborový systém bude přidělen jako nový oddíl na vybraném disku." #: src/components/storage/VolumeLocationDialog.jsx:179 msgid "Create a dedicated LVM volume group" -msgstr "" +msgstr "Vytvoření vyhrazené skupiny svazků LVM" #: src/components/storage/VolumeLocationDialog.jsx:181 msgid "" "A new volume group will be allocated in the selected disk and the file " "system will be created as a logical volume." msgstr "" +"Na vybraném disku bude vytvořena nová skupina svazků a systém souborů bude " +"vytvořen jako logický svazek." #: src/components/storage/VolumeLocationDialog.jsx:191 msgid "Format the device" -msgstr "" +msgstr "Formátovat zařízení" #: src/components/storage/VolumeLocationDialog.jsx:195 #, c-format msgid "The selected device will be formatted as %s file system." -msgstr "" +msgstr "Vybrané zařízení bude formátováno jako souborový systém %s." #: src/components/storage/VolumeLocationDialog.jsx:206 msgid "Mount the file system" -msgstr "" +msgstr "Připojit souborový systém" #: src/components/storage/VolumeLocationDialog.jsx:208 msgid "" "The current file system on the selected device will be mounted without " "formatting the device." msgstr "" +"Aktuální souborový systém na vybraném zařízení bude připojen bez " +"formátování zařízení." #: src/components/storage/VolumeLocationSelectorTable.jsx:110 msgid "Usage" -msgstr "" +msgstr "Použití" #: src/components/storage/ZFCPDiskForm.jsx:106 msgid "The zFCP disk was not activated." -msgstr "" +msgstr "Disk zFCP nebyl aktivován." #. TRANSLATORS: abbrev. World Wide Port Name #: src/components/storage/ZFCPDiskForm.jsx:123 #: src/components/storage/ZFCPPage.jsx:383 msgid "WWPN" -msgstr "" +msgstr "WWPN" #. TRANSLATORS: abbrev. Logical Unit Number #: src/components/storage/ZFCPDiskForm.jsx:131 #: src/components/storage/ZFCPPage.jsx:384 msgid "LUN" -msgstr "" +msgstr "LUN" #: src/components/storage/ZFCPPage.jsx:326 msgid "Auto LUNs Scan" -msgstr "" +msgstr "Automatické skenování jednotek LUN" #: src/components/storage/ZFCPPage.jsx:337 msgid "Activated" -msgstr "" +msgstr "Aktivováno" #: src/components/storage/ZFCPPage.jsx:337 msgid "Deactivated" -msgstr "" +msgstr "Deaktivováno" #: src/components/storage/ZFCPPage.jsx:437 msgid "No zFCP controllers found." -msgstr "" +msgstr "Nebyly nalezeny žádné řadiče zFCP." #: src/components/storage/ZFCPPage.jsx:438 msgid "Please, try to read the zFCP devices again." -msgstr "" +msgstr "Zkuste znovu načíst zařízení zFCP." #: src/components/storage/ZFCPPage.jsx:441 msgid "Read zFCP devices" -msgstr "" +msgstr "Načtení zařízení zFCP" #: src/components/storage/ZFCPPage.jsx:452 msgid "" "Automatic LUN scan is [enabled]. Activating a controller which is running in " "NPIV mode will automatically configures all its LUNs." msgstr "" +"Automatické skenování LUN je [povoleno]. Aktivací řadiče, který běží v " +"režimu NPIV, se automaticky nakonfigurují všechny jeho LUN." #: src/components/storage/ZFCPPage.jsx:457 msgid "" "Automatic LUN scan is [disabled]. LUNs have to be manually configured after " "activating a controller." msgstr "" +"Automatické skenování LUN je [zakázáno]. Po aktivaci řadiče je třeba LUNy " +"nakonfigurovat ručně." #: src/components/storage/ZFCPPage.jsx:519 msgid "Activate a zFCP disk" -msgstr "" +msgstr "Aktivovat disk zFCP" #: src/components/storage/ZFCPPage.jsx:553 msgid "Please, try to activate a zFCP controller." -msgstr "" +msgstr "Zkuste aktivovat řadič zFCP." #: src/components/storage/ZFCPPage.jsx:559 msgid "Please, try to activate a zFCP disk." -msgstr "" +msgstr "Zkuste aktivovat disk zFCP." #: src/components/storage/ZFCPPage.jsx:562 msgid "Activate zFCP disk" -msgstr "" +msgstr "Aktivovat disk zFCP" #: src/components/storage/ZFCPPage.jsx:570 msgid "No zFCP disks found." -msgstr "" +msgstr "Nebyly nalezeny žádné disky zFCP." #: src/components/storage/ZFCPPage.jsx:586 msgid "Activate new disk" -msgstr "" +msgstr "Aktivace nového disku" #. TRANSLATORS: section title #: src/components/storage/ZFCPPage.jsx:599 msgid "Disks" -msgstr "" +msgstr "Disky" #: src/components/storage/device-utils.jsx:92 msgid "Unused space" -msgstr "" +msgstr "Nevyužitý prostor" #: src/components/storage/iscsi/AuthFields.jsx:70 msgid "Only available if authentication by target is provided" -msgstr "" +msgstr "K dispozici, jen když je zadáno ověřování cílem" #: src/components/storage/iscsi/AuthFields.jsx:77 msgid "Authentication by target" -msgstr "" +msgstr "Ověřování cílem" #: src/components/storage/iscsi/AuthFields.jsx:78 #: src/components/storage/iscsi/AuthFields.jsx:82 @@ -2054,75 +2045,75 @@ msgstr "" #: src/components/storage/iscsi/AuthFields.jsx:108 #: src/components/storage/iscsi/AuthFields.jsx:110 msgid "User name" -msgstr "" +msgstr "Uživatelské jméno" #: src/components/storage/iscsi/AuthFields.jsx:88 #: src/components/storage/iscsi/AuthFields.jsx:116 msgid "Incorrect user name" -msgstr "" +msgstr "Nesprávné uživatelské jméno" #: src/components/storage/iscsi/AuthFields.jsx:99 #: src/components/storage/iscsi/AuthFields.jsx:130 msgid "Incorrect password" -msgstr "" +msgstr "Nesprávné heslo" #: src/components/storage/iscsi/AuthFields.jsx:102 msgid "Authentication by initiator" -msgstr "" +msgstr "Ověření iniciátorem" #: src/components/storage/iscsi/AuthFields.jsx:123 msgid "Target Password" -msgstr "" +msgstr "Cílové heslo" #. TRANSLATORS: popup title #: src/components/storage/iscsi/DiscoverForm.jsx:94 msgid "Discover iSCSI Targets" -msgstr "" +msgstr "Najít cílové stanice iSCSI" #: src/components/storage/iscsi/DiscoverForm.jsx:99 #: src/components/storage/iscsi/LoginForm.jsx:70 msgid "Make sure you provide the correct values" -msgstr "" +msgstr "Ujistěte se, že jste zadali správné hodnoty" #: src/components/storage/iscsi/DiscoverForm.jsx:103 msgid "IP address" -msgstr "" +msgstr "adresa IP" #. TRANSLATORS: network address #: src/components/storage/iscsi/DiscoverForm.jsx:108 #: src/components/storage/iscsi/DiscoverForm.jsx:110 msgid "Address" -msgstr "" +msgstr "Adresa" #: src/components/storage/iscsi/DiscoverForm.jsx:115 msgid "Incorrect IP address" -msgstr "" +msgstr "Nesprávná IP adresa" #. TRANSLATORS: network port number #: src/components/storage/iscsi/DiscoverForm.jsx:117 #: src/components/storage/iscsi/DiscoverForm.jsx:122 #: src/components/storage/iscsi/DiscoverForm.jsx:124 msgid "Port" -msgstr "" +msgstr "Port" #: src/components/storage/iscsi/DiscoverForm.jsx:129 msgid "Incorrect port" -msgstr "" +msgstr "Nesprávný port" #. TRANSLATORS: %s is replaced by the iSCSI target node name #: src/components/storage/iscsi/EditNodeForm.jsx:48 #, c-format msgid "Edit %s" -msgstr "" +msgstr "Upravit %s" #: src/components/storage/iscsi/InitiatorForm.jsx:42 msgid "Edit iSCSI Initiator" -msgstr "" +msgstr "Upravit iniciátor iSCSI" #. TRANSLATORS: iSCSI initiator name #: src/components/storage/iscsi/InitiatorForm.jsx:49 msgid "Initiator name" -msgstr "" +msgstr "Název iniciátora" #. TRANSLATORS: usually just keep the original text #. iBFT = iSCSI Boot Firmware Table, HW support for booting from iSCSI @@ -2131,327 +2122,392 @@ msgstr "" #: src/components/storage/iscsi/NodesPresenter.jsx:101 #: src/components/storage/iscsi/NodesPresenter.jsx:122 msgid "iBFT" -msgstr "" +msgstr "iBFT" #: src/components/storage/iscsi/InitiatorPresenter.jsx:72 #: src/components/storage/iscsi/InitiatorPresenter.jsx:87 +#, fuzzy msgid "Offload card" -msgstr "" +msgstr "Vyložení karty" #. TRANSLATORS: iSCSI initiator section name #: src/components/storage/iscsi/InitiatorSection.jsx:49 msgid "Initiator" -msgstr "" +msgstr "Iniciátor" #. TRANSLATORS: %s is replaced by the iSCSI target name #: src/components/storage/iscsi/LoginForm.jsx:66 #, c-format msgid "Login %s" -msgstr "" +msgstr "Přihlášení %s" #. TRANSLATORS: iSCSI start up mode (on boot/manual/automatic) #: src/components/storage/iscsi/LoginForm.jsx:74 #: src/components/storage/iscsi/LoginForm.jsx:77 msgid "Startup" -msgstr "" +msgstr "Typ startu iSCSI" #: src/components/storage/iscsi/NodeStartupOptions.js:26 msgid "On boot" -msgstr "" +msgstr "Při spuštění systému" #. TRANSLATORS: iSCSI connection status, %s is replaced by node label #: src/components/storage/iscsi/NodesPresenter.jsx:67 #, c-format msgid "Connected (%s)" -msgstr "" +msgstr "Připojeno (%s)" #: src/components/storage/iscsi/NodesPresenter.jsx:82 msgid "Login" -msgstr "" +msgstr "Přihlášení" #: src/components/storage/iscsi/NodesPresenter.jsx:86 msgid "Logout" -msgstr "" +msgstr "Odhlášení" #: src/components/storage/iscsi/NodesPresenter.jsx:99 #: src/components/storage/iscsi/NodesPresenter.jsx:120 msgid "Portal" -msgstr "" +msgstr "Portál" #: src/components/storage/iscsi/NodesPresenter.jsx:100 #: src/components/storage/iscsi/NodesPresenter.jsx:121 msgid "Interface" -msgstr "" +msgstr "Rozhraní" #: src/components/storage/iscsi/TargetsSection.jsx:138 msgid "No iSCSI targets found." -msgstr "" +msgstr "Nebyly nalezeny žádné cíle iSCSI." #: src/components/storage/iscsi/TargetsSection.jsx:140 msgid "" "Please, perform an iSCSI discovery in order to find available iSCSI targets." -msgstr "" +msgstr "Spusťte vyhledávání iSCSI a tím najděte dostupné cíle iSCSI." #: src/components/storage/iscsi/TargetsSection.jsx:144 msgid "Discover iSCSI targets" -msgstr "" +msgstr "Zjištění cílů iSCSI" #. TRANSLATORS: button label, starts iSCSI discovery #: src/components/storage/iscsi/TargetsSection.jsx:156 msgid "Discover" -msgstr "" +msgstr "Objevit" #. TRANSLATORS: iSCSI targets section title #: src/components/storage/iscsi/TargetsSection.jsx:167 msgid "Targets" -msgstr "" +msgstr "Cíle" #: src/components/storage/routes.js:36 msgid "Proposal" -msgstr "" +msgstr "Návrh" #: src/components/storage/utils.js:64 msgid "KiB" -msgstr "" +msgstr "KiB" #: src/components/storage/utils.js:65 msgid "MiB" -msgstr "" +msgstr "MiB" #: src/components/storage/utils.js:66 msgid "GiB" -msgstr "" +msgstr "GiB" #: src/components/storage/utils.js:67 msgid "TiB" -msgstr "" +msgstr "TiB" #: src/components/storage/utils.js:68 msgid "PiB" -msgstr "" +msgstr "PiB" #: src/components/storage/utils.js:77 msgid "Delete current content" -msgstr "" +msgstr "Odstranit aktuální obsah" #: src/components/storage/utils.js:78 msgid "All partitions will be removed and any data in the disks will be lost." msgstr "" +"Všechny oddíly budou odstraněny a veškerá data na discích budou ztracena." #. TRANSLATORS: This is presented next to the label "Find space", so the whole sentence #. would read as "Find space deleting current content". Keep it short #: src/components/storage/utils.js:82 msgid "deleting current content" -msgstr "" +msgstr "odstranění aktuálního obsahu" #: src/components/storage/utils.js:87 msgid "Shrink existing partitions" -msgstr "" +msgstr "Zmenšit stávající oddíly" #: src/components/storage/utils.js:88 msgid "The data is kept, but the current partitions will be resized as needed." msgstr "" +"Data zůstanou zachována, ale velikost aktuálních oddílů se podle potřeby " +"změní." #. TRANSLATORS: This is presented next to the label "Find space", so the whole sentence #. would read as "Find space shrinking partitions". Keep it short. #: src/components/storage/utils.js:92 msgid "shrinking partitions" -msgstr "" +msgstr "zmenšování oddílů" #: src/components/storage/utils.js:97 msgid "Use available space" -msgstr "" +msgstr "Využít dostupný prostor" #: src/components/storage/utils.js:98 msgid "" "The data is kept. Only the space not assigned to any partition will be used." msgstr "" +"Data jsou uchována. Využije se pouze prostor, který není přiřazen žádnému " +"oddílu." #. TRANSLATORS: This is presented next to the label "Find space", so the whole sentence #. would read as "Find space without modifying any partition". Keep it short. #: src/components/storage/utils.js:102 msgid "without modifying any partition" -msgstr "" +msgstr "bez úpravy jakéhokoli oddílu" #: src/components/storage/utils.js:107 msgid "Custom" -msgstr "" +msgstr "Vlastní" #: src/components/storage/utils.js:108 msgid "Select what to do with each partition." -msgstr "" +msgstr "Vyberte, co se má s jednotlivými oddíly dělat." #. TRANSLATORS: This is presented next to the label "Find space", so the whole sentence #. would read as "Find space with custom actions". Keep it short. #: src/components/storage/utils.js:112 msgid "with custom actions" -msgstr "" +msgstr "s vlastními akcemi" -#: src/components/users/FirstUser.jsx:35 +#: src/components/users/FirstUser.jsx:34 msgid "No user defined yet." -msgstr "" +msgstr "Zatím není definován žádný uživatel." -#: src/components/users/FirstUser.jsx:39 +#: src/components/users/FirstUser.jsx:38 msgid "" "Please, be aware that a user must be defined before installing the system to " "be able to log into it." msgstr "" +"Pozor, před instalací systému musí být definován uživatel, aby se pak do " +"systému dalo přihlásit." -#: src/components/users/FirstUser.jsx:45 +#: src/components/users/FirstUser.jsx:44 msgid "Define a user now" -msgstr "" +msgstr "Nyní definujte uživatele" -#: src/components/users/FirstUser.jsx:58 -#: src/components/users/FirstUserForm.jsx:227 +#: src/components/users/FirstUser.jsx:57 +#: src/components/users/FirstUserForm.jsx:217 msgid "Full name" -msgstr "" +msgstr "Celé jméno" -#: src/components/users/FirstUser.jsx:59 -#: src/components/users/FirstUserForm.jsx:241 -#: src/components/users/FirstUserForm.jsx:246 -#: src/components/users/FirstUserForm.jsx:249 +#: src/components/users/FirstUser.jsx:58 +#: src/components/users/FirstUserForm.jsx:231 +#: src/components/users/FirstUserForm.jsx:236 +#: src/components/users/FirstUserForm.jsx:239 msgid "Username" -msgstr "" +msgstr "Uživatelské jméno" -#: src/components/users/FirstUser.jsx:124 -#: src/components/users/RootAuthMethods.jsx:104 -#: src/components/users/RootAuthMethods.jsx:116 +#: src/components/users/FirstUser.jsx:89 +#: src/components/users/RootAuthMethods.jsx:78 +#: src/components/users/RootAuthMethods.jsx:90 msgid "Discard" -msgstr "" +msgstr "Vyřadit" -#: src/components/users/FirstUserForm.jsx:57 +#: src/components/users/FirstUserForm.jsx:58 msgid "Username suggestion dropdown" -msgstr "" +msgstr "Rozbalovací nabídka uživatelských jmen" #. TRANSLATORS: dropdown username suggestions -#: src/components/users/FirstUserForm.jsx:72 +#: src/components/users/FirstUserForm.jsx:73 msgid "Use suggested username" -msgstr "" +msgstr "Použijte navrhované uživatelské jméno" -#: src/components/users/FirstUserForm.jsx:151 +#: src/components/users/FirstUserForm.jsx:144 msgid "All fields are required" -msgstr "" - -#: src/components/users/FirstUserForm.jsx:158 -msgid "Please, try again." -msgstr "" +msgstr "Všechna pole jsou povinná" -#: src/components/users/FirstUserForm.jsx:211 +#: src/components/users/FirstUserForm.jsx:201 msgid "Create user" -msgstr "" +msgstr "Vytvořit uživatele" -#: src/components/users/FirstUserForm.jsx:211 +#: src/components/users/FirstUserForm.jsx:201 msgid "Edit user" -msgstr "" +msgstr "Upravit uživatele" -#: src/components/users/FirstUserForm.jsx:231 -#: src/components/users/FirstUserForm.jsx:233 +#: src/components/users/FirstUserForm.jsx:221 +#: src/components/users/FirstUserForm.jsx:223 msgid "User full name" -msgstr "" +msgstr "Celé jméno uživatele" -#: src/components/users/FirstUserForm.jsx:271 +#: src/components/users/FirstUserForm.jsx:261 msgid "Edit password too" -msgstr "" +msgstr "Upravit také heslo" -#: src/components/users/FirstUserForm.jsx:287 +#: src/components/users/FirstUserForm.jsx:277 msgid "user autologin" -msgstr "" +msgstr "automatické přihlášení uživatele" #. TRANSLATORS: check box label -#: src/components/users/FirstUserForm.jsx:291 +#: src/components/users/FirstUserForm.jsx:281 msgid "Auto-login" -msgstr "" +msgstr "Automatické přihlášení" -#: src/components/users/RootAuthMethods.jsx:35 +#: src/components/users/RootAuthMethods.jsx:36 msgid "No root authentication method defined yet." -msgstr "" +msgstr "Zatím není definována žádná metoda ověřování superuživatele root." -#: src/components/users/RootAuthMethods.jsx:39 +#: src/components/users/RootAuthMethods.jsx:40 msgid "" "Please, define at least one authentication method for logging into the " "system as root." msgstr "" +"Definujte alespoň jednu metodu ověřování pro přihlášení do systému jako root." -#: src/components/users/RootAuthMethods.jsx:46 +#: src/components/users/RootAuthMethods.jsx:47 msgid "Set a password" -msgstr "" +msgstr "Nastavte heslo" -#: src/components/users/RootAuthMethods.jsx:50 +#: src/components/users/RootAuthMethods.jsx:51 msgid "Upload a SSH Public Key" -msgstr "" +msgstr "Nahrátí veřejného klíče SSH" -#: src/components/users/RootAuthMethods.jsx:100 -#: src/components/users/RootAuthMethods.jsx:112 +#: src/components/users/RootAuthMethods.jsx:74 +#: src/components/users/RootAuthMethods.jsx:86 msgid "Set" -msgstr "" +msgstr "Nastavit" -#: src/components/users/RootAuthMethods.jsx:132 +#: src/components/users/RootAuthMethods.jsx:97 msgid "Already set" -msgstr "" +msgstr "Již nastaveno" -#: src/components/users/RootAuthMethods.jsx:132 -#: src/components/users/RootAuthMethods.jsx:136 +#: src/components/users/RootAuthMethods.jsx:97 +#: src/components/users/RootAuthMethods.jsx:101 msgid "Not set" -msgstr "" +msgstr "Nenastaveno" #. TRANSLATORS: table header, user authentication method -#: src/components/users/RootAuthMethods.jsx:157 +#: src/components/users/RootAuthMethods.jsx:122 msgid "Method" -msgstr "" +msgstr "Metoda" -#: src/components/users/RootAuthMethods.jsx:174 +#: src/components/users/RootAuthMethods.jsx:139 msgid "SSH Key" -msgstr "" +msgstr "Klíč SSH" -#: src/components/users/RootAuthMethods.jsx:193 +#: src/components/users/RootAuthMethods.jsx:158 msgid "Change the root password" -msgstr "" +msgstr "Změna hesla roota" -#: src/components/users/RootAuthMethods.jsx:193 +#: src/components/users/RootAuthMethods.jsx:158 msgid "Set a root password" -msgstr "" +msgstr "Nastavte heslo roota" -#: src/components/users/RootAuthMethods.jsx:203 +#: src/components/users/RootAuthMethods.jsx:168 msgid "Edit the SSH Public Key for root" -msgstr "" +msgstr "Úprava veřejného klíče SSH pro uživatele root" -#: src/components/users/RootAuthMethods.jsx:204 +#: src/components/users/RootAuthMethods.jsx:169 msgid "Add a SSH Public Key for root" -msgstr "" +msgstr "Přidat veřejný klíč SSH pro uživatele root" -#: src/components/users/RootPasswordPopup.jsx:43 +#: src/components/users/RootPasswordPopup.jsx:44 msgid "Root password" -msgstr "" +msgstr "Heslo roota" #: src/components/users/RootSSHKeyPopup.jsx:43 msgid "Set root SSH public key" -msgstr "" +msgstr "Nastavte veřejný klíč SSH pro roota" #: src/components/users/RootSSHKeyPopup.jsx:71 msgid "Root SSH public key" -msgstr "" +msgstr "Veřejný klíč SSH pro roota" #: src/components/users/RootSSHKeyPopup.jsx:76 msgid "Upload, paste, or drop an SSH public key" -msgstr "" +msgstr "Nahrání, vložení nebo přetažení veřejného klíče SSH" #. TRANSLATORS: push button label #: src/components/users/RootSSHKeyPopup.jsx:78 msgid "Upload" -msgstr "" +msgstr "Nahrát" #. TRANSLATORS: push button label, clears the related input field #: src/components/users/RootSSHKeyPopup.jsx:80 msgid "Clear" -msgstr "" +msgstr "Smazat" #: src/components/users/UsersPage.jsx:45 msgid "First user" -msgstr "" +msgstr "První uživatel" #: src/components/users/UsersPage.jsx:52 msgid "Root authentication" -msgstr "" +msgstr "Ověření superuživatele root" + +#, c-format +#~ msgid "Register %s" +#~ msgstr "Registrovat %s" + +#~ msgid "Registration code" +#~ msgstr "Registrační kód" + +#~ msgid "Email" +#~ msgstr "E-mail" + +#~ msgid "The installation will take" +#~ msgstr "Instalace zabere" + +#, c-format +#~ msgid "The installation will take %s including:" +#~ msgstr "Instalace bude trvat %s včetně:" + +#~ msgid "No additional software was selected." +#~ msgstr "Nebyl vybrán žádný další software." + +#~ msgid "The following software patterns are selected for installation:" +#~ msgstr "Pro instalaci jsou vybrány tyto softwarové vzory:" + +#~ msgid "Selected patterns" +#~ msgstr "Vybrané vzory" + +#~ msgid "Change selection" +#~ msgstr "Změnit výběr" + +#~ msgid "" +#~ "This product does not allow to select software patterns during " +#~ "installation. However, you can add additional software once the " +#~ "installation is finished." +#~ msgstr "" +#~ "Tento produkt neumožňuje výběr softwarových vzorů během instalace. Po " +#~ "dokončení instalace však můžete přidat další software." + +#~ msgid "auto selected" +#~ msgstr "automaticky vybráno" + +#~ msgid "None of the patterns match the filter." +#~ msgstr "Žádný ze vzorů neodpovídá filtru." + +#~ msgid "Software selection" +#~ msgstr "Výběr softwaru" + +#~ msgid "Filter by pattern title or description" +#~ msgstr "Filtrování podle názvu nebo popisu vzoru" + +#, c-format +#~ msgid "Installation will take %s." +#~ msgstr "Instalace bude trvat %s." + +#~ msgid "" +#~ "This space includes the base system and the selected software patterns, " +#~ "if any." +#~ msgstr "" +#~ "Tento prostor zahrnuje základní systém a vybrané softwarové vzory, pokud " +#~ "existují." #~ msgid "Reading file..." #~ msgstr "Soubor se načítá…" diff --git a/web/po/de.po b/web/po/de.po index 9b304decba..49ab3c6ad6 100644 --- a/web/po/de.po +++ b/web/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-18 02:24+0000\n" +"POT-Creation-Date: 2024-07-28 02:29+0000\n" "PO-Revision-Date: 2024-07-13 19:47+0000\n" "Last-Translator: Ettore Atalan \n" "Language-Team: German - + From 4212f0195664b3707b1b7d6b4595f1009c79c220 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Mon, 29 Jul 2024 09:56:13 +0100 Subject: [PATCH 13/18] doc(web): document progress queries --- web/src/queries/progress.ts | 33 ++++++++++++++++++++++++++++----- 1 file changed, 28 insertions(+), 5 deletions(-) diff --git a/web/src/queries/progress.ts b/web/src/queries/progress.ts index d7fbfff5c2..1904c4a6a5 100644 --- a/web/src/queries/progress.ts +++ b/web/src/queries/progress.ts @@ -30,6 +30,14 @@ const servicesMap = { "org.opensuse.Agama.Storage1": "storage", }; +/** + * Returns a query for retrieving the progress information for a given service + * + * At this point, the services that implement the progress API are + * "manager", "software" and "storage". + * + * @param service - Service to retrieve the progress from (e.g., "manager") + */ const progressQuery = (service: string) => { return { queryKey: ["progress", service], @@ -40,17 +48,26 @@ const progressQuery = (service: string) => { }; }; -type UseProgressOptions = { - suspense: boolean; -}; - -const useProgress = (service: string, options?: QueryHookOptions): Progress => { +/** + * Hook that returns the progress for a given service + * + * @param service - Service to retrieve the progress from + * @param options - Query options + * @returns Progress information or undefined if unknown + */ +const useProgress = (service: string, options?: QueryHookOptions): Progress | undefined => { const query = progressQuery(service); const func = options?.suspense ? useSuspenseQuery : useQuery; const { data } = func(query); return data; }; +/** + * Hook that registers a useEffect to listen for progress changes + * + * It listens for all progress changes but updates only existing + * progress queries. + */ const useProgressChanges = () => { const client = useInstallerClient(); const queryClient = useQueryClient(); @@ -78,6 +95,12 @@ const useProgressChanges = () => { }, [client, queryClient]); }; +/** + * Hook that invalidates all the existing queries. + * + * It offers a way to clear previously cached progress information. It is expected to + * be used before starting to display the progress. + */ const useResetProgress = () => { const queryClient = useQueryClient(); From 3605496aba5a8c5947be0fab0b29b584975faf73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Mon, 29 Jul 2024 09:56:42 +0100 Subject: [PATCH 14/18] fix(web): specify a missing dependency in useResetProgress --- web/src/queries/progress.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/queries/progress.ts b/web/src/queries/progress.ts index 1904c4a6a5..7820c3be9c 100644 --- a/web/src/queries/progress.ts +++ b/web/src/queries/progress.ts @@ -108,7 +108,7 @@ const useResetProgress = () => { return () => { queryClient.invalidateQueries({ queryKey: ["progress"] }); }; - }, []); + }, [queryClient]); }; export { useProgress, useProgressChanges, useResetProgress, progressQuery }; From 6f0a306e7d7a1066188ef9ea4d9ee29e06ea83cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Mon, 29 Jul 2024 09:58:11 +0100 Subject: [PATCH 15/18] fix(web): clear progress information first --- web/src/components/core/ProgressReport.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/core/ProgressReport.jsx b/web/src/components/core/ProgressReport.jsx index 9791d8dd49..bd5c2ae7ba 100644 --- a/web/src/components/core/ProgressReport.jsx +++ b/web/src/components/core/ProgressReport.jsx @@ -113,11 +113,11 @@ function findDetail(progresses) { * Shows progress steps when a product is selected. */ function ProgressReport({ title, firstStep }) { + useResetProgress(); const progress = useProgress("manager", { suspense: true }); const [steps, setSteps] = useState(progress.steps); const softwareProgress = useProgress("software"); const storageProgress = useProgress("storage"); - useResetProgress(); useProgressChanges(); useEffect(() => { From 0bcc846bcbfd1be5dc930532583ced5218d0341b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Slez=C3=A1k?= Date: Mon, 29 Jul 2024 11:33:18 +0200 Subject: [PATCH 16/18] Require at least 8GB RAM for building the Rust package in OBS Require at least 4 parallel jobs (the build on S390 takes ages with just 2 jobs...) --- rust/package/_constraints | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rust/package/_constraints b/rust/package/_constraints index d16e04ec51..2a52ed7f2b 100644 --- a/rust/package/_constraints +++ b/rust/package/_constraints @@ -1,7 +1,12 @@ + 4 20 + + 8 + + SLOW_CPU From d30a62e1fb0baa7ea59516b9b3d8c099bcda513c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Slez=C3=A1k?= Date: Mon, 29 Jul 2024 14:07:01 +0200 Subject: [PATCH 17/18] Update all Rust crates --- rust/Cargo.lock | 1033 ++++++++++++++++++++++++----------------------- 1 file changed, 538 insertions(+), 495 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index ae78586b97..9154b3659e 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -4,9 +4,9 @@ version = 3 [[package]] name = "addr2line" -version = "0.21.0" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" +checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" dependencies = [ "gimli", ] @@ -57,7 +57,7 @@ dependencies = [ "jsonschema", "jsonwebtoken", "log", - "reqwest 0.12.4", + "reqwest 0.12.5", "serde", "serde_json", "serde_repr", @@ -101,7 +101,7 @@ dependencies = [ "gethostname", "gettext-rs", "http-body-util", - "hyper 1.2.0", + "hyper 1.4.1", "hyper-util", "jsonwebtoken", "libsystemd", @@ -189,47 +189,48 @@ dependencies = [ [[package]] name = "anstream" -version = "0.6.13" +version = "0.6.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb" +checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" dependencies = [ "anstyle", "anstyle-parse", "anstyle-query", "anstyle-wincon", "colorchoice", + "is_terminal_polyfill", "utf8parse", ] [[package]] name = "anstyle" -version = "1.0.6" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" +checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" [[package]] name = "anstyle-parse" -version = "0.2.3" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" +checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.0.2" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" +checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" dependencies = [ "windows-sys 0.52.0", ] [[package]] name = "anstyle-wincon" -version = "3.0.2" +version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" +checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" dependencies = [ "anstyle", "windows-sys 0.52.0", @@ -237,9 +238,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.81" +version = "1.0.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" +checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" [[package]] name = "async-broadcast" @@ -253,22 +254,21 @@ dependencies = [ [[package]] name = "async-channel" -version = "2.2.0" +version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3" +checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" dependencies = [ "concurrent-queue", - "event-listener 5.2.0", - "event-listener-strategy 0.5.0", + "event-listener-strategy", "futures-core", "pin-project-lite", ] [[package]] name = "async-compression" -version = "0.4.6" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a116f46a969224200a0a97f29cfd4c50e7534e4b4826bd23ea2c3c533039c82c" +checksum = "fec134f64e2bc57411226dfc4e52dec859ddfc7e711fc5e07b612584f000e4aa" dependencies = [ "brotli", "futures-core", @@ -299,18 +299,18 @@ dependencies = [ [[package]] name = "async-io" -version = "2.3.2" +version = "2.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884" +checksum = "0d6baa8f0178795da0e71bc42c9e5d13261aac7ee549853162e66a241ba17964" dependencies = [ - "async-lock 3.3.0", + "async-lock 3.4.0", "cfg-if", "concurrent-queue", "futures-io", "futures-lite 2.3.0", "parking", - "polling 3.5.0", - "rustix 0.38.32", + "polling 3.7.2", + "rustix 0.38.34", "slab", "tracing", "windows-sys 0.52.0", @@ -327,12 +327,12 @@ dependencies = [ [[package]] name = "async-lock" -version = "3.3.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" +checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" dependencies = [ - "event-listener 4.0.3", - "event-listener-strategy 0.4.0", + "event-listener 5.3.1", + "event-listener-strategy", "pin-project-lite", ] @@ -349,37 +349,37 @@ dependencies = [ "cfg-if", "event-listener 3.1.0", "futures-lite 1.13.0", - "rustix 0.38.32", + "rustix 0.38.34", "windows-sys 0.48.0", ] [[package]] name = "async-recursion" -version = "1.1.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30c5ef0ede93efbf733c1a727f3b6b5a1060bbedd5600183e66f6e4be4af0ec5" +checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] name = "async-signal" -version = "0.2.5" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" +checksum = "dfb3634b73397aa844481f814fad23bbf07fdb0eabec10f2eb95e58944b1ec32" dependencies = [ - "async-io 2.3.2", - "async-lock 2.8.0", + "async-io 2.3.3", + "async-lock 3.4.0", "atomic-waker", "cfg-if", "futures-core", "futures-io", - "rustix 0.38.32", + "rustix 0.38.34", "signal-hook-registry", "slab", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -401,24 +401,24 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] name = "async-task" -version = "4.7.0" +version = "4.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" +checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.78" +version = "0.1.81" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "461abc97219de0eaaf81fe3ef974a540158f3d079c2ab200f891f1a2ef201e85" +checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] @@ -429,15 +429,15 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "autocfg" -version = "1.1.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" +checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" [[package]] name = "axum" -version = "0.7.4" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1236b4b292f6c4d6dc34604bb5120d85c3fe1d1aa596bd5cc52ca054d13e7b9e" +checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf" dependencies = [ "async-trait", "axum-core", @@ -445,9 +445,9 @@ dependencies = [ "bytes", "futures-util", "http 1.1.0", - "http-body 1.0.0", + "http-body 1.0.1", "http-body-util", - "hyper 1.2.0", + "hyper 1.4.1", "hyper-util", "itoa", "matchit", @@ -461,7 +461,7 @@ dependencies = [ "serde_path_to_error", "serde_urlencoded", "sha1", - "sync_wrapper", + "sync_wrapper 1.0.1", "tokio", "tokio-tungstenite", "tower", @@ -480,12 +480,12 @@ dependencies = [ "bytes", "futures-util", "http 1.1.0", - "http-body 1.0.0", + "http-body 1.0.1", "http-body-util", "mime", "pin-project-lite", "rustversion", - "sync_wrapper", + "sync_wrapper 0.1.2", "tower-layer", "tower-service", "tracing", @@ -493,18 +493,18 @@ dependencies = [ [[package]] name = "axum-extra" -version = "0.9.2" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "895ff42f72016617773af68fb90da2a9677d89c62338ec09162d4909d86fdd8f" +checksum = "0be6ea09c9b96cb5076af0de2e383bd2bc0c18f827cf1967bdd353e0b910d733" dependencies = [ "axum", "axum-core", "bytes", - "cookie 0.18.0", + "cookie", "futures-util", "headers", "http 1.1.0", - "http-body 1.0.0", + "http-body 1.0.1", "http-body-util", "mime", "pin-project-lite", @@ -512,13 +512,14 @@ dependencies = [ "tower", "tower-layer", "tower-service", + "tracing", ] [[package]] name = "backtrace" -version = "0.3.70" +version = "0.3.73" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95d8e92cac0961e91dbd517496b00f7e9b92363dbe6d42c3198268323798860c" +checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" dependencies = [ "addr2line", "cc", @@ -543,9 +544,9 @@ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" [[package]] name = "base64" -version = "0.22.0" +version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "bindgen" @@ -553,7 +554,7 @@ version = "0.69.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "cexpr", "clang-sys", "itertools", @@ -564,7 +565,7 @@ dependencies = [ "regex", "rustc-hash", "shlex", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] @@ -590,9 +591,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" +checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" dependencies = [ "serde", ] @@ -614,25 +615,22 @@ dependencies = [ [[package]] name = "blocking" -version = "1.5.1" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" +checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" dependencies = [ "async-channel", - "async-lock 3.3.0", "async-task", - "fastrand 2.0.1", "futures-io", "futures-lite 2.3.0", "piper", - "tracing", ] [[package]] name = "brotli" -version = "3.5.0" +version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391" +checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", @@ -641,9 +639,9 @@ dependencies = [ [[package]] name = "brotli-decompressor" -version = "2.5.1" +version = "4.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f" +checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", @@ -651,15 +649,15 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.15.4" +version = "3.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" +checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" [[package]] name = "bytecount" -version = "0.6.7" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205" +checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce" [[package]] name = "byteorder" @@ -669,15 +667,15 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.6.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" +checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952" [[package]] name = "cc" -version = "1.0.90" +version = "1.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5" +checksum = "26a5c3fd7bfa1ce3897a3a3501d362b2d87b7f2583ebcb4a949ec25911025cbc" [[package]] name = "cexpr" @@ -704,7 +702,7 @@ dependencies = [ "iana-time-zone", "num-traits", "serde", - "windows-targets 0.52.4", + "windows-targets 0.52.6", ] [[package]] @@ -731,18 +729,18 @@ dependencies = [ [[package]] name = "cidr" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d18b093eba54c9aaa1e3784d4361eb2ba944cf7d0a932a830132238f483e8d8" +checksum = "6bdf600c45bd958cf2945c445264471cca8b6c8e67bc87b71affd6d7e5682621" dependencies = [ "serde", ] [[package]] name = "clang-sys" -version = "1.7.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1" +checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" dependencies = [ "glob", "libc", @@ -750,9 +748,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.3" +version = "4.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "949626d00e063efc93b6dca932419ceb5432f99769911c0b995f7e884c778813" +checksum = "35723e6a11662c2afb578bcf0b88bf6ea8e21282a953428f240574fcc3a2b5b3" dependencies = [ "clap_builder", "clap_derive", @@ -760,46 +758,46 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.2" +version = "4.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" +checksum = "49eb96cbfa7cfa35017b7cd548c75b14c3118c98b423041d70562665e07fb0fa" dependencies = [ "anstream", "anstyle", "clap_lex", - "strsim 0.11.0", + "strsim", "terminal_size", ] [[package]] name = "clap_derive" -version = "4.5.3" +version = "4.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90239a040c80f5e14809ca132ddc4176ab33d5e17e49691793296e3fcb34d72f" +checksum = "5d029b67f89d30bbb547c89fd5161293c0aec155fc691d7924b64550662db93e" dependencies = [ "heck", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] name = "clap_lex" -version = "0.7.0" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" +checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" [[package]] name = "colorchoice" -version = "1.0.0" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" +checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" [[package]] name = "concurrent-queue" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" dependencies = [ "crossbeam-utils", ] @@ -868,20 +866,9 @@ dependencies = [ [[package]] name = "cookie" -version = "0.17.0" +version = "0.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24" -dependencies = [ - "percent-encoding", - "time", - "version_check", -] - -[[package]] -name = "cookie" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cd91cf61412820176e137621345ee43b3f4423e589e7ae4e50d601d93e35ef8" +checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" dependencies = [ "percent-encoding", "time", @@ -890,12 +877,12 @@ dependencies = [ [[package]] name = "cookie_store" -version = "0.20.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "387461abbc748185c3a6e1673d826918b450b87ff22639429c694619a83b6cf6" +checksum = "4934e6b7e8419148b6ef56950d277af8561060b56afd59e2aadf98b59fce6baa" dependencies = [ - "cookie 0.17.0", - "idna 0.3.0", + "cookie", + "idna 0.5.0", "log", "publicsuffix", "serde", @@ -932,18 +919,18 @@ dependencies = [ [[package]] name = "crc32fast" -version = "1.4.0" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" +checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" dependencies = [ "cfg-if", ] [[package]] name = "crossbeam-utils" -version = "0.8.19" +version = "0.8.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" +checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" [[package]] name = "crossterm" @@ -954,7 +941,7 @@ dependencies = [ "bitflags 1.3.2", "crossterm_winapi", "libc", - "mio", + "mio 0.8.11", "parking_lot", "signal-hook", "signal-hook-mio", @@ -997,15 +984,15 @@ dependencies = [ "openssl-probe", "openssl-sys", "schannel", - "socket2 0.5.6", + "socket2 0.5.7", "windows-sys 0.52.0", ] [[package]] name = "curl-sys" -version = "0.4.72+curl-8.6.0" +version = "0.4.73+curl-8.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29cbdc8314c447d11e8fd156dcdd031d9e02a7a976163e396b548c03153bc9ea" +checksum = "450ab250ecf17227c39afb9a2dd9261dc0035cb80f2612472fc0c4aac2dcb84d" dependencies = [ "cc", "libc", @@ -1018,9 +1005,9 @@ dependencies = [ [[package]] name = "darling" -version = "0.20.8" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391" +checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" dependencies = [ "darling_core", "darling_macro", @@ -1028,34 +1015,34 @@ dependencies = [ [[package]] name = "darling_core" -version = "0.20.8" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f" +checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" dependencies = [ "fnv", "ident_case", "proc-macro2", "quote", - "strsim 0.10.0", - "syn 2.0.53", + "strsim", + "syn 2.0.72", ] [[package]] name = "darling_macro" -version = "0.20.8" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f" +checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] name = "data-encoding" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" +checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" [[package]] name = "deranged" @@ -1106,9 +1093,9 @@ checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" [[package]] name = "either" -version = "1.10.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" +checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" [[package]] name = "encode_unicode" @@ -1118,18 +1105,18 @@ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" [[package]] name = "encoding_rs" -version = "0.8.33" +version = "0.8.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" +checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" dependencies = [ "cfg-if", ] [[package]] name = "enumflags2" -version = "0.7.9" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3278c9d5fb675e0a51dabcf4c0d355f692b064171535ba72361be1528a9d8e8d" +checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d" dependencies = [ "enumflags2_derive", "serde", @@ -1137,13 +1124,13 @@ dependencies = [ [[package]] name = "enumflags2_derive" -version = "0.7.9" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c785274071b1b420972453b306eeca06acf4633829db4223b58a2a8c5953bc4" +checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] @@ -1154,9 +1141,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "errno" -version = "0.3.8" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" +checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" dependencies = [ "libc", "windows-sys 0.52.0", @@ -1181,20 +1168,9 @@ dependencies = [ [[package]] name = "event-listener" -version = "4.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" -dependencies = [ - "concurrent-queue", - "parking", - "pin-project-lite", -] - -[[package]] -name = "event-listener" -version = "5.2.0" +version = "5.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b5fb89194fa3cad959b833185b3063ba881dbfc7030680b314250779fb4cc91" +checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" dependencies = [ "concurrent-queue", "parking", @@ -1203,21 +1179,11 @@ dependencies = [ [[package]] name = "event-listener-strategy" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" -dependencies = [ - "event-listener 4.0.3", - "pin-project-lite", -] - -[[package]] -name = "event-listener-strategy" -version = "0.5.0" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291" +checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" dependencies = [ - "event-listener 5.2.0", + "event-listener 5.3.1", "pin-project-lite", ] @@ -1242,15 +1208,15 @@ dependencies = [ [[package]] name = "fastrand" -version = "2.0.1" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" +checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" [[package]] name = "flate2" -version = "1.0.28" +version = "1.0.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" +checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" dependencies = [ "crc32fast", "miniz_oxide", @@ -1356,7 +1322,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] @@ -1417,9 +1383,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.12" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" dependencies = [ "cfg-if", "js-sys", @@ -1450,9 +1416,9 @@ dependencies = [ [[package]] name = "gimli" -version = "0.28.1" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" +checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" [[package]] name = "glob" @@ -1462,9 +1428,9 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" [[package]] name = "h2" -version = "0.3.25" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fbd2820c5e49886948654ab546d0688ff24530286bdcf8fca3cefb16d4618eb" +checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" dependencies = [ "bytes", "fnv", @@ -1472,7 +1438,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.2.5", + "indexmap 2.2.6", "slab", "tokio", "tokio-util", @@ -1481,17 +1447,17 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.3" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51ee2dd2e4f378392eeff5d51618cd9a63166a2513846bbc55f21cfacd9199d4" +checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" dependencies = [ + "atomic-waker", "bytes", "fnv", "futures-core", "futures-sink", - "futures-util", "http 1.1.0", - "indexmap 2.2.5", + "indexmap 2.2.6", "slab", "tokio", "tokio-util", @@ -1512,9 +1478,9 @@ checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" [[package]] name = "hashbrown" -version = "0.14.3" +version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" [[package]] name = "headers" @@ -1552,6 +1518,12 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" +[[package]] +name = "hermit-abi" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" + [[package]] name = "hex" version = "0.4.3" @@ -1611,9 +1583,9 @@ dependencies = [ [[package]] name = "http-body" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ "bytes", "http 1.1.0", @@ -1621,28 +1593,28 @@ dependencies = [ [[package]] name = "http-body-util" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d" +checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" dependencies = [ "bytes", - "futures-core", + "futures-util", "http 1.1.0", - "http-body 1.0.0", + "http-body 1.0.1", "pin-project-lite", ] [[package]] name = "http-range-header" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ce4ef31cda248bbdb6e6820603b82dfcd9e833db65a43e997a0ccec777d11fe" +checksum = "08a397c49fec283e3d6211adbe480be95aae5f304cfb923e9970e08956d5168a" [[package]] name = "httparse" -version = "1.8.0" +version = "1.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" +checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" [[package]] name = "httpdate" @@ -1652,22 +1624,22 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "hyper" -version = "0.14.28" +version = "0.14.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" +checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9" dependencies = [ "bytes", "futures-channel", "futures-core", "futures-util", - "h2 0.3.25", + "h2 0.3.26", "http 0.2.12", "http-body 0.4.6", "httparse", "httpdate", "itoa", "pin-project-lite", - "socket2 0.5.6", + "socket2 0.5.7", "tokio", "tower-service", "tracing", @@ -1676,16 +1648,16 @@ dependencies = [ [[package]] name = "hyper" -version = "1.2.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "186548d73ac615b32a73aafe38fb4f56c0d340e110e5a200bcadbaf2e199263a" +checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" dependencies = [ "bytes", "futures-channel", "futures-util", - "h2 0.4.3", + "h2 0.4.5", "http 1.1.0", - "http-body 1.0.0", + "http-body 1.0.1", "httparse", "httpdate", "itoa", @@ -1695,6 +1667,23 @@ dependencies = [ "want", ] +[[package]] +name = "hyper-rustls" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155" +dependencies = [ + "futures-util", + "http 1.1.0", + "hyper 1.4.1", + "hyper-util", + "rustls", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower-service", +] + [[package]] name = "hyper-tls" version = "0.5.0" @@ -1702,7 +1691,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" dependencies = [ "bytes", - "hyper 0.14.28", + "hyper 0.14.30", "native-tls", "tokio", "tokio-native-tls", @@ -1716,7 +1705,7 @@ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" dependencies = [ "bytes", "http-body-util", - "hyper 1.2.0", + "hyper 1.4.1", "hyper-util", "native-tls", "tokio", @@ -1726,18 +1715,18 @@ dependencies = [ [[package]] name = "hyper-util" -version = "0.1.3" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa" +checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956" dependencies = [ "bytes", "futures-channel", "futures-util", "http 1.1.0", - "http-body 1.0.0", - "hyper 1.2.0", + "http-body 1.0.1", + "hyper 1.4.1", "pin-project-lite", - "socket2 0.5.6", + "socket2 0.5.7", "tokio", "tower", "tower-service", @@ -1806,12 +1795,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.2.5" +version = "2.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4" +checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" dependencies = [ "equivalent", - "hashbrown 0.14.3", + "hashbrown 0.14.5", "serde", ] @@ -1834,7 +1823,7 @@ version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fddf93031af70e75410a2511ec04d49e758ed2f26dad3404a934e0fb45cc12a" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "crossterm", "dyn-clone", "fxhash", @@ -1846,9 +1835,9 @@ dependencies = [ [[package]] name = "instant" -version = "0.1.12" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" dependencies = [ "cfg-if", ] @@ -1859,7 +1848,7 @@ version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" dependencies = [ - "hermit-abi", + "hermit-abi 0.3.9", "libc", "windows-sys 0.48.0", ] @@ -1870,6 +1859,12 @@ version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" +[[package]] +name = "is_terminal_polyfill" +version = "1.70.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" + [[package]] name = "iso8601" version = "0.5.1" @@ -1890,9 +1885,9 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.10" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" +checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" [[package]] name = "js-sys" @@ -1958,9 +1953,9 @@ dependencies = [ [[package]] name = "lazy_static" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "lazycell" @@ -1970,9 +1965,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.153" +version = "0.2.155" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" +checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" [[package]] name = "libsystemd" @@ -1994,9 +1989,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.16" +version = "1.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e143b5e666b2695d28f6bca6497720813f699c9602dd7f5cac91008b8ada7f9" +checksum = "c15da26e5af7e25c90b37a2d75cdbf940cf4a55316de9d84c679c9b8bfabf82e" dependencies = [ "cc", "libc", @@ -2018,9 +2013,9 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" [[package]] name = "linux-raw-sys" -version = "0.4.13" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" +checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" [[package]] name = "locale_config" @@ -2037,9 +2032,9 @@ dependencies = [ [[package]] name = "lock_api" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" +checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" dependencies = [ "autocfg", "scopeguard", @@ -2047,9 +2042,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.21" +version = "0.4.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" +checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" [[package]] name = "macaddr" @@ -2077,9 +2072,9 @@ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" [[package]] name = "memchr" -version = "2.7.1" +version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "memoffset" @@ -2092,9 +2087,9 @@ dependencies = [ [[package]] name = "memoffset" -version = "0.9.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" +checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" dependencies = [ "autocfg", ] @@ -2107,9 +2102,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "mime_guess" -version = "2.0.4" +version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" +checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" dependencies = [ "mime", "unicase", @@ -2123,9 +2118,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.7.2" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" +checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" dependencies = [ "adler", ] @@ -2142,13 +2137,24 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "mio" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4" +dependencies = [ + "hermit-abi 0.3.9", + "libc", + "wasi", + "windows-sys 0.52.0", +] + [[package]] name = "native-tls" -version = "0.2.11" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" +checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" dependencies = [ - "lazy_static", "libc", "log", "openssl", @@ -2187,10 +2193,10 @@ version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "cfg-if", "libc", - "memoffset 0.9.0", + "memoffset 0.9.1", ] [[package]] @@ -2215,9 +2221,9 @@ dependencies = [ [[package]] name = "num" -version = "0.4.1" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af" +checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" dependencies = [ "num-bigint", "num-complex", @@ -2229,11 +2235,10 @@ dependencies = [ [[package]] name = "num-bigint" -version = "0.4.4" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" +checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" dependencies = [ - "autocfg", "num-integer", "num-traits", ] @@ -2246,9 +2251,9 @@ checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa" [[package]] name = "num-complex" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23c6602fda94a57c990fe0df199a035d83576b496aa29f4e634a8ac6004e68a6" +checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" dependencies = [ "num-traits", ] @@ -2270,9 +2275,9 @@ dependencies = [ [[package]] name = "num-iter" -version = "0.1.44" +version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9" +checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" dependencies = [ "autocfg", "num-integer", @@ -2281,11 +2286,10 @@ dependencies = [ [[package]] name = "num-rational" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" +checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" dependencies = [ - "autocfg", "num-bigint", "num-integer", "num-traits", @@ -2293,23 +2297,13 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.18" +version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ "autocfg", ] -[[package]] -name = "num_cpus" -version = "1.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" -dependencies = [ - "hermit-abi", - "libc", -] - [[package]] name = "number_prefix" version = "0.4.0" @@ -2347,9 +2341,9 @@ dependencies = [ [[package]] name = "object" -version = "0.32.2" +version = "0.36.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" +checksum = "3f203fa8daa7bb185f760ae12bd8e097f63d17041dcdcaf675ac54cdf863170e" dependencies = [ "memchr", ] @@ -2362,11 +2356,11 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "openssl" -version = "0.10.64" +version = "0.10.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" +checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "cfg-if", "foreign-types", "libc", @@ -2383,7 +2377,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] @@ -2394,9 +2388,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.101" +version = "0.9.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff" +checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" dependencies = [ "cc", "libc", @@ -2472,9 +2466,9 @@ checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" [[package]] name = "parking_lot" -version = "0.12.1" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" dependencies = [ "lock_api", "parking_lot_core", @@ -2482,22 +2476,22 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.9" +version = "0.9.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" +checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" dependencies = [ "cfg-if", "libc", "redox_syscall", "smallvec", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] name = "parse-zoneinfo" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41" +checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24" dependencies = [ "regex", ] @@ -2510,11 +2504,11 @@ checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" [[package]] name = "pem" -version = "3.0.3" +version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" +checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" dependencies = [ - "base64 0.21.7", + "base64 0.22.1", "serde", ] @@ -2526,9 +2520,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "pest" -version = "2.7.8" +version = "2.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56f8023d0fb78c8e03784ea1c7f3fa36e68a723138990b8d5a47d916b651e7a8" +checksum = "cd53dff83f26735fdc1ca837098ccf133605d794cdae66acfc2bfac3ec809d95" dependencies = [ "memchr", "thiserror", @@ -2537,9 +2531,9 @@ dependencies = [ [[package]] name = "pest_derive" -version = "2.7.8" +version = "2.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0d24f72393fd16ab6ac5738bc33cdb6a9aa73f8b902e8fe29cf4e67d7dd1026" +checksum = "2a548d2beca6773b1c244554d36fcf8548a8a58e74156968211567250e48e49a" dependencies = [ "pest", "pest_generator", @@ -2547,22 +2541,22 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.7.8" +version = "2.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdc17e2a6c7d0a492f0158d7a4bd66cc17280308bbaff78d5bef566dca35ab80" +checksum = "3c93a82e8d145725dcbaf44e5ea887c8a869efdcc28706df2d08c69e17077183" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] name = "pest_meta" -version = "2.7.8" +version = "2.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "934cd7631c050f4674352a6e835d5f6711ffbfb9345c2fc0107155ac495ae293" +checksum = "a941429fea7e08bedec25e4f6785b6ffaacc6b755da98df5ef3e7dcf4a124c4f" dependencies = [ "once_cell", "pest", @@ -2624,14 +2618,14 @@ checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] name = "pin-project-lite" -version = "0.2.13" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" +checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" [[package]] name = "pin-utils" @@ -2641,12 +2635,12 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "piper" -version = "0.2.1" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" +checksum = "ae1d5c74c9876f070d3e8fd503d748c7d974c3e48da8f41350fa5222ef9b4391" dependencies = [ "atomic-waker", - "fastrand 2.0.1", + "fastrand 2.1.0", "futures-io", ] @@ -2674,23 +2668,24 @@ dependencies = [ [[package]] name = "polling" -version = "3.5.0" +version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24f040dee2588b4963afb4e420540439d126f73fdacf4a9c486a96d840bac3c9" +checksum = "a3ed00ed3fbf728b5816498ecd316d1716eecaced9c0c8d2c5a6740ca214985b" dependencies = [ "cfg-if", "concurrent-queue", + "hermit-abi 0.4.0", "pin-project-lite", - "rustix 0.38.32", + "rustix 0.38.34", "tracing", "windows-sys 0.52.0", ] [[package]] name = "portable-atomic" -version = "1.6.0" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" +checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265" [[package]] name = "powerfmt" @@ -2740,9 +2735,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.79" +version = "1.0.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e" +checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" dependencies = [ "unicode-ident", ] @@ -2775,9 +2770,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.35" +version = "1.0.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" +checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" dependencies = [ "proc-macro2", ] @@ -2814,18 +2809,18 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.4.1" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" +checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.6.0", ] [[package]] name = "regex" -version = "1.10.3" +version = "1.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" +checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" dependencies = [ "aho-corasick", "memchr", @@ -2835,9 +2830,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.6" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" +checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" dependencies = [ "aho-corasick", "memchr", @@ -2846,9 +2841,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.8.2" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" +checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" [[package]] name = "reqwest" @@ -2861,10 +2856,10 @@ dependencies = [ "encoding_rs", "futures-core", "futures-util", - "h2 0.3.25", + "h2 0.3.26", "http 0.2.12", "http-body 0.4.6", - "hyper 0.14.28", + "hyper 0.14.30", "hyper-tls 0.5.0", "ipnet", "js-sys", @@ -2878,7 +2873,7 @@ dependencies = [ "serde", "serde_json", "serde_urlencoded", - "sync_wrapper", + "sync_wrapper 0.1.2", "system-configuration", "tokio", "tokio-native-tls", @@ -2892,22 +2887,23 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.12.4" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10" +checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" dependencies = [ - "base64 0.22.0", + "base64 0.22.1", "bytes", - "cookie 0.17.0", + "cookie", "cookie_store", "encoding_rs", "futures-core", "futures-util", - "h2 0.4.3", + "h2 0.4.5", "http 1.1.0", - "http-body 1.0.0", + "http-body 1.0.1", "http-body-util", - "hyper 1.2.0", + "hyper 1.4.1", + "hyper-rustls", "hyper-tls 0.6.0", "hyper-util", "ipnet", @@ -2922,7 +2918,7 @@ dependencies = [ "serde", "serde_json", "serde_urlencoded", - "sync_wrapper", + "sync_wrapper 1.0.1", "system-configuration", "tokio", "tokio-native-tls", @@ -2956,7 +2952,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" dependencies = [ "base64 0.21.7", - "bitflags 2.5.0", + "bitflags 2.6.0", "serde", "serde_derive", ] @@ -2973,9 +2969,9 @@ dependencies = [ [[package]] name = "rustc-demangle" -version = "0.1.23" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" +checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" [[package]] name = "rustc-hash" @@ -2999,17 +2995,30 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.32" +version = "0.38.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" +checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "errno", "libc", - "linux-raw-sys 0.4.13", + "linux-raw-sys 0.4.14", "windows-sys 0.52.0", ] +[[package]] +name = "rustls" +version = "0.23.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044" +dependencies = [ + "once_cell", + "rustls-pki-types", + "rustls-webpki", + "subtle", + "zeroize", +] + [[package]] name = "rustls-pemfile" version = "1.0.4" @@ -3025,27 +3034,38 @@ version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" dependencies = [ - "base64 0.22.0", + "base64 0.22.1", "rustls-pki-types", ] [[package]] name = "rustls-pki-types" -version = "1.5.0" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "beb461507cee2c2ff151784c52762cf4d9ff6a61f3e80968600ed24fa837fa54" +checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" + +[[package]] +name = "rustls-webpki" +version = "0.102.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e" +dependencies = [ + "ring", + "rustls-pki-types", + "untrusted", +] [[package]] name = "rustversion" -version = "1.0.14" +version = "1.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" +checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" [[package]] name = "ryu" -version = "1.0.17" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" +checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "schannel" @@ -3064,11 +3084,11 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "security-framework" -version = "2.9.2" +version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" +checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.6.0", "core-foundation", "core-foundation-sys", "libc", @@ -3077,9 +3097,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.9.1" +version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" +checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf" dependencies = [ "core-foundation-sys", "libc", @@ -3087,31 +3107,32 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.203" +version = "1.0.204" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094" +checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.203" +version = "1.0.204" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" +checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] name = "serde_json" -version = "1.0.117" +version = "1.0.121" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" +checksum = "4ab380d7d9f22ef3f21ad3e6c1ebe8e4fc7a2000ccba2e4d71fc96f15b2cb609" dependencies = [ "itoa", + "memchr", "ryu", "serde", ] @@ -3128,20 +3149,20 @@ dependencies = [ [[package]] name = "serde_repr" -version = "0.1.18" +version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb" +checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] name = "serde_spanned" -version = "0.6.5" +version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" +checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d" dependencies = [ "serde", ] @@ -3160,15 +3181,15 @@ dependencies = [ [[package]] name = "serde_with" -version = "3.7.0" +version = "3.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee80b0e361bbf88fd2f6e242ccd19cfda072cb0faa6ae694ecee08199938569a" +checksum = "69cecfa94848272156ea67b2b1a53f20fc7bc638c4a46d2f8abde08f05f4b857" dependencies = [ - "base64 0.21.7", + "base64 0.22.1", "chrono", "hex", "indexmap 1.9.3", - "indexmap 2.2.5", + "indexmap 2.2.6", "serde", "serde_derive", "serde_json", @@ -3178,23 +3199,23 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "3.7.0" +version = "3.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6561dc161a9224638a31d876ccdfefbc1df91d3f3a8342eddb35f055d48c7655" +checksum = "a8fee4991ef4f274617a51ad4af30519438dacb2f56ac773b08a1922ff743350" dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] name = "serde_yaml" -version = "0.9.33" +version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0623d197252096520c6f2a5e1171ee436e5af99a5d7caa2891e55e61950e6d9" +checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap 2.2.5", + "indexmap 2.2.6", "itoa", "ryu", "serde", @@ -3250,20 +3271,20 @@ dependencies = [ [[package]] name = "signal-hook-mio" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" +checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" dependencies = [ "libc", - "mio", + "mio 0.8.11", "signal-hook", ] [[package]] name = "signal-hook-registry" -version = "1.4.1" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" +checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" dependencies = [ "libc", ] @@ -3313,9 +3334,9 @@ dependencies = [ [[package]] name = "socket2" -version = "0.5.6" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" +checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" dependencies = [ "libc", "windows-sys 0.52.0", @@ -3335,15 +3356,9 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "strsim" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" - -[[package]] -name = "strsim" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "subprocess" @@ -3357,9 +3372,9 @@ dependencies = [ [[package]] name = "subtle" -version = "2.5.0" +version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "syn" @@ -3374,9 +3389,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.53" +version = "2.0.72" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7383cd0e49fff4b6b90ca5670bfd3e9d6a733b3f90c686605aa7eec8c4996032" +checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af" dependencies = [ "proc-macro2", "quote", @@ -3389,6 +3404,12 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" +[[package]] +name = "sync_wrapper" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" + [[package]] name = "system-configuration" version = "0.5.1" @@ -3423,8 +3444,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" dependencies = [ "cfg-if", - "fastrand 2.0.1", - "rustix 0.38.32", + "fastrand 2.1.0", + "rustix 0.38.34", "windows-sys 0.52.0", ] @@ -3434,28 +3455,28 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" dependencies = [ - "rustix 0.38.32", + "rustix 0.38.34", "windows-sys 0.48.0", ] [[package]] name = "thiserror" -version = "1.0.58" +version = "1.0.63" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" +checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.58" +version = "1.0.63" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" +checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] @@ -3470,9 +3491,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.34" +version = "0.3.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" +checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" dependencies = [ "deranged", "itoa", @@ -3491,9 +3512,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" [[package]] name = "time-macros" -version = "0.2.17" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774" +checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" dependencies = [ "num-conv", "time-core", @@ -3510,9 +3531,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.6.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" dependencies = [ "tinyvec_macros", ] @@ -3525,32 +3546,31 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.36.0" +version = "1.39.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" +checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" dependencies = [ "backtrace", "bytes", "libc", - "mio", - "num_cpus", + "mio 1.0.1", "pin-project-lite", "signal-hook-registry", - "socket2 0.5.6", + "socket2 0.5.7", "tokio-macros", "tracing", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] name = "tokio-macros" -version = "2.2.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" +checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] @@ -3575,6 +3595,17 @@ dependencies = [ "tokio", ] +[[package]] +name = "tokio-rustls" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" +dependencies = [ + "rustls", + "rustls-pki-types", + "tokio", +] + [[package]] name = "tokio-stream" version = "0.1.15" @@ -3613,35 +3644,34 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.10" +version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" +checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" dependencies = [ "bytes", "futures-core", "futures-sink", "pin-project-lite", "tokio", - "tracing", ] [[package]] name = "toml" -version = "0.8.12" +version = "0.8.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3" +checksum = "81967dd0dd2c1ab0bc3468bd7caecc32b8a4aa47d0c8c695d8c2b2108168d62c" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.22.9", + "toml_edit 0.22.17", ] [[package]] name = "toml_datetime" -version = "0.6.5" +version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" +checksum = "f8fb9f64314842840f1d940ac544da178732128f1c78c21772e876579e0da1db" dependencies = [ "serde", ] @@ -3652,22 +3682,22 @@ version = "0.19.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" dependencies = [ - "indexmap 2.2.5", + "indexmap 2.2.6", "toml_datetime", "winnow 0.5.40", ] [[package]] name = "toml_edit" -version = "0.22.9" +version = "0.22.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4" +checksum = "8d9f8729f5aea9562aac1cc0441f5d6de3cff1ee0c5d67293eeca5eb36ee7c16" dependencies = [ - "indexmap 2.2.5", + "indexmap 2.2.6", "serde", "serde_spanned", "toml_datetime", - "winnow 0.6.5", + "winnow 0.6.16", ] [[package]] @@ -3693,12 +3723,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ "async-compression", - "bitflags 2.5.0", + "bitflags 2.6.0", "bytes", "futures-core", "futures-util", "http 1.1.0", - "http-body 1.0.0", + "http-body 1.0.1", "http-body-util", "http-range-header", "httpdate", @@ -3745,7 +3775,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] @@ -3837,7 +3867,7 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" dependencies = [ - "memoffset 0.9.0", + "memoffset 0.9.1", "tempfile", "winapi", ] @@ -3880,9 +3910,9 @@ checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" [[package]] name = "unicode-width" -version = "0.1.11" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" +checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" [[package]] name = "unsafe-libyaml" @@ -3898,9 +3928,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "url" -version = "2.5.0" +version = "2.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" +checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" dependencies = [ "form_urlencoded", "idna 0.5.0", @@ -3925,17 +3955,17 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] name = "utf8parse" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "utoipa" -version = "4.2.0" +version = "4.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "272ebdfbc99111033031d2f10e018836056e4d2c8e2acda76450ec7974269fa7" +checksum = "c5afb1a60e207dca502682537fefcfd9921e71d0b83e9576060f09abc6efab23" dependencies = [ - "indexmap 2.2.5", + "indexmap 2.2.6", "serde", "serde_json", "utoipa-gen", @@ -3943,22 +3973,22 @@ dependencies = [ [[package]] name = "utoipa-gen" -version = "4.2.0" +version = "4.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3c9f4d08338c1bfa70dde39412a040a884c6f318b3d09aaaf3437a1e52027fc" +checksum = "7bf0e16c02bc4bf5322ab65f10ab1149bdbcaa782cba66dc7057370a3f8190be" dependencies = [ "proc-macro-error", "proc-macro2", "quote", "regex", - "syn 2.0.53", + "syn 2.0.72", ] [[package]] name = "uuid" -version = "1.8.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" +checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" dependencies = [ "getrandom", "serde", @@ -3978,15 +4008,15 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "version_check" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "waker-fn" -version = "1.1.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" +checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" [[package]] name = "want" @@ -4024,7 +4054,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", "wasm-bindgen-shared", ] @@ -4058,7 +4088,7 @@ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -4107,7 +4137,7 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" dependencies = [ - "windows-targets 0.52.4", + "windows-targets 0.52.6", ] [[package]] @@ -4125,7 +4155,7 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "windows-targets 0.52.4", + "windows-targets 0.52.6", ] [[package]] @@ -4145,17 +4175,18 @@ dependencies = [ [[package]] name = "windows-targets" -version = "0.52.4" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" dependencies = [ - "windows_aarch64_gnullvm 0.52.4", - "windows_aarch64_msvc 0.52.4", - "windows_i686_gnu 0.52.4", - "windows_i686_msvc 0.52.4", - "windows_x86_64_gnu 0.52.4", - "windows_x86_64_gnullvm 0.52.4", - "windows_x86_64_msvc 0.52.4", + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", ] [[package]] @@ -4166,9 +4197,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" [[package]] name = "windows_aarch64_gnullvm" -version = "0.52.4" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" [[package]] name = "windows_aarch64_msvc" @@ -4178,9 +4209,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] name = "windows_aarch64_msvc" -version = "0.52.4" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" [[package]] name = "windows_i686_gnu" @@ -4190,9 +4221,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] name = "windows_i686_gnu" -version = "0.52.4" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" [[package]] name = "windows_i686_msvc" @@ -4202,9 +4239,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" [[package]] name = "windows_i686_msvc" -version = "0.52.4" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" [[package]] name = "windows_x86_64_gnu" @@ -4214,9 +4251,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" [[package]] name = "windows_x86_64_gnu" -version = "0.52.4" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" [[package]] name = "windows_x86_64_gnullvm" @@ -4226,9 +4263,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" [[package]] name = "windows_x86_64_gnullvm" -version = "0.52.4" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" [[package]] name = "windows_x86_64_msvc" @@ -4238,9 +4275,9 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "windows_x86_64_msvc" -version = "0.52.4" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" @@ -4253,9 +4290,9 @@ dependencies = [ [[package]] name = "winnow" -version = "0.6.5" +version = "0.6.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" +checksum = "b480ae9340fc261e6be3e95a1ba86d54ae3f9171132a73ce8d4bbaf68339507c" dependencies = [ "memchr", ] @@ -4282,12 +4319,12 @@ dependencies = [ [[package]] name = "xdg-home" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21e5a325c3cb8398ad6cf859c1135b25dd29e186679cf2da7581d9679f63b38e" +checksum = "ca91dcf8f93db085f3a0a29358cd0b9d670915468f4290e8b85d118a34211ab8" dependencies = [ "libc", - "winapi", + "windows-sys 0.52.0", ] [[package]] @@ -4362,24 +4399,30 @@ dependencies = [ [[package]] name = "zerocopy" -version = "0.7.32" +version = "0.7.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" +checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.32" +version = "0.7.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" +checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.72", ] +[[package]] +name = "zeroize" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" + [[package]] name = "zvariant" version = "3.15.2" From 0a0e3e6a2d4c9679ec4f18db737638f779212a0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Slez=C3=A1k?= Date: Mon, 29 Jul 2024 14:07:22 +0200 Subject: [PATCH 18/18] Disable automatic crate update in OBS Use the versions from the Cargo.lock file to have consistent builds. If a crate needs to be updated run `cargo update` in Git and commit the changes. --- rust/package/_service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/package/_service b/rust/package/_service index bf0d7dc858..597f32264c 100644 --- a/rust/package/_service +++ b/rust/package/_service @@ -14,7 +14,7 @@ agama/rust zst - true + false agama/rust