Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package barrel for openSUSE:Factory checked 
in at 2023-09-21 22:22:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/barrel (Old)
 and      /work/SRC/openSUSE:Factory/.barrel.new.1770 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "barrel"

Thu Sep 21 22:22:57 2023 rev:17 rq:1112723 version:0.2.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/barrel/barrel.changes    2023-06-16 
16:56:15.302206816 +0200
+++ /work/SRC/openSUSE:Factory/.barrel.new.1770/barrel.changes  2023-09-21 
22:23:09.309097881 +0200
@@ -1,0 +2,6 @@
+Thu Sep 21 08:26:17 CEST 2023 - aschn...@suse.com
+
+- allow to not add file systems in /etc/fstab
+- version 0.2.2
+
+-------------------------------------------------------------------

Old:
----
  barrel-0.2.1.tar.xz

New:
----
  barrel-0.2.2.tar.xz

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

Other differences:
------------------
++++++ barrel.spec ++++++
--- /var/tmp/diff_new_pack.nLKBE2/_old  2023-09-21 22:23:11.429174812 +0200
+++ /var/tmp/diff_new_pack.nLKBE2/_new  2023-09-21 22:23:11.429174812 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           barrel
-Version:        0.2.1
+Version:        0.2.2
 Release:        0
 Summary:        Tool for storage management
 License:        GPL-2.0-only

++++++ barrel-0.2.1.tar.xz -> barrel-0.2.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/VERSION new/barrel-0.2.2/VERSION
--- old/barrel-0.2.1/VERSION    2023-05-31 12:14:44.000000000 +0200
+++ new/barrel-0.2.2/VERSION    2023-09-21 08:52:33.000000000 +0200
@@ -1 +1 @@
-0.2.1
+0.2.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/barrel/create-filesystem.cc 
new/barrel-0.2.2/barrel/create-filesystem.cc
--- old/barrel-0.2.1/barrel/create-filesystem.cc        2023-05-24 
11:06:44.000000000 +0200
+++ new/barrel-0.2.2/barrel/create-filesystem.cc        2023-09-21 
08:52:33.000000000 +0200
@@ -60,6 +60,7 @@
            { "size", required_argument, 's', _("set size"), "size" },
            { "devices", required_argument, 'd', _("set number of devices"), 
"number" },
            { "profiles", required_argument, 0, _("set profiles"), "profiles" },
+           { "no-fstab", no_argument, 0, _("do not add in /etc/fstab") },
            { "force", no_argument, 0, _("force if block devices are in use") }
        }, TakeBlkDevices::MAYBE);
 
@@ -143,6 +144,7 @@
            optional<SmartNumber> number;
            BtrfsRaidLevel btrfs_data_raid_level = BtrfsRaidLevel::DEFAULT;
            BtrfsRaidLevel btrfs_metadata_raid_level = BtrfsRaidLevel::DEFAULT;
+           bool fstab = true;
            bool force = false;
 
            vector<string> blk_devices;
@@ -233,6 +235,8 @@
                }
            }
 
+           fstab = !parsed_opts.has_option("no-fstab");
+
            force = parsed_opts.has_option("force");
 
            blk_devices = parsed_opts.get_blk_devices();
@@ -487,6 +491,8 @@
            string path = options.path.value();
            MountPoint* mount_point = blk_filesystem->create_mount_point(path);
 
+           mount_point->set_in_etc_fstab(options.fstab);
+
            if (options.mount_by)
                mount_point->set_mount_by(options.mount_by.value());
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/barrel/handle.cc 
new/barrel-0.2.2/barrel/handle.cc
--- old/barrel-0.2.1/barrel/handle.cc   2023-05-04 15:12:40.000000000 +0200
+++ new/barrel-0.2.2/barrel/handle.cc   2023-07-20 13:04:26.000000000 +0200
@@ -32,6 +32,7 @@
 #include <storage/Actiongraph.h>
 #include <storage/Actions/Create.h>
 #include <storage/Actions/Delete.h>
+#include <storage/Version.h>
 
 #include "Utils/GetOpts.h"
 #include "Utils/Args.h"
@@ -599,6 +600,14 @@
            if (global_options.version)
            {
                cout << "barrel " VERSION << '\n';
+
+               cout << "libstorage-ng " << LIBSTORAGE_NG_VERSION_STRING;
+#if LIBSTORAGE_NG_VERSION_AT_LEAST(1, 90)
+               if (strcmp(LIBSTORAGE_NG_VERSION_STRING, get_version_string()) 
!= 0)
+                   cout << " (" << get_version_string() << ")";
+#endif
+               cout << '\n';
+
                return true;
            }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/barrel/save-devicegraph.cc 
new/barrel-0.2.2/barrel/save-devicegraph.cc
--- old/barrel-0.2.1/barrel/save-devicegraph.cc 2022-01-11 10:37:02.000000000 
+0100
+++ new/barrel-0.2.2/barrel/save-devicegraph.cc 2023-07-24 08:20:21.000000000 
+0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2021 SUSE LLC
+ * Copyright (c) [2021-2023] SUSE LLC
  *
  * All Rights Reserved.
  *
@@ -38,7 +38,8 @@
     {
 
        const ExtOptions save_devicegraph_options({
-           { "name", required_argument, 'n', _("name of devicegraph"), "name" }
+           { "name", required_argument, 'n', _("name of devicegraph"), "name" 
},
+           { "probed", no_argument, 0, _("use probed instead of staging 
devicegraph") }
        });
 
 
@@ -47,6 +48,8 @@
            Options(GetOpts& get_opts);
 
            string name;
+
+           bool show_probed = false;
        };
 
 
@@ -58,6 +61,8 @@
                throw OptionsException(_("name missing for command 
'devicegraph'"));
 
            name = parsed_opts.get("name");
+
+           show_probed = parsed_opts.has_option("probed");
        }
 
     }
@@ -83,9 +88,11 @@
     void
     ParsedCmdSaveDevicegraph::doit(const GlobalOptions& global_options, State& 
state) const
     {
-       const Devicegraph* staging = state.storage->get_staging();
+       const Storage* storage = state.storage;
+
+       const Devicegraph* devicegraph = options.show_probed ? 
storage->get_probed() : storage->get_staging();
 
-       staging->save(options.name);
+       devicegraph->save(options.name);
     }
 
 
@@ -101,7 +108,7 @@
     const char*
     CmdSaveDevicegraph::help() const
     {
-       return _("Saves the staging devicegraph to a file.");
+       return _("Saves the devicegraph to a file.");
     }
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/doc/barrel.xml.in 
new/barrel-0.2.2/doc/barrel.xml.in
--- old/barrel-0.2.1/doc/barrel.xml.in  2023-06-15 12:57:28.000000000 +0200
+++ new/barrel-0.2.2/doc/barrel.xml.in  2023-09-21 08:52:33.000000000 +0200
@@ -2,13 +2,13 @@
 <refentry id='barrel8' xmlns:xlink="http://www.w3.org/1999/xlink";>
 
   <refentryinfo>
-    <date>2023-03-10</date>
+    <date>2023-09-21</date>
   </refentryinfo>
 
   <refmeta>
     <refentrytitle>barrel</refentrytitle>
     <manvolnum>8</manvolnum>
-    <refmiscinfo class='date'>2023-03-10</refmiscinfo>
+    <refmiscinfo class='date'>2023-09-21</refmiscinfo>
     <refmiscinfo class='version'>@VERSION@</refmiscinfo>
     <refmiscinfo class='manual'>Storage Management</refmiscinfo>
   </refmeta>
@@ -415,6 +415,12 @@
              </listitem>
            </varlistentry>
            <varlistentry>
+             <term><option>--no-fstab</option></term>
+             <listitem>
+               <para>Do not add the file system in /etc/fstab.</para>
+             </listitem>
+           </varlistentry>
+           <varlistentry>
              <term><option>--force</option></term>
              <listitem>
                <para>Force creation if block device is in use.</para>
@@ -962,7 +968,7 @@
       <varlistentry>
        <term><option>save devicegraph</option></term>
        <listitem>
-         <para>Saves the staging devicegraph to a file.</para>
+         <para>Saves the devicegraph to a file.</para>
 
          <variablelist>
            <varlistentry>
@@ -971,6 +977,12 @@
                <para>Name of devicegraph file.</para>
              </listitem>
            </varlistentry>
+           <varlistentry>
+             <term><option>--probed</option></term>
+             <listitem>
+               <para>Save the probed instead of the staging devicegraph.</para>
+             </listitem>
+           </varlistentry>
          </variablelist>
        </listitem>
       </varlistentry>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/po/ca.po new/barrel-0.2.2/po/ca.po
--- old/barrel-0.2.1/po/ca.po   2023-06-10 13:49:26.000000000 +0200
+++ new/barrel-0.2.2/po/ca.po   2023-09-21 09:06:03.000000000 +0200
@@ -7,8 +7,8 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-31 12:46+0200\n"
-"PO-Revision-Date: 2023-06-06 12:15+0000\n"
+"POT-Creation-Date: 2023-09-21 08:53+0200\n"
+"PO-Revision-Date: 2023-07-24 10:15+0000\n"
 "Last-Translator: David Medina <medi...@gmail.com>\n"
 "Language-Team: Catalan <https://l10n.opensuse.org/projects/barrel/master/ca/>"
 "\n"
@@ -319,7 +319,7 @@
 msgid "Saves pools."
 msgstr "Desa agrupacions."
 
-msgid "Saves the staging devicegraph to a file."
+msgid "Saves the devicegraph to a file."
 msgstr "Desa el gràfic de dispositius en un fitxer."
 
 msgid "Saving pools..."
@@ -474,6 +474,9 @@
 msgid "device '%s' not found in mapping"
 msgstr "el dispositiu %s no s'ha trobat al mapatge"
 
+msgid "do not add in /etc/fstab"
+msgstr ""
+
 msgid "do not commit anything to disk"
 msgstr "no apliquis res al disc"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/po/cs.po new/barrel-0.2.2/po/cs.po
--- old/barrel-0.2.1/po/cs.po   2023-06-10 13:49:26.000000000 +0200
+++ new/barrel-0.2.2/po/cs.po   2023-09-21 09:06:03.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-31 12:46+0200\n"
+"POT-Creation-Date: 2023-09-21 08:53+0200\n"
 "PO-Revision-Date: 2023-06-02 22:15+0000\n"
 "Last-Translator: Aleš Kastner <al...@volny.cz>\n"
 "Language-Team: Czech <https://l10n.opensuse.org/projects/barrel/master/cs/>\n"
@@ -321,7 +321,7 @@
 msgstr "Uloží zásobárny."
 
 #, fuzzy
-msgid "Saves the staging devicegraph to a file."
+msgid "Saves the devicegraph to a file."
 msgstr "Uloží inscenační devicegraf do souboru."
 
 msgid "Saving pools..."
@@ -482,6 +482,9 @@
 msgid "device '%s' not found in mapping"
 msgstr "zařízení '%s' nenalezeno v mapování"
 
+msgid "do not add in /etc/fstab"
+msgstr ""
+
 msgid "do not commit anything to disk"
 msgstr ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/po/da.po new/barrel-0.2.2/po/da.po
--- old/barrel-0.2.1/po/da.po   2023-05-31 12:54:56.000000000 +0200
+++ new/barrel-0.2.2/po/da.po   2023-09-21 09:06:03.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-31 12:46+0200\n"
+"POT-Creation-Date: 2023-09-21 08:53+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -316,7 +316,7 @@
 msgid "Saves pools."
 msgstr ""
 
-msgid "Saves the staging devicegraph to a file."
+msgid "Saves the devicegraph to a file."
 msgstr ""
 
 msgid "Saving pools..."
@@ -470,6 +470,9 @@
 msgid "device '%s' not found in mapping"
 msgstr ""
 
+msgid "do not add in /etc/fstab"
+msgstr ""
+
 msgid "do not commit anything to disk"
 msgstr ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/po/de.po new/barrel-0.2.2/po/de.po
--- old/barrel-0.2.1/po/de.po   2023-05-31 12:54:56.000000000 +0200
+++ new/barrel-0.2.2/po/de.po   2023-09-21 09:06:03.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: barrel\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-31 12:46+0200\n"
+"POT-Creation-Date: 2023-09-21 08:53+0200\n"
 "PO-Revision-Date: 2023-05-13 02:15+0000\n"
 "Last-Translator: Ettore Atalan <atalantt...@googlemail.com>\n"
 "Language-Team: German <https://l10n.opensuse.org/projects/barrel/master/de/";
@@ -319,7 +319,8 @@
 msgid "Saves pools."
 msgstr "Speichert Pools."
 
-msgid "Saves the staging devicegraph to a file."
+#, fuzzy
+msgid "Saves the devicegraph to a file."
 msgstr "Speichert den Staging-Gerätegraphen in einer Datei."
 
 msgid "Saving pools..."
@@ -473,6 +474,9 @@
 msgid "device '%s' not found in mapping"
 msgstr "Gerät '%s' nicht in Zuordnung gefunden"
 
+msgid "do not add in /etc/fstab"
+msgstr ""
+
 msgid "do not commit anything to disk"
 msgstr "nichts auf Datenträger speichern"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/po/es.po new/barrel-0.2.2/po/es.po
--- old/barrel-0.2.1/po/es.po   2023-05-31 12:54:56.000000000 +0200
+++ new/barrel-0.2.2/po/es.po   2023-09-21 09:06:03.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-31 12:46+0200\n"
+"POT-Creation-Date: 2023-09-21 08:53+0200\n"
 "PO-Revision-Date: 2023-02-08 23:14+0000\n"
 "Last-Translator: Antonio Simón <anto...@trans-mission.com>\n"
 "Language-Team: Spanish <https://l10n.opensuse.org/projects/barrel/master/es/";
@@ -319,7 +319,8 @@
 msgid "Saves pools."
 msgstr "Guarda reservas."
 
-msgid "Saves the staging devicegraph to a file."
+#, fuzzy
+msgid "Saves the devicegraph to a file."
 msgstr "Guarda el dispograma de ensayo en un archivo."
 
 msgid "Saving pools..."
@@ -475,6 +476,9 @@
 msgid "device '%s' not found in mapping"
 msgstr "Dispositivo «%s» no encontrado en el mapeo"
 
+msgid "do not add in /etc/fstab"
+msgstr ""
+
 msgid "do not commit anything to disk"
 msgstr "No acometer nada al disco"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/po/fr.po new/barrel-0.2.2/po/fr.po
--- old/barrel-0.2.1/po/fr.po   2023-05-31 12:54:56.000000000 +0200
+++ new/barrel-0.2.2/po/fr.po   2023-09-21 09:06:03.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-31 12:46+0200\n"
+"POT-Creation-Date: 2023-09-21 08:53+0200\n"
 "PO-Revision-Date: 2023-02-07 18:14+0000\n"
 "Last-Translator: Sophie Leroy <sop...@stoquart.com>\n"
 "Language-Team: French <https://l10n.opensuse.org/projects/barrel/master/fr/";
@@ -321,7 +321,8 @@
 msgid "Saves pools."
 msgstr "Enregistre les pools."
 
-msgid "Saves the staging devicegraph to a file."
+#, fuzzy
+msgid "Saves the devicegraph to a file."
 msgstr "Enregistre le graphique de périphérique de transit dans un fichier."
 
 msgid "Saving pools..."
@@ -477,6 +478,9 @@
 msgid "device '%s' not found in mapping"
 msgstr "périphérique '%s' introuvable dans le mappage"
 
+msgid "do not add in /etc/fstab"
+msgstr ""
+
 msgid "do not commit anything to disk"
 msgstr "ne rien valider sur le disque"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/po/it.po new/barrel-0.2.2/po/it.po
--- old/barrel-0.2.1/po/it.po   2023-05-31 12:54:56.000000000 +0200
+++ new/barrel-0.2.2/po/it.po   2023-09-21 09:06:03.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-31 12:46+0200\n"
+"POT-Creation-Date: 2023-09-21 08:53+0200\n"
 "PO-Revision-Date: 2023-02-07 13:14+0000\n"
 "Last-Translator: Davide Aiello <davide.aie...@novilingulists.com>\n"
 "Language-Team: Italian <https://l10n.opensuse.org/projects/barrel/master/it/";
@@ -319,7 +319,8 @@
 msgid "Saves pools."
 msgstr "Salva i pool."
 
-msgid "Saves the staging devicegraph to a file."
+#, fuzzy
+msgid "Saves the devicegraph to a file."
 msgstr "Salva il grafico dispositivo provvisorio su un file."
 
 msgid "Saving pools..."
@@ -475,6 +476,9 @@
 msgid "device '%s' not found in mapping"
 msgstr "dispositivo '%s' non trovato nella mappatura"
 
+msgid "do not add in /etc/fstab"
+msgstr ""
+
 msgid "do not commit anything to disk"
 msgstr "non eseguire il commit di alcun elemento sul disco"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/po/ja.po new/barrel-0.2.2/po/ja.po
--- old/barrel-0.2.1/po/ja.po   2023-06-01 09:44:02.000000000 +0200
+++ new/barrel-0.2.2/po/ja.po   2023-09-21 09:06:03.000000000 +0200
@@ -7,8 +7,8 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-31 12:46+0200\n"
-"PO-Revision-Date: 2023-05-31 14:14+0000\n"
+"POT-Creation-Date: 2023-09-21 08:53+0200\n"
+"PO-Revision-Date: 2023-07-24 10:15+0000\n"
 "Last-Translator: Yasuhiko Kamata <belphe...@belbel.or.jp>\n"
 "Language-Team: Japanese <https://l10n.opensuse.org/projects/barrel/master/ja/";
 ">\n"
@@ -320,8 +320,8 @@
 msgid "Saves pools."
 msgstr "プールを保存します。"
 
-msgid "Saves the staging devicegraph to a file."
-msgstr 
"ステージングデバイスグラフをファイルに保存します。"
+msgid "Saves the devicegraph to a file."
+msgstr "デバイスグラフをファイルに保存します。"
 
 msgid "Saving pools..."
 msgstr "プールを保存しています..."
@@ -473,6 +473,9 @@
 msgid "device '%s' not found in mapping"
 msgstr "デバイス '%s' がマッピング内にありません"
 
+msgid "do not add in /etc/fstab"
+msgstr ""
+
 msgid "do not commit anything to disk"
 msgstr "ディスクに対しては何も適用しません"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/po/mk.po new/barrel-0.2.2/po/mk.po
--- old/barrel-0.2.1/po/mk.po   2023-05-31 12:54:56.000000000 +0200
+++ new/barrel-0.2.2/po/mk.po   2023-09-21 09:06:03.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-31 12:46+0200\n"
+"POT-Creation-Date: 2023-09-21 08:53+0200\n"
 "PO-Revision-Date: 2023-03-21 04:14+0000\n"
 "Last-Translator: Kristijan Fremen Velkovski <m...@krisfremen.com>\n"
 "Language-Team: Macedonian <https://l10n.opensuse.org/projects/barrel/master/";
@@ -319,7 +319,7 @@
 msgid "Saves pools."
 msgstr ""
 
-msgid "Saves the staging devicegraph to a file."
+msgid "Saves the devicegraph to a file."
 msgstr ""
 
 msgid "Saving pools..."
@@ -473,6 +473,9 @@
 msgid "device '%s' not found in mapping"
 msgstr ""
 
+msgid "do not add in /etc/fstab"
+msgstr ""
+
 msgid "do not commit anything to disk"
 msgstr ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/po/pt_BR.po new/barrel-0.2.2/po/pt_BR.po
--- old/barrel-0.2.1/po/pt_BR.po        2023-05-31 12:54:56.000000000 +0200
+++ new/barrel-0.2.2/po/pt_BR.po        2023-09-21 09:06:03.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-31 12:46+0200\n"
+"POT-Creation-Date: 2023-09-21 08:53+0200\n"
 "PO-Revision-Date: 2023-02-08 14:14+0000\n"
 "Last-Translator: Samanta Magalhaes <samanta_texttr...@outlook.com>\n"
 "Language-Team: Portuguese (Brazil) <https://l10n.opensuse.org/projects/";
@@ -320,7 +320,8 @@
 msgid "Saves pools."
 msgstr "Salva os pools."
 
-msgid "Saves the staging devicegraph to a file."
+#, fuzzy
+msgid "Saves the devicegraph to a file."
 msgstr "Salva o gráfico do dispositivo temporário em um arquivo."
 
 msgid "Saving pools..."
@@ -476,6 +477,9 @@
 msgid "device '%s' not found in mapping"
 msgstr "dispositivo '%s' não encontrado no mapeamento"
 
+msgid "do not add in /etc/fstab"
+msgstr ""
+
 msgid "do not commit anything to disk"
 msgstr "não confirmar nada no disco"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/po/zh_CN.po new/barrel-0.2.2/po/zh_CN.po
--- old/barrel-0.2.1/po/zh_CN.po        2023-05-31 12:54:56.000000000 +0200
+++ new/barrel-0.2.2/po/zh_CN.po        2023-09-21 09:06:03.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-31 12:46+0200\n"
+"POT-Creation-Date: 2023-09-21 08:53+0200\n"
 "PO-Revision-Date: 2023-02-08 05:14+0000\n"
 "Last-Translator: Grace Yu <grace...@excel-gits.com>\n"
 "Language-Team: Chinese (China) <https://l10n.opensuse.org/projects/barrel/";
@@ -320,7 +320,8 @@
 msgid "Saves pools."
 msgstr "保存池。"
 
-msgid "Saves the staging devicegraph to a file."
+#, fuzzy
+msgid "Saves the devicegraph to a file."
 msgstr "将临时设备图表保存到文件中。"
 
 msgid "Saving pools..."
@@ -473,6 +474,9 @@
 msgid "device '%s' not found in mapping"
 msgstr "在映射中未找到设备 \"%s\""
 
+msgid "do not add in /etc/fstab"
+msgstr ""
+
 msgid "do not commit anything to disk"
 msgstr "不向磁盘提交任何内容"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.2.1/po/zh_TW.po new/barrel-0.2.2/po/zh_TW.po
--- old/barrel-0.2.1/po/zh_TW.po        2023-05-31 12:54:56.000000000 +0200
+++ new/barrel-0.2.2/po/zh_TW.po        2023-09-21 09:06:03.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-31 12:46+0200\n"
+"POT-Creation-Date: 2023-09-21 08:53+0200\n"
 "PO-Revision-Date: 2023-02-08 09:14+0000\n"
 "Last-Translator: Grace Yu <grace...@excel-gits.com>\n"
 "Language-Team: Chinese (Taiwan) <https://l10n.opensuse.org/projects/barrel/";
@@ -320,7 +320,8 @@
 msgid "Saves pools."
 msgstr "儲存池。"
 
-msgid "Saves the staging devicegraph to a file."
+#, fuzzy
+msgid "Saves the devicegraph to a file."
 msgstr "將預備裝置圖表儲存到檔案中。"
 
 msgid "Saving pools..."
@@ -473,6 +474,9 @@
 msgid "device '%s' not found in mapping"
 msgstr "在對應中找不到裝置 \"%s\""
 
+msgid "do not add in /etc/fstab"
+msgstr ""
+
 msgid "do not commit anything to disk"
 msgstr "不提交任何內容至磁碟"
 

Reply via email to