diff --git a/service/po/ast.po b/service/po/ast.po new file mode 100644 index 0000000000..e65e626126 --- /dev/null +++ b/service/po/ast.po @@ -0,0 +1,742 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR SuSE Linux Products GmbH, Nuernberg +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-16 09:47+0000\n" +"PO-Revision-Date: 2025-09-11 14:37+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. Reports the problems and decide whether to continue or not. +#. +#. @param elements [Array] List of unsupported elements. +#: service/lib/agama/autoyast/profile_reporter.rb:51 +#, perl-brace-format +msgid "Found unsupported elements in the AutoYaST profile: %{keys}." +msgstr "" + +#. Runs the config phase +#. +#. @param reprobe [Boolean] Whether a reprobe should be done instead of a probe. +#. @param data [Hash] Extra data provided to the D-Bus calls. +#: service/lib/agama/manager.rb:99 +msgid "Analyze disks" +msgstr "" + +#: service/lib/agama/manager.rb:99 +msgid "Configure software" +msgstr "" + +#. Runs the install phase +#. rubocop:disable Metrics/AbcSize, Metrics/MethodLength +#: service/lib/agama/manager.rb:118 +msgid "Prepare disks" +msgstr "" + +#: service/lib/agama/manager.rb:119 +msgid "Install software" +msgstr "" + +#: service/lib/agama/manager.rb:120 +msgid "Configure the system" +msgstr "" + +#. rubocop:enable Metrics/AbcSize, Metrics/MethodLength +#: service/lib/agama/manager.rb:161 +msgid "Load software translations" +msgstr "" + +#: service/lib/agama/manager.rb:162 +msgid "Load storage translations" +msgstr "" + +#. @param certificate [Agama::SSL::Certificate] +#. @return [Agama::Question] +#: service/lib/agama/registration.rb:424 +msgid "" +"Trying to import a self signed certificate. Do you want to trust it and " +"register the product?" +msgstr "" + +#. TRANSLATORS: button label, try downloading the failed package again +#: service/lib/agama/software/callbacks/base.rb:48 +msgid "Try again" +msgstr "" + +#. TRANSLATORS: button label, ignore the failed download, skip package installation +#: service/lib/agama/software/callbacks/base.rb:54 +msgid "Continue anyway" +msgstr "" + +#. TRANSLATORS: button label, abort the installation completely after an error +#: service/lib/agama/software/callbacks/base.rb:60 +msgid "Abort installation" +msgstr "" + +#. TRANSLATORS: button label, skip the error +#: service/lib/agama/software/callbacks/base.rb:66 +msgid "Skip" +msgstr "" + +#. TRANSLATORS: button label +#: service/lib/agama/software/callbacks/base.rb:72 +msgid "Yes" +msgstr "" + +#. TRANSLATORS: button label +#: service/lib/agama/software/callbacks/base.rb:78 +msgid "No" +msgstr "" + +#. Callback to accept a file without a checksum +#. +#. @param filename [String] File name +#. @return [Boolean] +#: service/lib/agama/software/callbacks/digest.rb:58 +#, perl-brace-format +msgid "" +"No checksum for the file %{file} was found in the repository. This means " +"that although the file is part of the signed repository, the list of " +"checksums does not mention this file. Use it anyway?" +msgstr "" + +#. Callback to accept an unknown digest +#. +#. @param filename [String] File name +#. @param digest [String] expected checksum +#. @return [Boolean] +#: service/lib/agama/software/callbacks/digest.rb:84 +#, perl-brace-format +msgid "" +"The checksum of the file %{file} is \"%{digest}\" but the expected checksum " +"is unknown. This means that the origin and integrity of the file cannot be " +"verified. Use it anyway?" +msgstr "" + +#. Callback to accept wrong digest +#. +#. @param filename [String] File name +#. @param expected_digest [String] expected checksum +#. @param found_digest [String] found checksum +#. @return [Boolean] +#: service/lib/agama/software/callbacks/digest.rb:111 +#, perl-brace-format +msgid "" +"The expected checksum of file %{file} is \"%{found}\" but it was expected to " +"be \"%{expected}\". The file has changed by accident or by an attacker since " +"the creater signed it. Use it anyway?" +msgstr "" + +#. DoneProvide callback +#. +#. @param description [String] Problem description +#. @return [String] "I" for ignore, "R" for retry and "C" for abort (not implemented) +#. @see https://github.com/yast/yast-yast2/blob/19180445ab935a25edd4ae0243aa7a3bcd09c9de/library/packages/src/modules/PackageCallbacks.rb#L620 +#: service/lib/agama/software/callbacks/script.rb:50 +msgid "There was a problem running a package script." +msgstr "" + +#. Callback to handle unsigned files +#. +#. @param filename [String] File name +#. @param repo_id [Integer] Repository ID. It might be -1 if there is not an associated repo. +#: service/lib/agama/software/callbacks/signature.rb:66 +#, perl-brace-format +msgid "" +"The file %{filename} from %{repo_url} is not digitally signed. The origin " +"and integrity of the file cannot be verified. Use it anyway?" +msgstr "" + +#: service/lib/agama/software/callbacks/signature.rb:72 +#, perl-brace-format +msgid "" +"The file %{filename} is not digitally signed. The origin and integrity of " +"the file cannot be verified. Use it anyway?" +msgstr "" + +#. Callback to handle signature verification failures +#. +#. @param key [Hash] GPG key data (id, name, fingerprint, etc.) +#. @param repo_id [Integer] Repository ID +#: service/lib/agama/software/callbacks/signature.rb:100 +#, perl-brace-format +msgid "" +"The key %{id} (%{name}) with fingerprint %{fingerprint} is unknown. Do you " +"want to trust this key?" +msgstr "" + +#. Callback to handle unknown GPG keys +#. +#. @param filename [String] Name of the file. +#. @param key_id [String] Key ID. +#. @param repo_id [String] Repository ID. +#: service/lib/agama/software/callbacks/signature.rb:131 +#, perl-brace-format +msgid "" +"The file %{filename} from %{repo_url} is digitally signed with the following " +"unknown GnuPG key: %{key_id}. Use it anyway?" +msgstr "" + +#: service/lib/agama/software/callbacks/signature.rb:137 +#, perl-brace-format +msgid "" +"The file %{filename} is digitally signed with the following unknown GnuPG " +"key: %{key_id}. Use it anyway?" +msgstr "" + +#. Callback to handle file verification failures +#. +#. @param filename [String] File name +#. @param key [Hash] GPG key data (id, name, fingerprint, etc.) +#. @param repo_id [Integer] Repository ID +#: service/lib/agama/software/callbacks/signature.rb:168 +#, perl-brace-format +msgid "" +"The file %{filename} from %{repo_url} is digitally signed with the following " +"GnuPG key, but the integrity check failed: %{key_id} (%{key_name}). Use it " +"anyway?" +msgstr "" + +#: service/lib/agama/software/callbacks/signature.rb:175 +#, perl-brace-format +msgid "" +"The file %{filename} is digitally signed with the following GnuPG key, but " +"the integrity check failed: %{key_id} (%{key_name}). Use it anyway?" +msgstr "" + +#. TRANSLATORS: button label, trust the GPG key or the signature +#: service/lib/agama/software/callbacks/signature.rb:199 +msgid "Trust" +msgstr "" + +#. Should an error be raised? +#: service/lib/agama/software/manager.rb:178 +msgid "Refreshing repositories metadata" +msgstr "" + +#: service/lib/agama/software/manager.rb:179 +msgid "Calculating the software proposal" +msgstr "" + +#: service/lib/agama/software/manager.rb:183 +msgid "Initializing sources" +msgstr "" + +#. error message +#: service/lib/agama/software/manager.rb:427 +#, c-format +msgid "Adding service '%s' failed." +msgstr "" + +#. error message +#: service/lib/agama/software/manager.rb:432 +#, c-format +msgid "Updating service '%s' failed." +msgstr "" + +#. error message +#: service/lib/agama/software/manager.rb:438 +#, c-format +msgid "Saving service '%s' failed." +msgstr "" + +#. error message +#: service/lib/agama/software/manager.rb:444 +#, c-format +msgid "Refreshing service '%s' failed." +msgstr "" + +#. rubocop:enable Metrics/AbcSize +#: service/lib/agama/software/manager.rb:453 +#, c-format +msgid "Removing service '%s' failed." +msgstr "" + +#. Issues related to the software proposal. +#. +#. Repositories that could not be probed are reported as errors. +#. +#. @return [Array] +#: service/lib/agama/software/manager.rb:710 +#, c-format +msgid "Could not read repository \"%s\"" +msgstr "" + +#. Issue when a product is missing +#. +#. @return [Agama::Issue] +#: service/lib/agama/software/manager.rb:720 +msgid "Product not selected yet" +msgstr "" + +#. Issue when a product requires registration but it is not registered yet. +#. +#. @return [Agama::Issue] +#: service/lib/agama/software/manager.rb:729 +msgid "Product must be registered" +msgstr "" + +#. Returns solver error messages from the last attempt +#. +#. @return [Array] Error messages +#: service/lib/agama/software/proposal.rb:276 +#, c-format +msgid "Found %s dependency issues." +msgstr "" + +#. TRANSLATORS: SSL certificate details +#: service/lib/agama/ssl/certificate_details.rb:31 +msgid "Certificate:" +msgstr "" + +#: service/lib/agama/ssl/certificate_details.rb:31 +msgid "Issued To" +msgstr "" + +#: service/lib/agama/ssl/certificate_details.rb:32 +msgid "Issued By" +msgstr "" + +#: service/lib/agama/ssl/certificate_details.rb:32 +msgid "SHA1 Fingerprint: " +msgstr "" + +#: service/lib/agama/ssl/certificate_details.rb:34 +msgid "SHA256 Fingerprint: " +msgstr "" + +#. label followed by the SSL certificate identification +#: service/lib/agama/ssl/certificate_details.rb:46 +msgid "Common Name (CN): " +msgstr "" + +#. label followed by the SSL certificate identification +#: service/lib/agama/ssl/certificate_details.rb:48 +msgid "Organization (O): " +msgstr "" + +#. label followed by the SSL certificate identification +#: service/lib/agama/ssl/certificate_details.rb:50 +msgid "Organization Unit (OU): " +msgstr "" + +#. Issue when the device has several users. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/alias.rb:74 +#, c-format +msgid "The device with alias '%s' is used by more than one device" +msgstr "" + +#. Issue when the device has both filesystem and a user. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/alias.rb:95 +#, c-format +msgid "" +"The device with alias '%s' cannot be formatted because it is used by other " +"device" +msgstr "" + +#. Issue when the device has both partitions and a user. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/alias.rb:118 +#, c-format +msgid "" +"The device with alias '%s' cannot be partitioned because it is used by other " +"device" +msgstr "" + +#. Error if a boot device is required and unknown. +#. +#. This happens when the config solver is not able to infer a boot device, see +#. {ConfigSolvers::Boot}. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/boot.rb:75 +msgid "The boot device cannot be automatically selected" +msgstr "" + +#. TRANSLATORS: %s is replaced by a device alias (e.g., "boot"). +#: service/lib/agama/storage/config_checkers/boot.rb:86 +#, c-format +msgid "There is no boot device with alias '%s'" +msgstr "" + +#. TRANSLATORS: 'crypt_method' is the identifier of the method to encrypt the device +#. (e.g., 'luks1', 'random_swap'). +#: service/lib/agama/storage/config_checkers/encryption.rb:78 +#, perl-brace-format +msgid "" +"No passphrase provided (required for using the method '%{crypt_method}')." +msgstr "" + +#. TRANSLATORS: 'crypt_method' is the identifier of the method to encrypt the device +#. (e.g., 'luks1', 'random_swap'). +#: service/lib/agama/storage/config_checkers/encryption.rb:93 +#, perl-brace-format +msgid "Encryption method '%{crypt_method}' is not available in this system." +msgstr "" + +#. TRANSLATORS: 'crypt_method' is the identifier of the method to encrypt the device +#. (e.g., 'luks1', 'random_swap'). +#: service/lib/agama/storage/config_checkers/encryption.rb:120 +#, perl-brace-format +msgid "'%{crypt_method}' is not a suitable method to encrypt the device." +msgstr "" + +#. TRANSLATORS: %s is replaced by a mount path (e.g., "/home"). +#: service/lib/agama/storage/config_checkers/filesystem.rb:79 +#, c-format +msgid "Missing file system type for '%s'" +msgstr "" + +#. TRANSLATORS: %{filesystem} is replaced by a file system type (e.g., "Btrfs") and +#. %{path} is replaced by a mount path (e.g., "/home"). +#: service/lib/agama/storage/config_checkers/filesystem.rb:100 +#, perl-brace-format +msgid "The file system type '%{filesystem}' is not suitable for '%{path}'" +msgstr "" + +#. TRANSLATORS: %s is the replaced by a device alias (e.g., "pv1"). +#: service/lib/agama/storage/config_checkers/logical_volume.rb:82 +#, c-format +msgid "There is no LVM thin pool volume with alias '%s'" +msgstr "" + +#. TRANSLATORS: %s is the replaced by a device alias (e.g., "md1"). +#: service/lib/agama/storage/config_checkers/md_raid.rb:98 +#, c-format +msgid "There is no MD RAID member device with alias '%s'" +msgstr "" + +#. Issue if the MD RAID level is missing and the device is not reused. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:110 +msgid "There is a MD RAID without level" +msgstr "" + +#. Issue if the MD RAID does not contain enough member devices. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:121 +#, c-format +msgid "At least %s devices are required for %s" +msgstr "" + +#. Issue if the device member is deleted. +#. +#. @param member_config [#search] +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:168 +#, perl-brace-format +msgid "" +"The device '%{member}' cannot be deleted because it is part of the MD RAID %" +"{md_raid}" +msgstr "" + +#. Issue if the device member is resized. +#. +#. @param member_config [#search] +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:191 +#, perl-brace-format +msgid "" +"The device '%{member}' cannot be resized because it is part of the MD RAID %" +"{md_raid}" +msgstr "" + +#. Issue if the device member is formatted. +#. +#. @param member_config [#search] +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:214 +#, perl-brace-format +msgid "" +"The device '%{member}' cannot be formatted because it is part of the MD RAID " +"%{md_raid}" +msgstr "" + +#. Issue if the device member is partitioned. +#. +#. @param member_config [#search] +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:237 +#, perl-brace-format +msgid "" +"The device '%{member}' cannot be partitioned because it is part of the MD " +"RAID %{md_raid}" +msgstr "" + +#. Issue if the device member is used by other device (e.g., as target for physical volumes). +#. +#. @param member_config [#search] +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:259 +#, perl-brace-format +msgid "" +"The device '%{member}' cannot be used because it is part of the MD RAID %" +"{md_raid}" +msgstr "" + +#. Issue if the parent of the device member is formatted. +#. +#. @param device [Y2Storage::BlkDevice] +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:284 +#, perl-brace-format +msgid "" +"The device '%{device}' cannot be formatted because it is part of the MD RAID " +"%{md_raid}" +msgstr "" + +#. TRANSLATORS: 'method' is the identifier of the method to encrypt the device +#. (e.g., 'luks1'). +#: service/lib/agama/storage/config_checkers/physical_volumes_encryption.rb:61 +#, perl-brace-format +msgid "'%{method}' is not a suitable method to encrypt the physical volumes." +msgstr "" + +#. TRANSLATORS: %s is replaced by a device name (e.g., "/dev/vda"). +#: service/lib/agama/storage/config_checkers/search.rb:74 +#, c-format +msgid "Mandatory device %s not found" +msgstr "" + +#. TRANSLATORS: %s is replaced by a device type (e.g., "drive"). +#: service/lib/agama/storage/config_checkers/search.rb:77 +#, c-format +msgid "Mandatory %s not found" +msgstr "" + +#. @return [String] +#: service/lib/agama/storage/config_checkers/search.rb:85 +msgid "drive" +msgstr "" + +#: service/lib/agama/storage/config_checkers/search.rb:87 +msgid "MD RAID" +msgstr "" + +#: service/lib/agama/storage/config_checkers/search.rb:89 +msgid "partition" +msgstr "" + +#: service/lib/agama/storage/config_checkers/search.rb:91 +msgid "LVM logical volume" +msgstr "" + +#: service/lib/agama/storage/config_checkers/search.rb:93 +msgid "device" +msgstr "" + +#. Issue if the volume group name is missing. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/volume_group.rb:76 +msgid "There is a volume group without name" +msgstr "" + +#. TRANSLATORS: %s is the replaced by a device alias (e.g., "pv1"). +#: service/lib/agama/storage/config_checkers/volume_group.rb:106 +#, c-format +msgid "There is no LVM physical volume with alias '%s'" +msgstr "" + +#. TRANSLATORS: %s is the replaced by a device alias (e.g., "pv1"). +#: service/lib/agama/storage/config_checkers/volume_group.rb:133 +#, c-format +msgid "" +"The list of target devices for the volume group '%s' is mixing reused " +"devices and new devices" +msgstr "" + +#. TRANSLATORS: %s is the replaced by a device alias (e.g., "disk1"). +#: service/lib/agama/storage/config_checkers/volume_group.rb:153 +#, c-format +msgid "There is no target device for LVM physical volumes with alias '%s'" +msgstr "" + +#. TRANSLATORS: %s is the replaced by a device alias (e.g., "disk1"). +#: service/lib/agama/storage/config_checkers/volume_groups.rb:66 +#, c-format +msgid "" +"The device '%s' is used several times as target device for physical volumes" +msgstr "" + +#. Text of the reason preventing to shrink because there is no content. +#. +#. @return [String, nil] nil if there is content or there is any other reasons. +#: service/lib/agama/storage/device_shrinking.rb:151 +msgid "" +"Neither a file system nor a storage system was detected on the device. In " +"case the device does contain a file system or a storage system that is not " +"supported, resizing will most likely cause data loss." +msgstr "" + +#. Text of the reason preventing to shrink because there is no valid minimum size. +#. +#. @return [String, nil] nil if there is a minimum size or there is any other reasons. +#: service/lib/agama/storage/device_shrinking.rb:162 +msgid "Shrinking is not supported by this device" +msgstr "" + +#. Copy /etc/nvme/host* to keep NVMe working after installation, bsc#1238038 +#: service/lib/agama/storage/finisher.rb:145 +msgid "Copying important installation files to the target system" +msgstr "" + +#. Constructor +#: service/lib/agama/storage/finisher.rb:186 +msgid "Writing Linux Security Modules configuration" +msgstr "" + +#. Step to write the bootloader configuration +#: service/lib/agama/storage/finisher.rb:197 +msgid "Installing bootloader" +msgstr "" + +#. Step to finish the Y2Storage configuration +#: service/lib/agama/storage/finisher.rb:214 +msgid "Adjusting storage configuration" +msgstr "" + +#. Step to finish the iSCSI configuration +#: service/lib/agama/storage/finisher.rb:225 +msgid "Adjusting iSCSI configuration" +msgstr "" + +#. Step to configure the file-system snapshots +#: service/lib/agama/storage/finisher.rb:236 +msgid "Configuring file systems snapshots" +msgstr "" + +#. Step to copy the installation logs +#: service/lib/agama/storage/finisher.rb:254 +msgid "Copying logs" +msgstr "" + +#. Executes post-installation scripts +#: service/lib/agama/storage/finisher.rb:288 +msgid "Running user-defined scripts" +msgstr "" + +#. Executes post-installation scripts +#: service/lib/agama/storage/finisher.rb:327 +msgid "Deploying user-defined files" +msgstr "" + +#. Step to unmount the target file-systems +#: service/lib/agama/storage/finisher.rb:346 +msgid "Unmounting storage devices" +msgstr "" + +#. Applies the target configs. +#. +#. @param config [ISCSI::Config] +#: service/lib/agama/storage/iscsi/manager.rb:300 +msgid "Logout iSCSI targets" +msgstr "" + +#: service/lib/agama/storage/iscsi/manager.rb:301 +msgid "Discover iSCSI targets" +msgstr "" + +#: service/lib/agama/storage/iscsi/manager.rb:302 +msgid "Login iSCSI targets" +msgstr "" + +#. Login issue. +#. +#. @param target [ISCSI::Configs::Target] +#. @return [Issue] +#: service/lib/agama/storage/iscsi/manager.rb:366 +#, c-format +msgid "Cannot login to iSCSI target %s" +msgstr "" + +#. Probes storage devices and performs an initial proposal +#. +#. @param keep_config [Boolean] Whether to use the current storage config for calculating the +#. proposal. +#. @param keep_activation [Boolean] Whether to keep the current activation (e.g., provided LUKS +#. passwords). +#: service/lib/agama/storage/manager.rb:133 +msgid "Activating storage devices" +msgstr "" + +#: service/lib/agama/storage/manager.rb:134 +msgid "Probing storage devices" +msgstr "" + +#: service/lib/agama/storage/manager.rb:135 +msgid "Calculating the storage proposal" +msgstr "" + +#. Prepares the partitioning to install the system +#: service/lib/agama/storage/manager.rb:161 +msgid "Preparing bootloader proposal" +msgstr "" + +#. then also apply changes to that proposal +#: service/lib/agama/storage/manager.rb:168 +msgid "Adding storage-related packages" +msgstr "" + +#: service/lib/agama/storage/manager.rb:169 +msgid "Preparing the storage devices" +msgstr "" + +#: service/lib/agama/storage/manager.rb:170 +msgid "Writing bootloader sysconfig" +msgstr "" + +#. Issue representing the proposal is not valid. +#. +#. @return [Issue] +#: service/lib/agama/storage/proposal.rb:345 +msgid "Cannot calculate a valid storage setup with the current configuration" +msgstr "" + +#. Issue to communicate a generic Y2Storage error. +#. +#. @return [Issue] +#: service/lib/agama/storage/proposal.rb:356 +msgid "A problem ocurred while calculating the storage setup" +msgstr "" + +#. Returns an issue if there is no target device. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/proposal_strategies/guided.rb:135 +msgid "No device selected for installation" +msgstr "" + +#. Returns an issue if any of the devices required for the proposal is not found +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/proposal_strategies/guided.rb:151 +#, perl-brace-format +msgid "The following selected device is not found in the system: %{devices}" +msgid_plural "" +"The following selected devices are not found in the system: %{devices}" +msgstr[0] "" +msgstr[1] "" + +#. Recalculates the list of issues +#: service/lib/agama/users.rb:154 +msgid "" +"Defining a user, setting the root password or a SSH public key is required" +msgstr "" diff --git a/service/po/ca.po b/service/po/ca.po index 3ab2d3e82a..a3c191fc33 100644 --- a/service/po/ca.po +++ b/service/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-10 15:44+0000\n" +"POT-Creation-Date: 2025-09-16 09:47+0000\n" "PO-Revision-Date: 2025-09-02 12:59+0000\n" "Last-Translator: David Medina \n" "Language-Team: Catalan \n" "Language-Team: Czech \n" "Language-Team: German \n" "Language-Team: Spanish \n" -"Language-Team: Finnish \n" +"Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -234,8 +234,8 @@ msgid "" "anyway?" msgstr "" "Tiedosto %{filename} lähteestä %{repo_url} on allekirjoitettu digitaalisesti " -"seuraavalla GnuPG-avaimella mutta eheyden varmistaminen epäonnistui: " -"%{key_id} (%{key_name}). Käytetäänkö sitä tästä huolimatta?" +"seuraavalla GnuPG-avaimella mutta eheyden varmistaminen epäonnistui: %" +"{key_id} (%{key_name}). Käytetäänkö sitä tästä huolimatta?" #: service/lib/agama/software/callbacks/signature.rb:175 #, perl-brace-format @@ -495,8 +495,8 @@ msgid "" "The device '%{member}' cannot be resized because it is part of the MD RAID %" "{md_raid}" msgstr "" -"Laitteen ”%{member}” kokoa ei voi muuttaa koska se on osa MD_RAIDia " -"%{md_raid}" +"Laitteen ”%{member}” kokoa ei voi muuttaa koska se on osa MD_RAIDia %" +"{md_raid}" #. Issue if the device member is formatted. #. diff --git a/service/po/fr.po b/service/po/fr.po index 4010a928f5..8844dad0e5 100644 --- a/service/po/fr.po +++ b/service/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-10 15:44+0000\n" +"POT-Creation-Date: 2025-09-16 09:47+0000\n" "PO-Revision-Date: 2025-08-04 09:59+0000\n" "Last-Translator: Sophie Leroy \n" "Language-Team: French \n" "Language-Team: Indonesian \n" "Language-Team: Italian \n" "Language-Team: Japanese \n" "Language-Team: Georgian \n" -"Language-Team: Kabyle \n" +"Language-Team: Kabyle \n" "Language: kab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.11.4\n" +"X-Generator: Weblate 5.13.3\n" #. Reports the problems and decide whether to continue or not. #. @@ -88,17 +88,17 @@ msgstr "Semmet asebded" #. TRANSLATORS: button label, skip the error #: service/lib/agama/software/callbacks/base.rb:66 msgid "Skip" -msgstr "" +msgstr "Ttu" #. TRANSLATORS: button label #: service/lib/agama/software/callbacks/base.rb:72 msgid "Yes" -msgstr "" +msgstr "Ih" #. TRANSLATORS: button label #: service/lib/agama/software/callbacks/base.rb:78 msgid "No" -msgstr "" +msgstr "Uhu" #. Callback to accept a file without a checksum #. @@ -299,7 +299,7 @@ msgstr "" #. TRANSLATORS: SSL certificate details #: service/lib/agama/ssl/certificate_details.rb:31 msgid "Certificate:" -msgstr "" +msgstr "Aselkin:" #: service/lib/agama/ssl/certificate_details.rb:31 msgid "Issued To" @@ -526,7 +526,7 @@ msgstr "" #. @return [String] #: service/lib/agama/storage/config_checkers/search.rb:85 msgid "drive" -msgstr "" +msgstr "anuḍaf" #: service/lib/agama/storage/config_checkers/search.rb:87 msgid "MD RAID" @@ -534,7 +534,7 @@ msgstr "" #: service/lib/agama/storage/config_checkers/search.rb:89 msgid "partition" -msgstr "" +msgstr "aḥric" #: service/lib/agama/storage/config_checkers/search.rb:91 msgid "LVM logical volume" @@ -542,7 +542,7 @@ msgstr "" #: service/lib/agama/storage/config_checkers/search.rb:93 msgid "device" -msgstr "" +msgstr "ibenk" #. Issue if the volume group name is missing. #. diff --git a/service/po/nb_NO.po b/service/po/nb_NO.po index 483ab1a987..553847ae9a 100644 --- a/service/po/nb_NO.po +++ b/service/po/nb_NO.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-10 15:44+0000\n" +"POT-Creation-Date: 2025-09-16 09:47+0000\n" "PO-Revision-Date: 2024-06-29 13:46+0000\n" "Last-Translator: Martin Hansen \n" "Language-Team: Norwegian Bokmål \n" "Language-Team: Dutch \n" "Language-Team: Portuguese (Brazil) \n" "Language-Team: Russian , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-16 09:47+0000\n" +"PO-Revision-Date: 2025-09-16 09:47+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: su\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Reports the problems and decide whether to continue or not. +#. +#. @param elements [Array] List of unsupported elements. +#: service/lib/agama/autoyast/profile_reporter.rb:51 +#, perl-brace-format +msgid "Found unsupported elements in the AutoYaST profile: %{keys}." +msgstr "" + +#. Runs the config phase +#. +#. @param reprobe [Boolean] Whether a reprobe should be done instead of a probe. +#. @param data [Hash] Extra data provided to the D-Bus calls. +#: service/lib/agama/manager.rb:99 +msgid "Analyze disks" +msgstr "" + +#: service/lib/agama/manager.rb:99 +msgid "Configure software" +msgstr "" + +#. Runs the install phase +#. rubocop:disable Metrics/AbcSize, Metrics/MethodLength +#: service/lib/agama/manager.rb:118 +msgid "Prepare disks" +msgstr "" + +#: service/lib/agama/manager.rb:119 +msgid "Install software" +msgstr "" + +#: service/lib/agama/manager.rb:120 +msgid "Configure the system" +msgstr "" + +#. rubocop:enable Metrics/AbcSize, Metrics/MethodLength +#: service/lib/agama/manager.rb:161 +msgid "Load software translations" +msgstr "" + +#: service/lib/agama/manager.rb:162 +msgid "Load storage translations" +msgstr "" + +#. @param certificate [Agama::SSL::Certificate] +#. @return [Agama::Question] +#: service/lib/agama/registration.rb:424 +msgid "" +"Trying to import a self signed certificate. Do you want to trust it and regist" +"er the product?" +msgstr "" + +#. TRANSLATORS: button label, try downloading the failed package again +#: service/lib/agama/software/callbacks/base.rb:48 +msgid "Try again" +msgstr "" + +#. TRANSLATORS: button label, ignore the failed download, skip package installation +#: service/lib/agama/software/callbacks/base.rb:54 +msgid "Continue anyway" +msgstr "" + +#. TRANSLATORS: button label, abort the installation completely after an error +#: service/lib/agama/software/callbacks/base.rb:60 +msgid "Abort installation" +msgstr "" + +#. TRANSLATORS: button label, skip the error +#: service/lib/agama/software/callbacks/base.rb:66 +msgid "Skip" +msgstr "" + +#. TRANSLATORS: button label +#: service/lib/agama/software/callbacks/base.rb:72 +msgid "Yes" +msgstr "" + +#. TRANSLATORS: button label +#: service/lib/agama/software/callbacks/base.rb:78 +msgid "No" +msgstr "" + +#. Callback to accept a file without a checksum +#. +#. @param filename [String] File name +#. @return [Boolean] +#: service/lib/agama/software/callbacks/digest.rb:58 +#, perl-brace-format +msgid "" +"No checksum for the file %{file} was found in the repository. This means that " +"although the file is part of the signed repository, the list of checksums does" +" not mention this file. Use it anyway?" +msgstr "" + +#. Callback to accept an unknown digest +#. +#. @param filename [String] File name +#. @param digest [String] expected checksum +#. @return [Boolean] +#: service/lib/agama/software/callbacks/digest.rb:84 +#, perl-brace-format +msgid "" +"The checksum of the file %{file} is \"%{digest}\" but the expected checksum is u" +"nknown. This means that the origin and integrity of the file cannot be verifie" +"d. Use it anyway?" +msgstr "" + +#. Callback to accept wrong digest +#. +#. @param filename [String] File name +#. @param expected_digest [String] expected checksum +#. @param found_digest [String] found checksum +#. @return [Boolean] +#: service/lib/agama/software/callbacks/digest.rb:111 +#, perl-brace-format +msgid "" +"The expected checksum of file %{file} is \"%{found}\" but it was expected to be " +"\"%{expected}\". The file has changed by accident or by an attacker since the cr" +"eater signed it. Use it anyway?" +msgstr "" + +#. DoneProvide callback +#. +#. @param description [String] Problem description +#. @return [String] "I" for ignore, "R" for retry and "C" for abort (not implemented) +#. @see https://github.com/yast/yast-yast2/blob/19180445ab935a25edd4ae0243aa7a3bcd09c9de/library/packages/src/modules/PackageCallbacks.rb#L620 +#: service/lib/agama/software/callbacks/script.rb:50 +msgid "There was a problem running a package script." +msgstr "" + +#. Callback to handle unsigned files +#. +#. @param filename [String] File name +#. @param repo_id [Integer] Repository ID. It might be -1 if there is not an associated repo. +#: service/lib/agama/software/callbacks/signature.rb:66 +#, perl-brace-format +msgid "" +"The file %{filename} from %{repo_url} is not digitally signed. The origin and " +"integrity of the file cannot be verified. Use it anyway?" +msgstr "" + +#: service/lib/agama/software/callbacks/signature.rb:72 +#, perl-brace-format +msgid "" +"The file %{filename} is not digitally signed. The origin and integrity of the " +"file cannot be verified. Use it anyway?" +msgstr "" + +#. Callback to handle signature verification failures +#. +#. @param key [Hash] GPG key data (id, name, fingerprint, etc.) +#. @param repo_id [Integer] Repository ID +#: service/lib/agama/software/callbacks/signature.rb:100 +#, perl-brace-format +msgid "" +"The key %{id} (%{name}) with fingerprint %{fingerprint} is unknown. Do you wan" +"t to trust this key?" +msgstr "" + +#. Callback to handle unknown GPG keys +#. +#. @param filename [String] Name of the file. +#. @param key_id [String] Key ID. +#. @param repo_id [String] Repository ID. +#: service/lib/agama/software/callbacks/signature.rb:131 +#, perl-brace-format +msgid "" +"The file %{filename} from %{repo_url} is digitally signed with the following u" +"nknown GnuPG key: %{key_id}. Use it anyway?" +msgstr "" + +#: service/lib/agama/software/callbacks/signature.rb:137 +#, perl-brace-format +msgid "" +"The file %{filename} is digitally signed with the following unknown GnuPG key:" +" %{key_id}. Use it anyway?" +msgstr "" + +#. Callback to handle file verification failures +#. +#. @param filename [String] File name +#. @param key [Hash] GPG key data (id, name, fingerprint, etc.) +#. @param repo_id [Integer] Repository ID +#: service/lib/agama/software/callbacks/signature.rb:168 +#, perl-brace-format +msgid "" +"The file %{filename} from %{repo_url} is digitally signed with the following G" +"nuPG key, but the integrity check failed: %{key_id} (%{key_name}). Use it anyw" +"ay?" +msgstr "" + +#: service/lib/agama/software/callbacks/signature.rb:175 +#, perl-brace-format +msgid "" +"The file %{filename} is digitally signed with the following GnuPG key, but the" +" integrity check failed: %{key_id} (%{key_name}). Use it anyway?" +msgstr "" + +#. TRANSLATORS: button label, trust the GPG key or the signature +#: service/lib/agama/software/callbacks/signature.rb:199 +msgid "Trust" +msgstr "" + +#. Should an error be raised? +#: service/lib/agama/software/manager.rb:178 +msgid "Refreshing repositories metadata" +msgstr "" + +#: service/lib/agama/software/manager.rb:179 +msgid "Calculating the software proposal" +msgstr "" + +#: service/lib/agama/software/manager.rb:183 +msgid "Initializing sources" +msgstr "" + +#. error message +#: service/lib/agama/software/manager.rb:427 +#, c-format +msgid "Adding service '%s' failed." +msgstr "" + +#. error message +#: service/lib/agama/software/manager.rb:432 +#, c-format +msgid "Updating service '%s' failed." +msgstr "" + +#. error message +#: service/lib/agama/software/manager.rb:438 +#, c-format +msgid "Saving service '%s' failed." +msgstr "" + +#. error message +#: service/lib/agama/software/manager.rb:444 +#, c-format +msgid "Refreshing service '%s' failed." +msgstr "" + +#. rubocop:enable Metrics/AbcSize +#: service/lib/agama/software/manager.rb:453 +#, c-format +msgid "Removing service '%s' failed." +msgstr "" + +#. Issues related to the software proposal. +#. +#. Repositories that could not be probed are reported as errors. +#. +#. @return [Array] +#: service/lib/agama/software/manager.rb:710 +#, c-format +msgid "Could not read repository \"%s\"" +msgstr "" + +#. Issue when a product is missing +#. +#. @return [Agama::Issue] +#: service/lib/agama/software/manager.rb:720 +msgid "Product not selected yet" +msgstr "" + +#. Issue when a product requires registration but it is not registered yet. +#. +#. @return [Agama::Issue] +#: service/lib/agama/software/manager.rb:729 +msgid "Product must be registered" +msgstr "" + +#. Returns solver error messages from the last attempt +#. +#. @return [Array] Error messages +#: service/lib/agama/software/proposal.rb:276 +#, c-format +msgid "Found %s dependency issues." +msgstr "" + +#. TRANSLATORS: SSL certificate details +#: service/lib/agama/ssl/certificate_details.rb:31 +msgid "Certificate:" +msgstr "" + +#: service/lib/agama/ssl/certificate_details.rb:31 +msgid "Issued To" +msgstr "" + +#: service/lib/agama/ssl/certificate_details.rb:32 +msgid "Issued By" +msgstr "" + +#: service/lib/agama/ssl/certificate_details.rb:32 +msgid "SHA1 Fingerprint: " +msgstr "" + +#: service/lib/agama/ssl/certificate_details.rb:34 +msgid "SHA256 Fingerprint: " +msgstr "" + +#. label followed by the SSL certificate identification +#: service/lib/agama/ssl/certificate_details.rb:46 +msgid "Common Name (CN): " +msgstr "" + +#. label followed by the SSL certificate identification +#: service/lib/agama/ssl/certificate_details.rb:48 +msgid "Organization (O): " +msgstr "" + +#. label followed by the SSL certificate identification +#: service/lib/agama/ssl/certificate_details.rb:50 +msgid "Organization Unit (OU): " +msgstr "" + +#. Issue when the device has several users. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/alias.rb:74 +#, c-format +msgid "The device with alias '%s' is used by more than one device" +msgstr "" + +#. Issue when the device has both filesystem and a user. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/alias.rb:95 +#, c-format +msgid "" +"The device with alias '%s' cannot be formatted because it is used by other dev" +"ice" +msgstr "" + +#. Issue when the device has both partitions and a user. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/alias.rb:118 +#, c-format +msgid "" +"The device with alias '%s' cannot be partitioned because it is used by other d" +"evice" +msgstr "" + +#. Error if a boot device is required and unknown. +#. +#. This happens when the config solver is not able to infer a boot device, see +#. {ConfigSolvers::Boot}. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/boot.rb:75 +msgid "The boot device cannot be automatically selected" +msgstr "" + +#. TRANSLATORS: %s is replaced by a device alias (e.g., "boot"). +#: service/lib/agama/storage/config_checkers/boot.rb:86 +#, c-format +msgid "There is no boot device with alias '%s'" +msgstr "" + +#. TRANSLATORS: 'crypt_method' is the identifier of the method to encrypt the device +#. (e.g., 'luks1', 'random_swap'). +#: service/lib/agama/storage/config_checkers/encryption.rb:78 +#, perl-brace-format +msgid "No passphrase provided (required for using the method '%{crypt_method}')." +msgstr "" + +#. TRANSLATORS: 'crypt_method' is the identifier of the method to encrypt the device +#. (e.g., 'luks1', 'random_swap'). +#: service/lib/agama/storage/config_checkers/encryption.rb:93 +#, perl-brace-format +msgid "Encryption method '%{crypt_method}' is not available in this system." +msgstr "" + +#. TRANSLATORS: 'crypt_method' is the identifier of the method to encrypt the device +#. (e.g., 'luks1', 'random_swap'). +#: service/lib/agama/storage/config_checkers/encryption.rb:120 +#, perl-brace-format +msgid "'%{crypt_method}' is not a suitable method to encrypt the device." +msgstr "" + +#. TRANSLATORS: %s is replaced by a mount path (e.g., "/home"). +#: service/lib/agama/storage/config_checkers/filesystem.rb:79 +#, c-format +msgid "Missing file system type for '%s'" +msgstr "" + +#. TRANSLATORS: %{filesystem} is replaced by a file system type (e.g., "Btrfs") and +#. %{path} is replaced by a mount path (e.g., "/home"). +#: service/lib/agama/storage/config_checkers/filesystem.rb:100 +#, perl-brace-format +msgid "The file system type '%{filesystem}' is not suitable for '%{path}'" +msgstr "" + +#. TRANSLATORS: %s is the replaced by a device alias (e.g., "pv1"). +#: service/lib/agama/storage/config_checkers/logical_volume.rb:82 +#, c-format +msgid "There is no LVM thin pool volume with alias '%s'" +msgstr "" + +#. TRANSLATORS: %s is the replaced by a device alias (e.g., "md1"). +#: service/lib/agama/storage/config_checkers/md_raid.rb:98 +#, c-format +msgid "There is no MD RAID member device with alias '%s'" +msgstr "" + +#. Issue if the MD RAID level is missing and the device is not reused. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:110 +msgid "There is a MD RAID without level" +msgstr "" + +#. Issue if the MD RAID does not contain enough member devices. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:121 +#, c-format +msgid "At least %s devices are required for %s" +msgstr "" + +#. Issue if the device member is deleted. +#. +#. @param member_config [#search] +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:168 +#, perl-brace-format +msgid "" +"The device '%{member}' cannot be deleted because it is part of the MD RAID %{m" +"d_raid}" +msgstr "" + +#. Issue if the device member is resized. +#. +#. @param member_config [#search] +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:191 +#, perl-brace-format +msgid "" +"The device '%{member}' cannot be resized because it is part of the MD RAID %{m" +"d_raid}" +msgstr "" + +#. Issue if the device member is formatted. +#. +#. @param member_config [#search] +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:214 +#, perl-brace-format +msgid "" +"The device '%{member}' cannot be formatted because it is part of the MD RAID %" +"{md_raid}" +msgstr "" + +#. Issue if the device member is partitioned. +#. +#. @param member_config [#search] +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:237 +#, perl-brace-format +msgid "" +"The device '%{member}' cannot be partitioned because it is part of the MD RAID" +" %{md_raid}" +msgstr "" + +#. Issue if the device member is used by other device (e.g., as target for physical volumes). +#. +#. @param member_config [#search] +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:259 +#, perl-brace-format +msgid "" +"The device '%{member}' cannot be used because it is part of the MD RAID %{md_r" +"aid}" +msgstr "" + +#. Issue if the parent of the device member is formatted. +#. +#. @param device [Y2Storage::BlkDevice] +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/md_raid.rb:284 +#, perl-brace-format +msgid "" +"The device '%{device}' cannot be formatted because it is part of the MD RAID %" +"{md_raid}" +msgstr "" + +#. TRANSLATORS: 'method' is the identifier of the method to encrypt the device +#. (e.g., 'luks1'). +#: service/lib/agama/storage/config_checkers/physical_volumes_encryption.rb:61 +#, perl-brace-format +msgid "'%{method}' is not a suitable method to encrypt the physical volumes." +msgstr "" + +#. TRANSLATORS: %s is replaced by a device name (e.g., "/dev/vda"). +#: service/lib/agama/storage/config_checkers/search.rb:74 +#, c-format +msgid "Mandatory device %s not found" +msgstr "" + +#. TRANSLATORS: %s is replaced by a device type (e.g., "drive"). +#: service/lib/agama/storage/config_checkers/search.rb:77 +#, c-format +msgid "Mandatory %s not found" +msgstr "" + +#. @return [String] +#: service/lib/agama/storage/config_checkers/search.rb:85 +msgid "drive" +msgstr "" + +#: service/lib/agama/storage/config_checkers/search.rb:87 +msgid "MD RAID" +msgstr "" + +#: service/lib/agama/storage/config_checkers/search.rb:89 +msgid "partition" +msgstr "" + +#: service/lib/agama/storage/config_checkers/search.rb:91 +msgid "LVM logical volume" +msgstr "" + +#: service/lib/agama/storage/config_checkers/search.rb:93 +msgid "device" +msgstr "" + +#. Issue if the volume group name is missing. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/config_checkers/volume_group.rb:76 +msgid "There is a volume group without name" +msgstr "" + +#. TRANSLATORS: %s is the replaced by a device alias (e.g., "pv1"). +#: service/lib/agama/storage/config_checkers/volume_group.rb:106 +#, c-format +msgid "There is no LVM physical volume with alias '%s'" +msgstr "" + +#. TRANSLATORS: %s is the replaced by a device alias (e.g., "pv1"). +#: service/lib/agama/storage/config_checkers/volume_group.rb:133 +#, c-format +msgid "" +"The list of target devices for the volume group '%s' is mixing reused devices " +"and new devices" +msgstr "" + +#. TRANSLATORS: %s is the replaced by a device alias (e.g., "disk1"). +#: service/lib/agama/storage/config_checkers/volume_group.rb:153 +#, c-format +msgid "There is no target device for LVM physical volumes with alias '%s'" +msgstr "" + +#. TRANSLATORS: %s is the replaced by a device alias (e.g., "disk1"). +#: service/lib/agama/storage/config_checkers/volume_groups.rb:66 +#, c-format +msgid "The device '%s' is used several times as target device for physical volumes" +msgstr "" + +#. Text of the reason preventing to shrink because there is no content. +#. +#. @return [String, nil] nil if there is content or there is any other reasons. +#: service/lib/agama/storage/device_shrinking.rb:151 +msgid "" +"Neither a file system nor a storage system was detected on the device. In case" +" the device does contain a file system or a storage system that is not support" +"ed, resizing will most likely cause data loss." +msgstr "" + +#. Text of the reason preventing to shrink because there is no valid minimum size. +#. +#. @return [String, nil] nil if there is a minimum size or there is any other reasons. +#: service/lib/agama/storage/device_shrinking.rb:162 +msgid "Shrinking is not supported by this device" +msgstr "" + +#. Copy /etc/nvme/host* to keep NVMe working after installation, bsc#1238038 +#: service/lib/agama/storage/finisher.rb:145 +msgid "Copying important installation files to the target system" +msgstr "" + +#. Constructor +#: service/lib/agama/storage/finisher.rb:186 +msgid "Writing Linux Security Modules configuration" +msgstr "" + +#. Step to write the bootloader configuration +#: service/lib/agama/storage/finisher.rb:197 +msgid "Installing bootloader" +msgstr "" + +#. Step to finish the Y2Storage configuration +#: service/lib/agama/storage/finisher.rb:214 +msgid "Adjusting storage configuration" +msgstr "" + +#. Step to finish the iSCSI configuration +#: service/lib/agama/storage/finisher.rb:225 +msgid "Adjusting iSCSI configuration" +msgstr "" + +#. Step to configure the file-system snapshots +#: service/lib/agama/storage/finisher.rb:236 +msgid "Configuring file systems snapshots" +msgstr "" + +#. Step to copy the installation logs +#: service/lib/agama/storage/finisher.rb:254 +msgid "Copying logs" +msgstr "" + +#. Executes post-installation scripts +#: service/lib/agama/storage/finisher.rb:288 +msgid "Running user-defined scripts" +msgstr "" + +#. Executes post-installation scripts +#: service/lib/agama/storage/finisher.rb:327 +msgid "Deploying user-defined files" +msgstr "" + +#. Step to unmount the target file-systems +#: service/lib/agama/storage/finisher.rb:346 +msgid "Unmounting storage devices" +msgstr "" + +#. Applies the target configs. +#. +#. @param config [ISCSI::Config] +#: service/lib/agama/storage/iscsi/manager.rb:300 +msgid "Logout iSCSI targets" +msgstr "" + +#: service/lib/agama/storage/iscsi/manager.rb:301 +msgid "Discover iSCSI targets" +msgstr "" + +#: service/lib/agama/storage/iscsi/manager.rb:302 +msgid "Login iSCSI targets" +msgstr "" + +#. Login issue. +#. +#. @param target [ISCSI::Configs::Target] +#. @return [Issue] +#: service/lib/agama/storage/iscsi/manager.rb:366 +#, c-format +msgid "Cannot login to iSCSI target %s" +msgstr "" + +#. Probes storage devices and performs an initial proposal +#. +#. @param keep_config [Boolean] Whether to use the current storage config for calculating the +#. proposal. +#. @param keep_activation [Boolean] Whether to keep the current activation (e.g., provided LUKS +#. passwords). +#: service/lib/agama/storage/manager.rb:133 +msgid "Activating storage devices" +msgstr "" + +#: service/lib/agama/storage/manager.rb:134 +msgid "Probing storage devices" +msgstr "" + +#: service/lib/agama/storage/manager.rb:135 +msgid "Calculating the storage proposal" +msgstr "" + +#. Prepares the partitioning to install the system +#: service/lib/agama/storage/manager.rb:161 +msgid "Preparing bootloader proposal" +msgstr "" + +#. then also apply changes to that proposal +#: service/lib/agama/storage/manager.rb:168 +msgid "Adding storage-related packages" +msgstr "" + +#: service/lib/agama/storage/manager.rb:169 +msgid "Preparing the storage devices" +msgstr "" + +#: service/lib/agama/storage/manager.rb:170 +msgid "Writing bootloader sysconfig" +msgstr "" + +#. Issue representing the proposal is not valid. +#. +#. @return [Issue] +#: service/lib/agama/storage/proposal.rb:345 +msgid "Cannot calculate a valid storage setup with the current configuration" +msgstr "" + +#. Issue to communicate a generic Y2Storage error. +#. +#. @return [Issue] +#: service/lib/agama/storage/proposal.rb:356 +msgid "A problem ocurred while calculating the storage setup" +msgstr "" + +#. Returns an issue if there is no target device. +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/proposal_strategies/guided.rb:135 +msgid "No device selected for installation" +msgstr "" + +#. Returns an issue if any of the devices required for the proposal is not found +#. +#. @return [Issue, nil] +#: service/lib/agama/storage/proposal_strategies/guided.rb:151 +#, perl-brace-format +msgid "The following selected device is not found in the system: %{devices}" +msgid_plural "The following selected devices are not found in the system: %{devices}" +msgstr[0] "" +msgstr[1] "" + +#. Recalculates the list of issues +#: service/lib/agama/users.rb:154 +msgid "Defining a user, setting the root password or a SSH public key is required" +msgstr "" diff --git a/service/po/sv.po b/service/po/sv.po index 977937630a..4be5ef9944 100644 --- a/service/po/sv.po +++ b/service/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-10 15:44+0000\n" +"POT-Creation-Date: 2025-09-16 09:47+0000\n" "PO-Revision-Date: 2025-07-07 07:59+0000\n" "Last-Translator: Luna Jernberg \n" "Language-Team: Swedish \n" "Language-Team: Turkish \n" "Language-Team: Ukrainian \n" "Language-Team: Chinese (China) \n" "Language-Team: Chinese (Taiwan)