Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rubygem-agama-yast for 
openSUSE:Factory checked in at 2026-09-04 12:36:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-agama-yast (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-agama-yast.new.1265 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-agama-yast"

Fri Sep  4 12:36:04 2026 rev:53 rq:1375354 version:24

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-agama-yast/rubygem-agama-yast.changes    
2026-08-19 17:56:03.962146149 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-agama-yast.new.1265/rubygem-agama-yast.changes
  2026-09-04 12:36:34.386498981 +0200
@@ -1,0 +2,17 @@
+Tue Sep  1 15:51:00 UTC 2026 - Imobach Gonzalez Sosa <[email protected]>
+
+- Version 24
+
+-------------------------------------------------------------------
+Mon Aug 31 12:02:23 UTC 2026 - Ancor Gonzalez Sosa <[email protected]>
+
+- Adjust default encryption derivation function (PBKDF) according
+  to the used bootloader (bsc#1258955).
+
+-------------------------------------------------------------------
+Fri Aug 28 13:08:30 UTC 2026 - Imobach Gonzalez Sosa <[email protected]>
+
+- Rename questions and issues classes to use a consistent naming
+  scheme (bsc#1277393).
+
+-------------------------------------------------------------------

Old:
----
  agama-yast-23.devel278.4096bc82f.gem

New:
----
  agama-yast-24.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ agama-yast.spec ++++++
--- /var/tmp/diff_new_pack.nsXzYH/_old  2026-09-04 12:36:35.161526192 +0200
+++ /var/tmp/diff_new_pack.nsXzYH/_new  2026-09-04 12:36:35.164526298 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           agama-yast
-Version:        23.devel278.4096bc82f
+Version:        24
 Release:        0
 %define mod_name agama-yast
 %define mod_full_name %{mod_name}-%{version}

++++++ rubygem-agama-yast.spec ++++++
--- /var/tmp/diff_new_pack.nsXzYH/_old  2026-09-04 12:36:35.219528229 +0200
+++ /var/tmp/diff_new_pack.nsXzYH/_new  2026-09-04 12:36:35.222528334 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-agama-yast
-Version:        23.devel278.4096bc82f
+Version:        24
 Release:        0
 %define mod_name agama-yast
 %define mod_full_name %{mod_name}-%{version}

++++++ agama-yast-23.devel278.4096bc82f.gem -> agama-yast-24.gem ++++++
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/agama/autoyast/profile_reporter.rb 
new/lib/agama/autoyast/profile_reporter.rb
--- old/lib/agama/autoyast/profile_reporter.rb  1980-01-02 01:00:00.000000000 
+0100
+++ new/lib/agama/autoyast/profile_reporter.rb  1970-01-01 01:00:00.000000000 
+0100
@@ -1,74 +0,0 @@
-# frozen_string_literal: true
-
-# Copyright (c) [2025] 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.
-
-require "yast"
-
-# :nodoc:
-module Agama
-  module AutoYaST
-    # Reports the problems found by the {ProfileChecker} using the questions 
client.
-    class ProfileReporter
-      include Yast::I18n
-
-      # Constructor
-      #
-      # @param questions_client [Agama::HTTP::Clients::Questions]
-      # @param logger [Logger]
-      def initialize(questions_client, logger)
-        textdomain "agama"
-
-        @questions_client = questions_client
-        @logger = logger
-      end
-
-      # Reports the problems and decide whether to continue or not.
-      #
-      # @param elements [Array<Element>] List of unsupported elements.
-      def report(elements)
-        keys = elements.map(&:key).join(", ")
-        unsupported = elements.select { |e| e.support == :no }
-        planned = elements.select { |e| e.support == :planned }
-
-        message = format(
-          _("Found unsupported elements in the AutoYaST profile: %{keys}."), 
keys: keys
-        )
-        question = Agama::Question.new(
-          qclass:         "autoyast.unsupported",
-          text:           message,
-          options:        [:continue, :abort],
-          default_option: :continue,
-          data:           {
-            "planned"     => planned.map(&:key).join(","),
-            "unsupported" => unsupported.map(&:key).join(",")
-          }
-        )
-
-        questions_client.ask(question) do |answer|
-          answer.action == :continue
-        end
-      end
-
-    private
-
-      attr_reader :questions_client, :logger
-    end
-  end
-end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/agama/autoyast/report_patching.rb 
new/lib/agama/autoyast/report_patching.rb
--- old/lib/agama/autoyast/report_patching.rb   1980-01-02 01:00:00.000000000 
+0100
+++ new/lib/agama/autoyast/report_patching.rb   1980-01-02 01:00:00.000000000 
+0100
@@ -52,7 +52,7 @@
         questions_client = 
Agama::HTTP::Clients::Questions.new(Logger.new($stdout))
 
         question = Agama::Question.new(
-          qclass:         "autoyast.popup",
+          qclass:         "autoyastPopup",
           text:           text,
           options:        generate_options(buttons),
           default_option: focus || options.first,
@@ -96,7 +96,7 @@
 
     def run
       question = Agama::QuestionWithPassword.new(
-        qclass:         "autoyast.password",
+        qclass:         "autoyastPassword",
         text:           @label,
         options:        [:ok, :cancel],
         default_option: :cancel,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/agama/commands/agama_autoyast.rb 
new/lib/agama/commands/agama_autoyast.rb
--- old/lib/agama/commands/agama_autoyast.rb    1980-01-02 01:00:00.000000000 
+0100
+++ new/lib/agama/commands/agama_autoyast.rb    1980-01-02 01:00:00.000000000 
+0100
@@ -23,10 +23,8 @@
 require "json"
 require "agama/autoyast/converter"
 require "agama/autoyast/profile_fetcher"
-require "agama/autoyast/profile_reporter"
 require "agama/autoyast/profile_checker"
 require "agama/cmdline_args"
-require "agama/http/clients"
 
 module Agama
   # :nodoc:
@@ -52,8 +50,11 @@
       # Run the command fetching, checking, converting and writing the Agama 
configuration.
       def run
         profile = fetch_profile
-        unsupported = check_profile(profile)
-        return false unless report_unsupported(unsupported)
+        FileUtils.mkdir_p(directory)
+        if check?
+          unsupported = check_profile(profile)
+          write_unsupported(unsupported) unless unsupported.empty?
+        end
 
         write_agama_config(profile)
       end
@@ -84,17 +85,22 @@
         elements
       end
 
-      def report_unsupported(elements)
-        return true if elements.empty? || !report?
-
-        reporter = Agama::AutoYaST::ProfileReporter.new(questions_client, 
logger)
-        reporter.report(elements)
+      # Writes the list of unsupported elements found in the profile.
+      #
+      # @param elements [Array<Agama::AutoYaST::ProfileElement>] List of 
unsupported elements.
+      def write_unsupported(elements)
+        unsupported = elements.map do |e|
+          { "key" => e.key, "support" => e.support.to_s, "notes" => e.notes }
+        end
+        File.write(
+          File.join(directory, "unsupported.json"),
+          JSON.pretty_generate(unsupported)
+        )
       end
 
       def write_agama_config(profile)
         converter = Agama::AutoYaST::Converter.new
         agama_config = converter.to_agama(profile)
-        FileUtils.mkdir_p(directory)
         File.write(
           File.join(directory, "autoinst.json"),
           JSON.pretty_generate(agama_config)
@@ -103,12 +109,8 @@
         raise CouldNotWriteAgamaConfig
       end
 
-      def questions_client
-        @questions_client ||= Agama::HTTP::Clients::Questions.new(logger)
-      end
-
-      # Whether the report is enabled or not.
-      def report?
+      # Whether checking for unsupported elements is enabled or not.
+      def check?
         cmdline = CmdlineArgs.read_from("/proc/cmdline")
         cmdline.data.fetch("ay_check", "1") != "0"
       end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/agama/storage/callbacks/activate_luks.rb 
new/lib/agama/storage/callbacks/activate_luks.rb
--- old/lib/agama/storage/callbacks/activate_luks.rb    1980-01-02 
01:00:00.000000000 +0100
+++ new/lib/agama/storage/callbacks/activate_luks.rb    1980-01-02 
01:00:00.000000000 +0100
@@ -76,7 +76,7 @@
             "attempt" => attempt.to_s
           }
           QuestionWithPassword.new(
-            qclass:         "storage.luks_activation",
+            qclass:         "luksActivation",
             text:           generate_text(data),
             options:        [:skip, :decrypt],
             default_option: :decrypt,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/agama/storage/callbacks/activate_multipath.rb 
new/lib/agama/storage/callbacks/activate_multipath.rb
--- old/lib/agama/storage/callbacks/activate_multipath.rb       1980-01-02 
01:00:00.000000000 +0100
+++ new/lib/agama/storage/callbacks/activate_multipath.rb       1980-01-02 
01:00:00.000000000 +0100
@@ -67,7 +67,7 @@
                  "Do you want to activate multipath?"
 
           Question.new(
-            qclass:         "storage.activate_multipath",
+            qclass:         "multipathActivation",
             text:           text,
             options:        [:yes, :no],
             default_option: :yes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/agama/storage/callbacks/commit_error.rb 
new/lib/agama/storage/callbacks/commit_error.rb
--- old/lib/agama/storage/callbacks/commit_error.rb     1980-01-02 
01:00:00.000000000 +0100
+++ new/lib/agama/storage/callbacks/commit_error.rb     1980-01-02 
01:00:00.000000000 +0100
@@ -74,7 +74,7 @@
                  "Do you want to continue with the rest of storage actions?"
 
           Question.new(
-            qclass:         "storage.commit_error",
+            qclass:         "storageCommitError",
             text:           text,
             options:        [:yes, :no],
             default_option: :no,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/agama/storage/config_solver.rb 
new/lib/agama/storage/config_solver.rb
--- old/lib/agama/storage/config_solver.rb      1980-01-02 01:00:00.000000000 
+0100
+++ new/lib/agama/storage/config_solver.rb      1980-01-02 01:00:00.000000000 
+0100
@@ -47,7 +47,7 @@
       #
       # @param config [Config]
       def solve(config)
-        ConfigSolvers::Encryption.new(product_config).solve(config)
+        ConfigSolvers::Encryption.new(bootloader_config).solve(config)
         ConfigSolvers::Filesystem.new(product_config, 
bootloader_config).solve(config)
         ConfigSolvers::DrivesSearch.new(storage_system).solve(config)
         ConfigSolvers::MdRaidsSearch.new(storage_system).solve(config)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/agama/storage/config_solvers/encryption.rb 
new/lib/agama/storage/config_solvers/encryption.rb
--- old/lib/agama/storage/config_solvers/encryption.rb  1980-01-02 
01:00:00.000000000 +0100
+++ new/lib/agama/storage/config_solvers/encryption.rb  1980-01-02 
01:00:00.000000000 +0100
@@ -19,16 +19,19 @@
 # To contact SUSE LLC about this file by physical or electronic mail, you may
 # find current contact information at www.suse.com.
 
-require "agama/storage/config_solvers/base"
-
 module Agama
   module Storage
     module ConfigSolvers
       # Solver for the encryption configs.
       #
-      # The encryption configs are solved by assigning the default encryption 
values defined by the
-      # productd, if needed.
-      class Encryption < Base
+      # The encryption configs are solved by assigning the default encryption 
values required by the
+      # used bootloader, if needed.
+      class Encryption
+        # @param bootloader_config [Storage::BootloaderConfig]
+        def initialize(bootloader_config)
+          @bootloader_config = bootloader_config
+        end
+
         # Solves all the encryption configs within a given config.
         #
         # @note The config object is modified.
@@ -43,6 +46,12 @@
 
       private
 
+        # @return [Storage::BootloaderConfig]
+        attr_reader :bootloader_config
+
+        # @return [Config]
+        attr_reader :config
+
         def solve_encryptions
           config.supporting_encryption.each { |c| solve_encryption(c) }
         end
@@ -51,9 +60,7 @@
         def solve_encryption(config)
           return unless config.encryption
 
-          encryption = config.encryption
-          encryption.method ||= default_encryption.method
-          solve_encryption_values(encryption)
+          solve_encryption_values(config.encryption)
         end
 
         def solve_physical_volumes_encryptions
@@ -65,30 +72,19 @@
           return unless config.physical_volumes_encryption
 
           encryption = config.physical_volumes_encryption
-          encryption.method ||= default_encryption.method
           solve_encryption_values(encryption)
         end
 
         # @param config [Configs::Encryption]
         def solve_encryption_values(config)
-          # FIXME: We need better mechanisms to define these values (eg. the 
process for TpmFde
-          # enforces pbkdf2, but that is not reflected in the case of planned 
devices).
-          # As a first (not perfect) control mechanism, the values are ignored 
if the default
-          # encryption type does not match
-          return if config.method.encryption_type != 
default_encryption.method.encryption_type
-
-          config.password ||= default_encryption.password
-          config.pbkd_function ||= default_encryption.pbkd_function
-          config.label ||= default_encryption.label
-          config.cipher ||= default_encryption.cipher
-          config.key_size ||= default_encryption.key_size
-        end
-
-        # Default encryption defined by the product.
-        #
-        # @return [Configs::Encryption]
-        def default_encryption
-          @default_encryption ||= config_builder.default_encryption
+          bootloader_type = bootloader_config.type
+          # The bootloader type is always known because bootloader_config is 
already solved,
+          # but this is defensive code to ensure backwards compatibility even 
with the tests
+          return if bootloader_type && !bootloader_type.is?(:grub2)
+
+          # Grub2 can only open encryption devices using PBKDF2, so let's be 
conservative
+          # and use that function by default for all devices.
+          config.pbkd_function ||= Y2Storage::PbkdFunction::PBKDF2
         end
       end
     end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/agama/storage/issue_classes.rb 
new/lib/agama/storage/issue_classes.rb
--- old/lib/agama/storage/issue_classes.rb      1980-01-02 01:00:00.000000000 
+0100
+++ new/lib/agama/storage/issue_classes.rb      1980-01-02 01:00:00.000000000 
+0100
@@ -38,7 +38,7 @@
         MISUSED_MD_MEMBER        = :configMisusedMdMember
 
         # A device that is a PV of a reused VG is chosen to be used with other 
purpose
-        MISUSED_PV               = :configMisusedMdMember
+        MISUSED_PV               = :configMisusedPv
 
         # Reused and new devices are both used as target for generating PVs 
for the same LV
         INCOMPATIBLE_PV_TARGETS  = :configIncompatiblePvTargets
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/agama/storage/zfcp/manager.rb 
new/lib/agama/storage/zfcp/manager.rb
--- old/lib/agama/storage/zfcp/manager.rb       1980-01-02 01:00:00.000000000 
+0100
+++ new/lib/agama/storage/zfcp/manager.rb       1980-01-02 01:00:00.000000000 
+0100
@@ -203,7 +203,7 @@
           @issues << Issue.new(
             # TRANSLATORS: %s is replaced by a zFCP channel (e.g., "0.0.5223").
             format(_("The zFCP controller %s cannot be activated"), channel),
-            kind: :zfcp_controller_activation
+            kind: :zfcpControllerActivation
           )
 
           false
@@ -243,7 +243,7 @@
             # TRANSLATORS: %s is replaced by a zFCP device (e.g.,
             #   "0.0.5223 0x500507681015a2b2 0x0186000000000000").
             format(_("The zFCP device %s cannot be activated"), "#{channel} 
#{wwpn} #{lun}"),
-            kind: :zfcp_lun_activation
+            kind: :zfcpLunActivation
           )
 
           false
@@ -287,7 +287,7 @@
             # TRANSLATORS: %s is replaced by a zFCP device (e.g.,
             #   "0.0.5223 0x500507681015a2b2 0x0186000000000000").
             format(_("The zFCP device %s cannot be deactivated"), "#{channel} 
#{wwpn} #{lun}"),
-            kind: :zfcp_lun_deactivation
+            kind: :zfcpLunDeactivation
           )
 
           false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        1980-01-02 01:00:00.000000000 +0100
+++ new/metadata        1980-01-02 01:00:00.000000000 +0100
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: agama-yast
 version: !ruby/object:Gem::Version
-  version: 23.devel278.4096bc82f
+  version: '24'
 platform: ruby
 authors:
 - YaST Team
@@ -298,7 +298,6 @@
 - lib/agama/autoyast/profile_checker.rb
 - lib/agama/autoyast/profile_description.rb
 - lib/agama/autoyast/profile_fetcher.rb
-- lib/agama/autoyast/profile_reporter.rb
 - lib/agama/autoyast/report_patching.rb
 - lib/agama/autoyast/root_reader.rb
 - lib/agama/autoyast/scripts_reader.rb

++++++ po.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/ast.po new/po/ast.po
--- old/po/ast.po       2026-08-18 11:57:52.000000000 +0200
+++ new/po/ast.po       2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2025-09-11 02:48+0000\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -17,14 +17,6 @@
 "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<Element>] 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 ""
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/bg.po new/po/bg.po
--- old/po/bg.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/bg.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-02-26 20:04+0000\n"
 "Last-Translator: Topalski <[email protected]>\n"
 "Language-Team: Bulgarian <https://l10n.opensuse.org/projects/agama/agama-";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.16.1\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "Намерени са неподдържани елементи в AutoYaST профила: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -491,3 +483,7 @@
 #, c-format
 msgid "The zFCP device %s cannot be deactivated"
 msgstr ""
+
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "Намерени са неподдържани елементи в AutoYaST профила: %{keys}."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/ca.po new/po/ca.po
--- old/po/ca.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/ca.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-05-18 09:12+0000\n"
 "Last-Translator: David Medina <[email protected]>\n"
 "Language-Team: Catalan <https://l10n.opensuse.org/projects/agama/agama-";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 2026.5\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "S'han trobat elements no compatibles al perfil d'AutoYaST: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -537,6 +529,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "El dispositiu zFCP %s no es pot desactivar."
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "S'han trobat elements no compatibles al perfil d'AutoYaST: %{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Controlador zFCP desconegut: %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/cs.po new/po/cs.po
--- old/po/cs.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/cs.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-03-12 18:04+0000\n"
 "Last-Translator: Ondřej  Sedlák <[email protected]>\n"
 "Language-Team: Czech <https://l10n.opensuse.org/projects/agama/agama-service-";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Generator: Weblate 5.16.2\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "Nalezen nepodporovaný prvek profilu AutoYaST: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -528,6 +520,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "Zařízení zFCP %s nelze deaktivovat"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "Nalezen nepodporovaný prvek profilu AutoYaST: %{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Neznámý řadič zFCP %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/de.po new/po/de.po
--- old/po/de.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/de.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-06-23 21:12+0000\n"
 "Last-Translator: Gemineo <[email protected]>\n"
 "Language-Team: German <https://l10n.opensuse.org/projects/agama/agama-";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 2026.6.1\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "Nicht unterstützte Elemente im AutoYaST-Profil gefunden: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -539,6 +531,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "Das zFCP-Gerät %s kann nicht deaktiviert werden"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "Nicht unterstützte Elemente im AutoYaST-Profil gefunden: %{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Unbekannter zFCP-Controller %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/el.po new/po/el.po
--- old/po/el.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/el.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-02-23 22:04+0000\n"
 "Last-Translator: Efstathios Iosifidis <[email protected]>\n"
 "Language-Team: Greek <https://l10n.opensuse.org/projects/agama/agama-service-";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.16\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "Βρέθηκαν μη υποστηριζόμενα στοιχεία στο προφίλ AutoYaST: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -548,6 +540,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "Η συσκευή εκκίνησης δεν μπορεί να επιλεγεί αυτόματα"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "Βρέθηκαν μη υποστηριζόμενα στοιχεία στο προφίλ AutoYaST: %{keys}."
+
 #~ msgid "Certificate:"
 #~ msgstr "Πιστοποιητικό:"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/es.po new/po/es.po
--- old/po/es.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/es.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-06-24 09:12+0000\n"
 "Last-Translator: Antonio Simón <[email protected]>\n"
 "Language-Team: Spanish <https://l10n.opensuse.org/projects/agama/agama-";
@@ -19,15 +19,6 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 2026.6.1\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 ""
-"Se han encontrado elementos no admitidos en el perfil de AutoYaST: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -538,6 +529,12 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "No se puede desactivar el dispositivo zFCP %s"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr ""
+#~ "Se han encontrado elementos no admitidos en el perfil de AutoYaST: %"
+#~ "{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Controlador zFCP desconocido %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/fi.po new/po/fi.po
--- old/po/fi.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/fi.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-03-11 08:04+0000\n"
 "Last-Translator: Timo Jyrinki <[email protected]>\n"
 "Language-Team: Finnish <https://l10n.opensuse.org/projects/agama/agama-";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.16.2\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "AutoYaST-profiilissa löydettiin tukemattomia kohita: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -518,6 +510,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "zFCP-laitetta %s ei voi deaktivoida"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "AutoYaST-profiilissa löydettiin tukemattomia kohita: %{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Tuntematon zFCP-ohjain %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/fr.po new/po/fr.po
--- old/po/fr.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/fr.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-06-25 09:55+0000\n"
 "Last-Translator: Sophie Leroy <[email protected]>\n"
 "Language-Team: French <https://l10n.opensuse.org/projects/agama/agama-";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 2026.6.1\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "Éléments non pris en charge trouvés dans le profil AutoYaST : %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -549,6 +541,11 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "L'appareil zFCP %s ne peut pas être désactivé"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr ""
+#~ "Éléments non pris en charge trouvés dans le profil AutoYaST : %{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Contrôleur zFCP %s inconnu"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/id.po new/po/id.po
--- old/po/id.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/id.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-08-02 14:12+0000\n"
 "Last-Translator: Arif Budiman <[email protected]>\n"
 "Language-Team: Indonesian <https://l10n.opensuse.org/projects/agama/agama-";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 2026.7.1\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "Menemukan elemen yang tidak didukung dalam profil AutoYaST: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -535,6 +527,11 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "Perangkat zFCP %s tidak dapat dinonaktifkan"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr ""
+#~ "Menemukan elemen yang tidak didukung dalam profil AutoYaST: %{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Pengontrol zFCP %s tidak dikenal"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/it.po new/po/it.po
--- old/po/it.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/it.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-06-24 14:12+0000\n"
 "Last-Translator: Davide Aiello <[email protected]>\n"
 "Language-Team: Italian <https://l10n.opensuse.org/projects/agama/agama-";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 2026.6.1\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "Trovati elementi non supportati nel profilo AutoYaST: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -535,6 +527,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "Impossibile disattivare il dispositivo zFCP %s"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "Trovati elementi non supportati nel profilo AutoYaST: %{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Controller zFCP %s sconosciuto"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/ja.po new/po/ja.po
--- old/po/ja.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/ja.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-05-16 22:12+0000\n"
 "Last-Translator: Yasuhiko Kamata <[email protected]>\n"
 "Language-Team: Japanese <https://l10n.opensuse.org/projects/agama/agama-";
@@ -19,15 +19,6 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 2026.5\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 ""
-"AutoYaST プロファイル内にサポートされていない要素が見つかりました: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -532,6 +523,12 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "zFCP デバイス %s を無効化できません"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr ""
+#~ "AutoYaST プロファイル内にサポートされていない要素が見つかりました: %"
+#~ "{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "未知の zFCP コントローラです: %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/ka.po new/po/ka.po
--- old/po/ka.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/ka.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-05-16 04:12+0000\n"
 "Last-Translator: Temuri Doghonadze <[email protected]>\n"
 "Language-Team: Georgian <https://l10n.opensuse.org/projects/agama/agama-";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 2026.5\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "აღმოჩენილია მხარდაუწერელი ელემენტები AutoYaST-ის პროფილში: {keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -497,6 +489,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "zFCP მოწყობილობის %s დეაქტივაცია შეუძლებელია"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "აღმოჩენილია მხარდაუწერელი ელემენტები AutoYaST-ის პროფილში: {keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "უცნობი zFCP კონტროლერი %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/kab.po new/po/kab.po
--- old/po/kab.po       2026-08-18 11:57:52.000000000 +0200
+++ new/po/kab.po       2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-03-27 22:04+0000\n"
 "Last-Translator: Amger ugurzil <[email protected]>\n"
 "Language-Team: Kabyle <https://l10n.opensuse.org/projects/agama/agama-";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 5.16.2\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "Nufa-d iferdisen ur nettwasefrak ara deg umaɣnu AutoYaST: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -522,6 +514,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr ""
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "Nufa-d iferdisen ur nettwasefrak ara deg umaɣnu AutoYaST: %{keys}."
+
 #~ msgid "Certificate:"
 #~ msgstr "Aselkin:"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/lo.po new/po/lo.po
--- old/po/lo.po        1970-01-01 01:00:00.000000000 +0100
+++ new/po/lo.po        2026-09-02 11:36:48.000000000 +0200
@@ -0,0 +1,517 @@
+# 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 <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
+"PO-Revision-Date: 2026-08-19 16:13+0000\n"
+"Last-Translator: Bone NI <[email protected]>\n"
+"Language-Team: Lao <https://l10n.opensuse.org/projects/agama/agama-service-";
+"master/lo/>\n"
+"Language: lo\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"
+"X-Generator: Weblate 2026.8.1\n"
+
+#. Implementation for the API method #Probe.
+#: service/lib/agama/dbus/storage/dasd.rb:65
+msgid "Probing DASD devices"
+msgstr "ກຳລັງກວດຫາອຸປະກອນ DASD"
+
+#. Do not configure if there is nothing to change.
+#: service/lib/agama/dbus/storage/dasd.rb:87
+msgid "Configuring DASD"
+msgstr "ກຳລັງກຳນົດຄ່າ DASD"
+
+#. Do not configure if there is nothing to change.
+#: service/lib/agama/dbus/storage/iscsi.rb:79
+msgid "Configuring iSCSI"
+msgstr "ກຳລັງກຳນົດຄ່າ iSCSI"
+
+#. Performs an iSCSI discovery.
+#.
+#. @param serialized_options [String] Serialized dicovery options.
+#. @return [Number] 0 success; 1 failure.
+#: service/lib/agama/dbus/storage/iscsi.rb:120
+msgid "Performing iSCSI discovery"
+msgstr "ກຳລັງດຳເນີນການຄົ້ນຫາ iSCSI"
+
+#. Implementation for the API method #Install.
+#: service/lib/agama/dbus/storage/manager.rb:192
+msgid "Preparing bootloader proposal"
+msgstr "ກຳລັງກະກຽມຂໍ້ສະເໜີບູດໂຫຼດເດີ"
+
+#: service/lib/agama/dbus/storage/manager.rb:195
+msgid "Preparing the storage devices"
+msgstr "ກຳລັງກະກຽມອຸປະກອນເກັບຂໍ້ມູນ"
+
+#: service/lib/agama/dbus/storage/manager.rb:198
+msgid "Writing bootloader sysconfig"
+msgstr "ກຳລັງຂຽນຄ່າ sysconfig ຂອງບູດໂຫຼດເດີ"
+
+#. Implementation for the API method #Finish.
+#: service/lib/agama/dbus/storage/manager.rb:206
+msgid "Finishing installation"
+msgstr "ກຳລັງສຳເລັດການຕິດຕັ້ງ"
+
+#. Implementation for the API method #Umount.
+#: service/lib/agama/dbus/storage/manager.rb:213
+msgid "Unmounting devices"
+msgstr "ກຳລັງຖອນການເຊື່ອມຕໍ່ອຸປະກອນ"
+
+#. after loading config try to apply it, so proper packages can be requested
+#. TODO: generate also new issue from configuration
+#: service/lib/agama/dbus/storage/manager.rb:252
+msgid "Activating storage devices"
+msgstr "ກຳລັງເປີດໃຊ້ງານອຸປະກອນເກັບຂໍ້ມູນ"
+
+#: service/lib/agama/dbus/storage/manager.rb:255
+msgid "Probing storage devices"
+msgstr "ກຳລັງກວດຫາອຸປະກອນເກັບຂໍ້ມູນ"
+
+#: service/lib/agama/dbus/storage/manager.rb:258
+msgid "Applying storage configuration"
+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 "ອຸປະກອນທີ່ມີນາມແຝງ '%s' ຖືກໃຊ້ໂດຍຫຼາຍກວ່າໜຶ່ງອຸປະກອນ"
+
+#. 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 "ອຸປະກອນທີ່ມີນາມແຝງ '%s' ບໍ່ສາມາດຟໍແມັດໄດ້ ເພາະມັນຖືກໃຊ້ໂດຍອຸປະກອນອື່ນ"
+
+#. 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 "ອຸປະກອນທີ່ມີນາມແຝງ '%s' ບໍ່ສາມາດແບ່ງພາທິຊັນໄດ້ 
ເພາະມັນຖືກໃຊ້ໂດຍອຸປະກອນອື່ນ"
+
+#. 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 "ບໍ່ມີອຸປະກອນບູດທີ່ມີນາມແຝງ '%s'"
+
+#. 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:79
+#, perl-brace-format
+msgid ""
+"No passphrase provided (required for using the method '%{crypt_method}')."
+msgstr "ບໍ່ມີການລະບຸລະຫັດຜ່ານ (ຈຳເປັນສຳລັບການໃຊ້ວິທີ '%{crypt_method}')."
+
+#. 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:95
+#, perl-brace-format
+msgid "%{crypt_method} is not available in this system."
+msgstr "%{crypt_method} ບໍ່ມີໃຫ້ໃຊ້ໃນລະບົບນີ້."
+
+#. 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:112
+#, perl-brace-format
+msgid "%{crypt_method} is not suitable for a device different to swap."
+msgstr "%{crypt_method} ບໍ່ເໝາະສົມສຳລັບອຸປະກອນອື່ນທີ່ບໍ່ແມ່ນ swap."
+
+#. TRANSLATORS: %{crypt_method} is the identifier of the method to encrypt the 
device
+#. (e.g., "luks1", "random swap") and %{bootloader} by a bootloader name (e.g.,
+#. "grub2").
+#: service/lib/agama/storage/config_checkers/encryption.rb:131
+#, perl-brace-format
+msgid "%{crypt_method} is not suitable for the bootloader %{bootloader}."
+msgstr "%{crypt_method} ບໍ່ເໝາະສົມສຳລັບບູດໂຫຼດເດີ %{bootloader}."
+
+#. TRANSLATORS: %s is replaced by a mount path (e.g., "/home").
+#: service/lib/agama/storage/config_checkers/filesystem.rb:75
+#, c-format
+msgid "Missing file system type for '%s'"
+msgstr "ບໍ່ພົບປະເພດລະບົບໄຟລ໌ສຳລັບ '%s'"
+
+#. 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:98
+#, perl-brace-format
+msgid "The file system type '%{filesystem}' is not suitable for '%{path}'"
+msgstr "ປະເພດລະບົບໄຟລ໌ '%{filesystem}' ບໍ່ເໝາະສົມສຳລັບ '%{path}'"
+
+#. TRANSLATORS: %s is the replaced by a device alias (e.g., "pv1").
+#: service/lib/agama/storage/config_checkers/logical_volume.rb:100
+#, c-format
+msgid "There is no LVM thin pool volume with alias '%s'"
+msgstr "ບໍ່ມີ LVM thin pool volume ທີ່ມີນາມແຝງ '%s'"
+
+#. TRANSLATORS: %s is the replaced by a device alias (e.g., "md1").
+#: service/lib/agama/storage/config_checkers/md_raid.rb:102
+#, c-format
+msgid "There is no MD RAID member device with alias '%s'"
+msgstr "ບໍ່ມີອຸປະກອນສະມາຊິກ MD RAID ທີ່ມີນາມແຝງ '%s'"
+
+#. 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:115
+msgid "There is a MD RAID without level"
+msgstr "ມີ MD RAID ທີ່ບໍ່ມີລະດັບ (level)"
+
+#. Issue if the MD RAID does not contain enough member devices.
+#.
+#. @return [Issue, nil]
+#: service/lib/agama/storage/config_checkers/md_raid.rb:128
+#, c-format
+msgid "At least %s devices are required for %s"
+msgstr "ຕ້ອງການຢ່າງໜ້ອຍ %s ອຸປະກອນສຳລັບ %s"
+
+#. 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:62
+#, perl-brace-format
+msgid "%{method} is not suitable to encrypt the physical volumes."
+msgstr "%{method} ບໍ່ເໝາະສົມໃນການເຂົ້າລະຫັດ physical volumes."
+
+#. TRANSLATORS: %s is replaced by a device name (e.g., "/dev/vda").
+#: service/lib/agama/storage/config_checkers/search.rb:77
+#, c-format
+msgid "Mandatory device %s not found"
+msgstr "ບໍ່ພົບອຸປະກອນທີ່ຈຳເປັນ %s"
+
+#. TRANSLATORS: %s is replaced by a device type (e.g., "drive").
+#: service/lib/agama/storage/config_checkers/search.rb:83
+#, c-format
+msgid "Mandatory %s not found"
+msgstr "ບໍ່ພົບ %s ທີ່ຈຳເປັນ"
+
+#. Issue if the parent of the member device is formatted.
+#.
+#. @param device [Y2Storage::BlkDevice] Parent of the member device.
+#. @return [Issue, nil]
+#: service/lib/agama/storage/config_checkers/search.rb:127
+#, perl-brace-format
+msgid ""
+"The device '%{parent_name}' cannot be formatted because it is part of the "
+"reused MD RAID '%{reused_name}'"
+msgstr ""
+"ອຸປະກອນ '%{parent_name}' ບໍ່ສາມາດຟໍແມັດໄດ້ ເພາະມັນເປັນສ່ວນໜຶ່ງຂອງ MD RAID '%"
+"{reused_name}' ທີ່ນຳມາໃຊ້ໃໝ່"
+
+#. TRANSLATORS: %{parent_name} and %{reused_name} are replaced by device names 
(e.g.,
+#. "/dev/vda", "/dev/md0").
+#: service/lib/agama/storage/config_checkers/search.rb:137
+#, perl-brace-format
+msgid ""
+"The device '%{parent_name}' cannot be formatted because it is a physical "
+"volume of the reused LVM volume group '%{reused_name}'"
+msgstr ""
+"ອຸປະກອນ '%{parent_name}' ບໍ່ສາມາດຟໍແມັດໄດ້ ເພາະມັນເປັນ physical volume ຂອງ 
LVM "
+"volume group '%{reused_name}' ທີ່ນຳມາໃຊ້ໃໝ່"
+
+#. Issue if the member device is deleted.
+#.
+#. @param member_config [#search]
+#. @return [Issue, nil]
+#: service/lib/agama/storage/config_checkers/search.rb:167
+#, perl-brace-format
+msgid ""
+"The device '%{member_name}' cannot be deleted because it is part of the "
+"reused MD RAID '%{reused_name}'"
+msgstr ""
+"ອຸປະກອນ '%{member_name}' ບໍ່ສາມາດລຶບໄດ້ ເພາະມັນເປັນສ່ວນໜຶ່ງຂອງ MD RAID '%"
+"{reused_name}' ທີ່ນຳມາໃຊ້ໃໝ່"
+
+#. TRANSLATORS: %{member_name} and %{reused_name} are replaced by device names 
(e.g.,
+#. "/dev/vda", "/dev/md0").
+#: service/lib/agama/storage/config_checkers/search.rb:177
+#, perl-brace-format
+msgid ""
+"The device '%{member_name}' cannot be deleted because it is a physical "
+"volume of the reused LVM volume group '%{reused_name}'"
+msgstr ""
+"ອຸປະກອນ '%{member_name}' ບໍ່ສາມາດລຶບໄດ້ ເພາະມັນເປັນ physical volume ຂອງ LVM 
volume "
+"group '%{reused_name}' ທີ່ນຳມາໃຊ້ໃໝ່"
+
+#. Issue if the device member is resized.
+#.
+#. @param member_config [#search]
+#. @return [Issue, nil]
+#: service/lib/agama/storage/config_checkers/search.rb:207
+#, perl-brace-format
+msgid ""
+"The device '%{member_name}' cannot be resized because it is part of the "
+"reused MD RAID '%{reused_name}'"
+msgstr ""
+"ອຸປະກອນ '%{member_name}' ບໍ່ສາມາດປ່ຽນຂະໜາດໄດ້ ເພາະມັນເປັນສ່ວນໜຶ່ງຂອງ MD RAID 
'%"
+"{reused_name}' ທີ່ນຳມາໃຊ້ໃໝ່"
+
+#. TRANSLATORS: %{member_name} and %{reused_name} are replaced by device names 
(e.g.,
+#. "/dev/vda", "/dev/md0").
+#: service/lib/agama/storage/config_checkers/search.rb:217
+#, perl-brace-format
+msgid ""
+"The device '%{member_name}' cannot be resized because it is a physical "
+"volume of the reused LVM volume group '%{reused_name}'"
+msgstr ""
+"ອຸປະກອນ '%{member_name}' ບໍ່ສາມາດປ່ຽນຂະໜາດໄດ້ ເພາະມັນເປັນ physical volume ຂອງ 
LVM "
+"volume group '%{reused_name}' ທີ່ນຳມາໃຊ້ໃໝ່"
+
+#. Issue if the device member is formatted.
+#.
+#. @param member_config [#search]
+#. @return [Issue, nil]
+#: service/lib/agama/storage/config_checkers/search.rb:247
+#, perl-brace-format
+msgid ""
+"The device '%{member_name}' cannot be formatted because it is part of the "
+"reused MD RAID '%{reused_name}'"
+msgstr ""
+"ອຸປະກອນ '%{member_name}' ບໍ່ສາມາດຟໍແມັດໄດ້ ເພາະມັນເປັນສ່ວນໜຶ່ງຂອງ MD RAID '%"
+"{reused_name}' ທີ່ນຳມາໃຊ້ໃໝ່"
+
+#. TRANSLATORS: %{member_name} and %{reused_name} are replaced by device names 
(e.g.,
+#. "/dev/vda", "/dev/md0").
+#: service/lib/agama/storage/config_checkers/search.rb:257
+#, perl-brace-format
+msgid ""
+"The device '%{member_name}' cannot be formatted because it is a physical "
+"volume of the reused LVM volume group '%{reused_name}'"
+msgstr ""
+"ອຸປະກອນ '%{member_name}' ບໍ່ສາມາດຟໍແມັດໄດ້ ເພາະມັນເປັນ physical volume ຂອງ 
LVM "
+"volume group '%{reused_name}' ທີ່ນຳມາໃຊ້ໃໝ່"
+
+#. Issue if the device member is partitioned.
+#.
+#. @param member_config [#search]
+#. @return [Issue, nil]
+#: service/lib/agama/storage/config_checkers/search.rb:287
+#, perl-brace-format
+msgid ""
+"The device '%{member_name}' cannot be partitioned because it is part of the "
+"reused MD RAID '%{reused_name}'"
+msgstr ""
+"ອຸປະກອນ '%{member_name}' ບໍ່ສາມາດແບ່ງພາທິຊັນໄດ້ ເພາະມັນເປັນສ່ວນໜຶ່ງຂອງ MD 
RAID '%"
+"{reused_name}' ທີ່ນຳມາໃຊ້ໃໝ່"
+
+#. TRANSLATORS: %{member_name} and %{reused_name} are replaced by device names 
(e.g.,
+#. "/dev/vda", "/dev/md0").
+#: service/lib/agama/storage/config_checkers/search.rb:297
+#, perl-brace-format
+msgid ""
+"The device '%{member_name}' cannot be partitioned because it is a physical "
+"volume of the reused LVM volume group '%{reused_name}'"
+msgstr ""
+"ອຸປະກອນ '%{member_name}' ບໍ່ສາມາດແບ່ງພາທິຊັນໄດ້ ເພາະມັນເປັນ physical volume 
ຂອງ LVM "
+"volume group '%{reused_name}' ທີ່ນຳມາໃຊ້ໃໝ່"
+
+#. 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/search.rb:326
+#, perl-brace-format
+msgid ""
+"The device '%{member_name}' cannot be used because it is part of the reused "
+"MD RAID '%{reused_name}'"
+msgstr ""
+"ອຸປະກອນ '%{member_name}' ບໍ່ສາມາດໃຊ້ໄດ້ ເພາະມັນເປັນສ່ວນໜຶ່ງຂອງ MD RAID '%"
+"{reused_name}' ທີ່ນຳມາໃຊ້ໃໝ່"
+
+#. TRANSLATORS: %{member_name} and %{reused_name} are replaced by device names 
(e.g.,
+#. "/dev/vda", "/dev/md0").
+#: service/lib/agama/storage/config_checkers/search.rb:336
+#, perl-brace-format
+msgid ""
+"The device '%{member_name}' cannot be used because it is a physical volume "
+"of the reused LVM volume group '%{reused_name}'"
+msgstr ""
+"ອຸປະກອນ '%{member_name}' ບໍ່ສາມາດໃຊ້ໄດ້ ເພາະມັນເປັນ physical volume ຂອງ LVM 
volume "
+"group '%{reused_name}' ທີ່ນຳມາໃຊ້ໃໝ່"
+
+#. @return [String]
+#: service/lib/agama/storage/config_checkers/search.rb:384
+msgid "drive"
+msgstr "ໄດຣຟ໌ (drive)"
+
+#: service/lib/agama/storage/config_checkers/search.rb:386
+msgid "MD RAID"
+msgstr "MD RAID"
+
+#: service/lib/agama/storage/config_checkers/search.rb:388
+msgid "partition"
+msgstr "ພາທິຊັນ (partition)"
+
+#: service/lib/agama/storage/config_checkers/search.rb:390
+msgid "LVM logical volume"
+msgstr "ໂວນລູມຕາມຕັກກະ LVM"
+
+#: service/lib/agama/storage/config_checkers/search.rb:392
+msgid "LVM volume group"
+msgstr "ກຸ່ມບໍລິມາດ LVM"
+
+#: service/lib/agama/storage/config_checkers/search.rb:394
+msgid "device"
+msgstr "ອຸປະກອນ"
+
+#. Issue if the volume group name is missing.
+#.
+#. @return [Issue, nil]
+#: service/lib/agama/storage/config_checkers/volume_group.rb:85
+msgid "There is a volume group without name"
+msgstr "ມີ volume group ທີ່ບໍ່ມີຊື່"
+
+#. TRANSLATORS: %s is the replaced by a device alias (e.g., "pv1").
+#: service/lib/agama/storage/config_checkers/volume_group.rb:117
+#, c-format
+msgid "There is no LVM physical volume with alias '%s'"
+msgstr "ບໍ່ມີ LVM physical volume ທີ່ມີນາມແຝງ '%s'"
+
+#. TRANSLATORS: %s is the replaced by a device alias (e.g., "pv1").
+#: service/lib/agama/storage/config_checkers/volume_group.rb:144
+#, c-format
+msgid ""
+"The list of target devices for the volume group '%s' is mixing reused "
+"devices and new devices"
+msgstr ""
+"ລາຍຊື່ອຸປະກອນເປົ້າໝາຍສຳລັບ volume group '%s' 
ມີການປົນກັນລະຫວ່າງອຸປະກອນທີ່ນຳມາໃຊ້ໃໝ່ ແລະ "
+"ອຸປະກອນໃໝ່"
+
+#. TRANSLATORS: %s is the replaced by a device alias (e.g., "disk1").
+#: service/lib/agama/storage/config_checkers/volume_group.rb:164
+#, c-format
+msgid "There is no target device for LVM physical volumes with alias '%s'"
+msgstr "ບໍ່ມີອຸປະກອນເປົ້າໝາຍສຳລັບ LVM physical volumes ທີ່ມີນາມແຝງ '%s'"
+
+#. 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 "ອຸປະກອນ '%s' ຖືກໃຊ້ຫຼາຍຄັ້ງເປັນອຸປະກອນເປົ້າໝາຍສຳລັບ physical volumes"
+
+#. 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:126
+msgid "Copying important installation files to the target system"
+msgstr "ກຳລັງຄັດລອກໄຟລ໌ການຕິດຕັ້ງທີ່ສຳຄັນໄປຍັງລະບົບເປົ້າໝາຍ"
+
+#. Step to write the bootloader configuration
+#: service/lib/agama/storage/finisher.rb:161
+msgid "Installing bootloader"
+msgstr "ກຳລັງຕິດຕັ້ງບູດໂຫຼດເດີ"
+
+#. Step to finish the Y2Storage configuration
+#: service/lib/agama/storage/finisher.rb:178
+msgid "Adjusting storage configuration"
+msgstr "ກຳລັງປັບແຕ່ງການກຳນົດຄ່າບ່ອນເກັບຂໍ້ມູນ"
+
+#. Step to finish the iSCSI configuration
+#: service/lib/agama/storage/finisher.rb:189
+msgid "Adjusting iSCSI configuration"
+msgstr "ກຳລັງປັບແຕ່ງການກຳນົດຄ່າ iSCSI"
+
+#. Step to configure the file-system snapshots
+#: service/lib/agama/storage/finisher.rb:200
+msgid "Configuring file systems snapshots"
+msgstr "ກຳລັງກຳນົດຄ່າສະແນັບຊອດ (snapshots) ຂອງລະບົບໄຟລ໌"
+
+#. Returns an issue if there is no candidate device for installation
+#.
+#. @return [Issue, nil]
+#: service/lib/agama/storage/manager.rb:316
+msgid "There is no suitable device for installation"
+msgstr "ບໍ່ມີອຸປະກອນທີ່ເໝາະສົມສຳລັບການຕິດຕັ້ງ"
+
+#. Issue representing the proposal is not valid.
+#.
+#. @return [Issue]
+#: service/lib/agama/storage/proposal.rb:351
+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:361
+msgid "A problem occurred while calculating the storage setup"
+msgstr "ເກີດບັນຫາຂຶ້ນໃນຂະນະທີ່ກຳລັງຄຳນວນການຕັ້ງຄ່າບ່ອນເກັບຂໍ້ມູນ"
+
+#. Step to copy the installation logs
+#: service/lib/agama/storage/umounter.rb:112
+msgid "Copying logs"
+msgstr "ກຳລັງຄັດລອກບັນທຶກ (logs)"
+
+#. Step to unmount the target file-systems
+#: service/lib/agama/storage/umounter.rb:153
+msgid "Unmounting storage devices"
+msgstr "ກຳລັງຖອນການເຊື່ອມຕໍ່ອຸປະກອນເກັບຂໍ້ມູນ"
+
+#. TRANSLATORS: %s is replaced by a zFCP channel (e.g., "0.0.5223").
+#: service/lib/agama/storage/zfcp/manager.rb:205
+#, c-format
+msgid "The zFCP controller %s cannot be activated"
+msgstr "ຕົວຄວບຄຸມ zFCP %s ບໍ່ສາມາດເປີດໃຊ້ງານໄດ້"
+
+#. TRANSLATORS: %s is replaced by a zFCP device (e.g.,
+#. "0.0.5223 0x500507681015a2b2 0x0186000000000000").
+#: service/lib/agama/storage/zfcp/manager.rb:245
+#, c-format
+msgid "The zFCP device %s cannot be activated"
+msgstr "ອຸປະກອນ zFCP %s ບໍ່ສາມາດເປີດໃຊ້ງານໄດ້"
+
+#. TRANSLATORS: %s is replaced by a zFCP device (e.g.,
+#. "0.0.5223 0x500507681015a2b2 0x0186000000000000").
+#: service/lib/agama/storage/zfcp/manager.rb:289
+#, c-format
+msgid "The zFCP device %s cannot be deactivated"
+msgstr "ອຸປະກອນ zFCP %s ບໍ່ສາມາດປິດການໃຊ້ງານໄດ້"
+
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "ພົບອົງປະກອບທີ່ບໍ່ຮອງຮັບໃນໂປຣໄຟລ໌ AutoYaST: %{keys}."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/nb_NO.po new/po/nb_NO.po
--- old/po/nb_NO.po     2026-08-18 11:57:52.000000000 +0200
+++ new/po/nb_NO.po     2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-04-25 17:04+0000\n"
 "Last-Translator: openSUSE Weblate user 1416 "
 "<[email protected]>\n"
@@ -20,14 +20,6 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.17\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "Fant elementer i AutoYaST-profilen som ikke støttes: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -506,6 +498,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr ""
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "Fant elementer i AutoYaST-profilen som ikke støttes: %{keys}."
+
 #~ msgid "Analyze disks"
 #~ msgstr "Analyser disker"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/nl.po new/po/nl.po
--- old/po/nl.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/nl.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2025-07-02 06:59+0000\n"
 "Last-Translator: Natasha Ament <[email protected]>\n"
 "Language-Team: Dutch <https://l10n.opensuse.org/projects/agama/agama-service-";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.12.2\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "Niet-ondersteunde elementen in het AutoYaST-profiel gevonden: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 #, fuzzy
@@ -546,6 +538,11 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "Het opstart apparaat kan niet automatisch worden geselecteerd"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr ""
+#~ "Niet-ondersteunde elementen in het AutoYaST-profiel gevonden: %{keys}."
+
 #~ msgid "Certificate:"
 #~ msgstr "Certificaat:"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/pl.po new/po/pl.po
--- old/po/pl.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/pl.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-07-30 00:12+0000\n"
 "Last-Translator: Jakub Wroński <[email protected]>\n"
 "Language-Team: Polish <https://l10n.opensuse.org/projects/agama/agama-";
@@ -20,14 +20,6 @@
 "|| n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 2026.7.1\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "W profilu AutoYaST znaleziono nieobsługiwane elementy: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -541,6 +533,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "Nie można dezaktywować urządzenia zFCP %s"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "W profilu AutoYaST znaleziono nieobsługiwane elementy: %{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Nieznany kontroler zFCP %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/pt_BR.po new/po/pt_BR.po
--- old/po/pt_BR.po     2026-08-18 11:57:52.000000000 +0200
+++ new/po/pt_BR.po     2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-06-21 19:12+0000\n"
 "Last-Translator: Samanta Magalhaes <[email protected]>\n"
 "Language-Team: Portuguese (Brazil) <https://l10n.opensuse.org/projects/agama/";
@@ -19,15 +19,6 @@
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 2026.6.1\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 ""
-"Foram encontrados elementos não suportados no perfil do AutoYaST: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -535,6 +526,11 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "Não é possível desativar o dispositivo zFCP %s"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr ""
+#~ "Foram encontrados elementos não suportados no perfil do AutoYaST: %{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Controlador zFCP %s desconhecido"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/ro.po new/po/ro.po
--- old/po/ro.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/ro.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-02-13 10:41+0000\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -18,14 +18,6 @@
 "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
 "20)) ? 1 : 2;\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 ""
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/ru.po new/po/ru.po
--- old/po/ru.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/ru.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-08-06 02:13+0000\n"
 "Last-Translator: Andrei Stepanov <[email protected]>\n"
 "Language-Team: Russian <https://l10n.opensuse.org/projects/agama/agama-";
@@ -20,14 +20,6 @@
 "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 2026.8\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "Найдены неподдерживаемые элементы в профиле AutoYaST: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -539,6 +531,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "Невозможно деактивировать устройство zFCP %s"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "Найдены неподдерживаемые элементы в профиле AutoYaST: %{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Неизвестный контроллер zFCP %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/sk.po new/po/sk.po
--- old/po/sk.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/sk.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-05-24 13:12+0000\n"
 "Last-Translator: Ferdinand Galko <[email protected]>\n"
 "Language-Team: Slovak <https://l10n.opensuse.org/projects/agama/agama-";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Generator: Weblate 2026.5\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "V profile AutoYaST boli nájdené nepodporované prvky: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -530,6 +522,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "Zariadenie zFCP %s nie je možné deaktivovať"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "V profile AutoYaST boli nájdené nepodporované prvky: %{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Neznámy radič zFCP %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/su.po new/po/su.po
--- old/po/su.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/su.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2025-09-23 02:46+0000\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -17,14 +17,6 @@
 "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<Element>] 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 ""
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/sv.po new/po/sv.po
--- old/po/sv.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/sv.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-05-18 09:12+0000\n"
 "Last-Translator: Luna  Jernberg <[email protected]>\n"
 "Language-Team: Swedish <https://l10n.opensuse.org/projects/agama/agama-";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 2026.5\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "Hittade ostödda element i AutoYaST-profilen: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -529,6 +521,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "zFCP-enhet %s kan inte inaktiveras"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "Hittade ostödda element i AutoYaST-profilen: %{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Okänd zFCP-styrenhet %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/tr.po new/po/tr.po
--- old/po/tr.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/tr.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
-"PO-Revision-Date: 2026-06-04 13:44+0000\n"
-"Last-Translator: yakup <[email protected]>\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
+"PO-Revision-Date: 2026-08-25 15:33+0000\n"
+"Last-Translator: Efe Mert <[email protected]>\n"
 "Language-Team: Turkish <https://l10n.opensuse.org/projects/agama/agama-";
 "service-master/tr/>\n"
 "Language: tr\n"
@@ -17,15 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 2026.6.1\n"
-
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "AutoYaST Profilinde desteklenmeyen elemanlar bulundu: %{keys}."
+"X-Generator: Weblate 2026.8.1\n"
 
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
@@ -66,9 +58,8 @@
 
 #. Implementation for the API method #Finish.
 #: service/lib/agama/dbus/storage/manager.rb:206
-#, fuzzy
 msgid "Finishing installation"
-msgstr "Kurulumu iptal et"
+msgstr "Kurulum bitiriliyor"
 
 #. Implementation for the API method #Umount.
 #: service/lib/agama/dbus/storage/manager.rb:213
@@ -87,9 +78,8 @@
 msgstr "Depolama aygıtları araştırılıyor"
 
 #: service/lib/agama/dbus/storage/manager.rb:258
-#, fuzzy
 msgid "Applying storage configuration"
-msgstr "Depolama yapılandırmasını ayarlama"
+msgstr "Depolama yapılandırılması uygulanıyor"
 
 #. Issue when the device has several users.
 #.
@@ -483,9 +473,8 @@
 #.
 #. @return [Issue, nil]
 #: service/lib/agama/storage/manager.rb:316
-#, fuzzy
 msgid "There is no suitable device for installation"
-msgstr "Kurulum için cihaz seçilmedi"
+msgstr "Kurulum için uygun cihaz bulunamadı"
 
 #. Issue representing the proposal is not valid.
 #.
@@ -532,6 +521,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "Önyükleme aygıtı otomatik olarak seçilemez"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "AutoYaST Profilinde desteklenmeyen elemanlar bulundu: %{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Bilinmeyen zFCP denetleyicisi %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/uk.po new/po/uk.po
--- old/po/uk.po        2026-08-18 11:57:52.000000000 +0200
+++ new/po/uk.po        2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-05-27 14:12+0000\n"
 "Last-Translator: Eugene Krater <[email protected]>\n"
 "Language-Team: Ukrainian <https://l10n.opensuse.org/projects/agama/agama-";
@@ -20,14 +20,6 @@
 "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 2026.5\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "Знайдено непідтримувані елементи у профілі AutoYaST: %{keys}."
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -532,6 +524,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "Пристрій zFCP %s не може бути деактивований"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "Знайдено непідтримувані елементи у профілі AutoYaST: %{keys}."
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "Невідомий контролер zFCP %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/zh_CN.po new/po/zh_CN.po
--- old/po/zh_CN.po     2026-08-18 11:57:52.000000000 +0200
+++ new/po/zh_CN.po     2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-06-25 09:55+0000\n"
 "Last-Translator: Grace Yu <[email protected]>\n"
 "Language-Team: Chinese (China) <https://l10n.opensuse.org/projects/agama/";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 2026.6.1\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "在 AutoYaST 配置文件中发现不支持的元素:%{keys}。"
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -516,6 +508,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "无法停用 zFCP 设备 %s"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "在 AutoYaST 配置文件中发现不支持的元素:%{keys}。"
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "未知 zFCP 控制器 %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/po/zh_TW.po new/po/zh_TW.po
--- old/po/zh_TW.po     2026-08-18 11:57:52.000000000 +0200
+++ new/po/zh_TW.po     2026-09-02 11:36:48.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-08-12 13:23+0000\n"
+"POT-Creation-Date: 2026-08-26 11:36+0000\n"
 "PO-Revision-Date: 2026-06-25 09:55+0000\n"
 "Last-Translator: Grace Yu <[email protected]>\n"
 "Language-Team: Chinese (Taiwan) <https://l10n.opensuse.org/projects/agama/";
@@ -19,14 +19,6 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 2026.6.1\n"
 
-#. Reports the problems and decide whether to continue or not.
-#.
-#. @param elements [Array<Element>] 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 "在 AutoYaST 設定檔中發現不受支援的元素:%{keys}。"
-
 #. Implementation for the API method #Probe.
 #: service/lib/agama/dbus/storage/dasd.rb:65
 msgid "Probing DASD devices"
@@ -516,6 +508,10 @@
 msgid "The zFCP device %s cannot be deactivated"
 msgstr "無法停用 zFCP 裝置 %s"
 
+#, perl-brace-format
+#~ msgid "Found unsupported elements in the AutoYaST profile: %{keys}."
+#~ msgstr "在 AutoYaST 設定檔中發現不受支援的元素:%{keys}。"
+
 #, c-format
 #~ msgid "Unknown zFCP controller %s"
 #~ msgstr "未知 zFCP 控制器 %s"

Reply via email to