Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package barrel for openSUSE:Factory checked 
in at 2022-05-10 15:12:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/barrel (Old)
 and      /work/SRC/openSUSE:Factory/.barrel.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "barrel"

Tue May 10 15:12:41 2022 rev:8 rq:976033 version:0.1.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/barrel/barrel.changes    2022-05-05 
23:08:14.341695534 +0200
+++ /work/SRC/openSUSE:Factory/.barrel.new.1538/barrel.changes  2022-05-10 
15:12:59.127649839 +0200
@@ -1,0 +2,6 @@
+Mon May 09 10:27:21 CEST 2022 - aschn...@suse.com
+
+- added nilfs2 support
+- version 0.1.3
+
+-------------------------------------------------------------------

Old:
----
  barrel-0.1.2.tar.xz

New:
----
  barrel-0.1.3.tar.xz

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

Other differences:
------------------
++++++ barrel.spec ++++++
--- /var/tmp/diff_new_pack.Qqya1g/_old  2022-05-10 15:12:59.647650494 +0200
+++ /var/tmp/diff_new_pack.Qqya1g/_new  2022-05-10 15:12:59.651650499 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package barrel
 #
-# Copyright (c) 2021 SUSE LLC, Nuernberg, Germany.
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,45 +12,43 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
+
 Name:           barrel
-Version:        0.1.2
+Version:        0.1.3
 Release:        0
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+Summary:        Tool for storage management
+License:        GPL-2.0-only
+Group:          System/Packages
+URL:            https://github.com/openSUSE/barrel
 Source:         barrel-%{version}.tar.xz
+BuildRequires:  fdupes
+BuildRequires:  libstorage-ng-devel >= 4.4.76
+BuildRequires:  libtool
+BuildRequires:  libxslt
+BuildRequires:  readline-devel
 
+Requires:       libstorage-ng1 >= 4.5.10
+Recommends:     %{name}-lang
+Recommends:     logrotate
 %if 0%{?fedora_version}
 BuildRequires:  boost-devel
-BuildRequires:  json-c-devel
 BuildRequires:  docbook-style-xsl
+BuildRequires:  json-c-devel
 %else
+BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  libboost_headers-devel
 BuildRequires:  libboost_test-devel
 BuildRequires:  libjson-c-devel
-BuildRequires:  docbook-xsl-stylesheets
 %endif
-BuildRequires:  fdupes
-BuildRequires:  libstorage-ng-devel >= 4.4.76
-BuildRequires:  libtool
-BuildRequires:  libxslt
-BuildRequires:  readline-devel
-
-Requires:       libstorage-ng1 >= 4.4.76
-Recommends:     %{name}-lang
-Recommends:     logrotate
-
-Summary:        Tool for storage management
-Url:            http://github.com/openSUSE/barrel
-License:        GPL-2.0-only
-Group:          System/Packages
 
 %description
 barrel is a command line tool for storage management.
 
 %prep
-%setup
+%setup -q
 
 %build
 export CFLAGS="%{optflags} -DNDEBUG"
@@ -92,6 +90,5 @@
 Provides translations to the package %{name}
 
 %files lang -f barrel.lang
-%defattr(-,root,root)
 
 %changelog

++++++ barrel-0.1.2.tar.xz -> barrel-0.1.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/VERSION new/barrel-0.1.3/VERSION
--- old/barrel-0.1.2/VERSION    2022-05-05 16:21:49.000000000 +0200
+++ new/barrel-0.1.3/VERSION    2022-05-09 10:53:14.000000000 +0200
@@ -1 +1 @@
-0.1.2
+0.1.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/barrel/cmds.cc 
new/barrel-0.1.3/barrel/cmds.cc
--- old/barrel-0.1.2/barrel/cmds.cc     2022-03-21 18:18:17.000000000 +0100
+++ new/barrel-0.1.3/barrel/cmds.cc     2022-05-09 10:53:14.000000000 +0200
@@ -83,6 +83,7 @@
        { "luks2", make_shared<CmdCreateLuks2>() },
        { "lv", make_shared<CmdCreateLvmLv>() },
        { "ms-dos", make_shared<CmdCreateMsdos>() },
+       { "nilfs2", make_shared<CmdCreateNilfs2>() },
        { "ntfs", make_shared<CmdCreateNtfs>() },
        { "partition-table", make_shared<CmdCreatePartitionTable>() },
        { "pool", make_shared<CmdCreatePool>() },
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/barrel/create-filesystem.cc 
new/barrel-0.1.3/barrel/create-filesystem.cc
--- old/barrel-0.1.2/barrel/create-filesystem.cc        2022-03-21 
18:18:17.000000000 +0100
+++ new/barrel-0.1.3/barrel/create-filesystem.cc        2022-05-09 
10:53:14.000000000 +0200
@@ -65,6 +65,7 @@
            { "ext3", FsType::EXT3 },
            { "ext4", FsType::EXT4 },
            { "f2fs", FsType::F2FS },
+           { "nilfs2", FsType::NILFS2 },
            { "ntfs", FsType::NTFS },
            { "swap", FsType::SWAP },
            { "vfat", FsType::VFAT },
@@ -516,6 +517,20 @@
     }
 
 
+    shared_ptr<ParsedCmd>
+    CmdCreateNilfs2::parse(GetOpts& get_opts) const
+    {
+       return parse_create_filesystem(get_opts, FsType::NILFS2);
+    }
+
+
+    const char*
+    CmdCreateNilfs2::help() const
+    {
+       return _("Alias for 'create filesystem --type nilfs2'");
+    }
+
+
     shared_ptr<ParsedCmd>
     CmdCreateNtfs::parse(GetOpts& get_opts) const
     {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/barrel/create-filesystem.h 
new/barrel-0.1.3/barrel/create-filesystem.h
--- old/barrel-0.1.2/barrel/create-filesystem.h 2022-03-21 18:18:17.000000000 
+0100
+++ new/barrel-0.1.3/barrel/create-filesystem.h 2022-05-09 10:53:14.000000000 
+0200
@@ -86,6 +86,14 @@
     };
 
 
+    struct CmdCreateNilfs2 : public CmdCreateFilesystem
+    {
+       virtual shared_ptr<ParsedCmd> parse(GetOpts& get_opts) const override;
+       virtual const char* help() const override;
+       virtual bool is_alias() const override { return true; }
+    };
+
+
     struct CmdCreateNtfs : public CmdCreateFilesystem
     {
        virtual shared_ptr<ParsedCmd> parse(GetOpts& get_opts) const override;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/barrel.spec.in 
new/barrel-0.1.3/barrel.spec.in
--- old/barrel-0.1.2/barrel.spec.in     2022-05-05 16:21:49.000000000 +0200
+++ new/barrel-0.1.3/barrel.spec.in     2022-05-10 10:54:23.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package barrel
 #
-# Copyright (c) 2021 SUSE LLC, Nuernberg, Germany.
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,45 +12,43 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
+
 Name:           barrel
 Version:        @VERSION@
 Release:        0
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+Summary:        Tool for storage management
+License:        GPL-2.0-only
+Group:          System/Packages
+URL:            https://github.com/openSUSE/barrel
 Source:         barrel-%{version}.tar.xz
+BuildRequires:  fdupes
+BuildRequires:  libstorage-ng-devel >= 4.4.76
+BuildRequires:  libtool
+BuildRequires:  libxslt
+BuildRequires:  readline-devel
 
+Requires:       libstorage-ng1 >= 4.5.10
+Recommends:     %{name}-lang
+Recommends:     logrotate
 %if 0%{?fedora_version}
 BuildRequires:  boost-devel
-BuildRequires:  json-c-devel
 BuildRequires:  docbook-style-xsl
+BuildRequires:  json-c-devel
 %else
+BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  libboost_headers-devel
 BuildRequires:  libboost_test-devel
 BuildRequires:  libjson-c-devel
-BuildRequires:  docbook-xsl-stylesheets
 %endif
-BuildRequires:  fdupes
-BuildRequires:  libstorage-ng-devel >= 4.4.76
-BuildRequires:  libtool
-BuildRequires:  libxslt
-BuildRequires:  readline-devel
-
-Requires:       libstorage-ng1 >= 4.4.76
-Recommends:     %{name}-lang
-Recommends:     logrotate
-
-Summary:        Tool for storage management
-Url:            http://github.com/openSUSE/barrel
-License:        GPL-2.0-only
-Group:          System/Packages
 
 %description
 barrel is a command line tool for storage management.
 
 %prep
-%setup
+%setup -q
 
 %build
 export CFLAGS="%{optflags} -DNDEBUG"
@@ -92,6 +90,5 @@
 Provides translations to the package %{name}
 
 %files lang -f barrel.lang
-%defattr(-,root,root)
 
 %changelog
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/doc/barrel.xml.in 
new/barrel-0.1.3/doc/barrel.xml.in
--- old/barrel-0.1.2/doc/barrel.xml.in  2022-05-05 16:21:49.000000000 +0200
+++ new/barrel-0.1.3/doc/barrel.xml.in  2022-05-09 10:53:14.000000000 +0200
@@ -2,13 +2,13 @@
 <refentry id='barrel8' xmlns:xlink="http://www.w3.org/1999/xlink";>
 
   <refentryinfo>
-    <date>2021-11-23</date>
+    <date>2022-05-09</date>
   </refentryinfo>
 
   <refmeta>
     <refentrytitle>barrel</refentrytitle>
     <manvolnum>8</manvolnum>
-    <refmiscinfo class='date'>2021-11-23</refmiscinfo>
+    <refmiscinfo class='date'>2022-05-09</refmiscinfo>
     <refmiscinfo class='version'>@VERSION@</refmiscinfo>
     <refmiscinfo class='manual'>Storage Management</refmiscinfo>
   </refmeta>
@@ -294,7 +294,7 @@
               <term><option>-t, --type</option> 
<replaceable>type</replaceable></term>
               <listitem>
                <para>Set file system type. Possible values are btrfs, f2fs,
-               exfat, ext2, ext3, ext4, ntfs, swap, vfat, xfs.</para>
+               exfat, ext2, ext3, ext4, nilfs2, ntfs, swap, vfat, xfs.</para>
              </listitem>
             </varlistentry>
            <varlistentry>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/po/ca.po new/barrel-0.1.3/po/ca.po
--- old/barrel-0.1.2/po/ca.po   2022-03-25 11:02:00.000000000 +0100
+++ new/barrel-0.1.3/po/ca.po   2022-05-10 10:54:23.000000000 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2022-03-21 18:18+0100\n"
-"PO-Revision-Date: 2022-03-21 21:12+0000\n"
+"PO-Revision-Date: 2022-05-09 17:12+0000\n"
 "Last-Translator: David Medina <medi...@gmail.com>\n"
 "Language-Team: Catalan <https://l10n.opensuse.org/projects/barrel/master/ca/>"
 "\n"
@@ -49,6 +49,9 @@
 msgid "Alias for 'create filesystem --type f2fs'"
 msgstr "??lies per a \"create filesystem --type f2fs\""
 
+msgid "Alias for 'create filesystem --type nilfs2'"
+msgstr "??lies per a \"create filesystem --type nilfs2\""
+
 msgid "Alias for 'create filesystem --type ntfs'"
 msgstr "??lies per a \"create filesystem --type ntfs\""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/po/da.po new/barrel-0.1.3/po/da.po
--- old/barrel-0.1.2/po/da.po   2022-03-21 18:25:05.000000000 +0100
+++ new/barrel-0.1.3/po/da.po   2022-05-09 10:53:14.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-03-21 18:18+0100\n"
+"POT-Creation-Date: 2022-05-09 10:34+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -46,6 +46,9 @@
 msgid "Alias for 'create filesystem --type f2fs'"
 msgstr ""
 
+msgid "Alias for 'create filesystem --type nilfs2'"
+msgstr ""
+
 msgid "Alias for 'create filesystem --type ntfs'"
 msgstr ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/po/de.po new/barrel-0.1.3/po/de.po
--- old/barrel-0.1.2/po/de.po   2022-03-21 18:25:05.000000000 +0100
+++ new/barrel-0.1.3/po/de.po   2022-05-09 10:53:14.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: barrel\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-03-21 18:18+0100\n"
+"POT-Creation-Date: 2022-05-09 10:34+0200\n"
 "PO-Revision-Date: 2022-03-04 18:12+0000\n"
 "Last-Translator: Gemineo <vista...@gemineo.de>\n"
 "Language-Team: German <https://l10n.opensuse.org/projects/barrel/master/de/";
@@ -33,9 +33,8 @@
 msgid "Alias for 'create filesystem --type btrfs'"
 msgstr "Alias f??r 'create filesystem --type btrfs'"
 
-#, fuzzy
 msgid "Alias for 'create filesystem --type exfat'"
-msgstr "Alias f??r 'create filesystem --type ext2'"
+msgstr "Alias f??r 'create filesystem --type exfat'"
 
 msgid "Alias for 'create filesystem --type ext2'"
 msgstr "Alias f??r 'create filesystem --type ext2'"
@@ -49,15 +48,17 @@
 msgid "Alias for 'create filesystem --type f2fs'"
 msgstr "Alias f??r 'create filesystem --type f2fs'"
 
+msgid "Alias for 'create filesystem --type nilfs2'"
+msgstr "Alias f??r 'create filesystem --type nilfs2'"
+
 msgid "Alias for 'create filesystem --type ntfs'"
 msgstr "Alias f??r 'create filesystem --type ntfs'"
 
 msgid "Alias for 'create filesystem --type swap'"
 msgstr "Alias f??r 'create filesystem --type swap'"
 
-#, fuzzy
 msgid "Alias for 'create filesystem --type vfat'"
-msgstr "Alias f??r 'create filesystem --type xfs'"
+msgstr "Alias f??r 'create filesystem --type vfat'"
 
 msgid "Alias for 'create filesystem --type xfs'"
 msgstr "Alias f??r 'create filesystem --type xfs'"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/po/es.po new/barrel-0.1.3/po/es.po
--- old/barrel-0.1.2/po/es.po   2022-03-21 18:25:05.000000000 +0100
+++ new/barrel-0.1.3/po/es.po   2022-05-09 10:53:14.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-03-21 18:18+0100\n"
+"POT-Creation-Date: 2022-05-09 10:34+0200\n"
 "PO-Revision-Date: 2022-03-03 21:12+0000\n"
 "Last-Translator: Antonio Sim??n <anto...@trans-mission.com>\n"
 "Language-Team: Spanish <https://l10n.opensuse.org/projects/barrel/master/es/";
@@ -50,6 +50,10 @@
 msgid "Alias for 'create filesystem --type f2fs'"
 msgstr "Alias para 'create filesystem --type f2fs'"
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type nilfs2'"
+msgstr "Alias para 'create filesystem --type ntfs'"
+
 msgid "Alias for 'create filesystem --type ntfs'"
 msgstr "Alias para 'create filesystem --type ntfs'"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/po/fr.po new/barrel-0.1.3/po/fr.po
--- old/barrel-0.1.2/po/fr.po   2022-03-21 18:25:05.000000000 +0100
+++ new/barrel-0.1.3/po/fr.po   2022-05-09 10:53:14.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-03-21 18:18+0100\n"
+"POT-Creation-Date: 2022-05-09 10:34+0200\n"
 "PO-Revision-Date: 2022-02-24 12:12+0000\n"
 "Last-Translator: Sophie Leroy <sop...@stoquart.com>\n"
 "Language-Team: French <https://l10n.opensuse.org/projects/barrel/master/fr/";
@@ -50,6 +50,10 @@
 msgid "Alias for 'create filesystem --type f2fs'"
 msgstr "Alias pour \"create filesystem --type f2fs\""
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type nilfs2'"
+msgstr "Alias pour \"create filesystem --type ntfs\""
+
 msgid "Alias for 'create filesystem --type ntfs'"
 msgstr "Alias pour \"create filesystem --type ntfs\""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/po/it.po new/barrel-0.1.3/po/it.po
--- old/barrel-0.1.2/po/it.po   2022-03-21 18:25:05.000000000 +0100
+++ new/barrel-0.1.3/po/it.po   2022-05-09 10:53:14.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-03-21 18:18+0100\n"
+"POT-Creation-Date: 2022-05-09 10:34+0200\n"
 "PO-Revision-Date: 2022-03-04 18:12+0000\n"
 "Last-Translator: Davide Aiello <davide.aie...@novilingulists.com>\n"
 "Language-Team: Italian <https://l10n.opensuse.org/projects/barrel/master/it/";
@@ -50,6 +50,10 @@
 msgid "Alias for 'create filesystem --type f2fs'"
 msgstr "Alias di 'create filesystem --type f2fs'"
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type nilfs2'"
+msgstr "Alias di 'create filesystem --type ntfs'"
+
 msgid "Alias for 'create filesystem --type ntfs'"
 msgstr "Alias di 'create filesystem --type ntfs'"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/po/ja.po new/barrel-0.1.3/po/ja.po
--- old/barrel-0.1.2/po/ja.po   2022-03-25 11:02:00.000000000 +0100
+++ new/barrel-0.1.3/po/ja.po   2022-05-10 10:54:23.000000000 +0200
@@ -7,8 +7,8 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-03-21 18:18+0100\n"
-"PO-Revision-Date: 2022-03-22 08:12+0000\n"
+"POT-Creation-Date: 2022-05-09 10:34+0200\n"
+"PO-Revision-Date: 2022-05-09 12:13+0000\n"
 "Last-Translator: Yasuhiko Kamata <belphe...@belbel.or.jp>\n"
 "Language-Team: Japanese <https://l10n.opensuse.org/projects/barrel/master/ja/";
 ">\n"
@@ -49,6 +49,9 @@
 msgid "Alias for 'create filesystem --type f2fs'"
 msgstr "'create filesystem --type f2fs' ??????????????????"
 
+msgid "Alias for 'create filesystem --type nilfs2'"
+msgstr "'create filesystem --type nilfs2' ??????????????????"
+
 msgid "Alias for 'create filesystem --type ntfs'"
 msgstr "'create filesystem --type ntfs' ??????????????????"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/po/pt_BR.po new/barrel-0.1.3/po/pt_BR.po
--- old/barrel-0.1.2/po/pt_BR.po        2022-04-28 07:05:21.000000000 +0200
+++ new/barrel-0.1.3/po/pt_BR.po        2022-05-09 10:53:14.000000000 +0200
@@ -8,9 +8,9 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-03-21 18:18+0100\n"
-"PO-Revision-Date: 2022-04-26 18:12+0000\n"
-"Last-Translator: Luiz Fernando Ranghetti <elcheviv...@gmail.com>\n"
+"POT-Creation-Date: 2022-05-09 10:34+0200\n"
+"PO-Revision-Date: 2022-02-27 17:12+0000\n"
+"Last-Translator: Rodrigo Macedo <rmsolucoeseminformat...@gmail.com>\n"
 "Language-Team: Portuguese (Brazil) <https://l10n.opensuse.org/projects/";
 "barrel/master/pt_BR/>\n"
 "Language: pt_BR\n"
@@ -50,6 +50,10 @@
 msgid "Alias for 'create filesystem --type f2fs'"
 msgstr "??lias de \"create filesystem --type f2fs\""
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type nilfs2'"
+msgstr "??lias de \"create filesystem --type ntfs\""
+
 msgid "Alias for 'create filesystem --type ntfs'"
 msgstr "??lias de \"create filesystem --type ntfs\""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/po/zh_CN.po new/barrel-0.1.3/po/zh_CN.po
--- old/barrel-0.1.2/po/zh_CN.po        2022-03-21 18:25:05.000000000 +0100
+++ new/barrel-0.1.3/po/zh_CN.po        2022-05-09 10:53:14.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-03-21 18:18+0100\n"
+"POT-Creation-Date: 2022-05-09 10:34+0200\n"
 "PO-Revision-Date: 2022-03-07 11:12+0000\n"
 "Last-Translator: Grace Yu <grace...@excel-gits.com>\n"
 "Language-Team: Chinese (China) <https://l10n.opensuse.org/projects/barrel/";
@@ -51,6 +51,10 @@
 msgid "Alias for 'create filesystem --type f2fs'"
 msgstr "\"create filesystem --type f2fs\" ?????????"
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type nilfs2'"
+msgstr "\"create filesystem --type ntfs\" ?????????"
+
 msgid "Alias for 'create filesystem --type ntfs'"
 msgstr "\"create filesystem --type ntfs\" ?????????"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.2/po/zh_TW.po new/barrel-0.1.3/po/zh_TW.po
--- old/barrel-0.1.2/po/zh_TW.po        2022-03-21 18:25:05.000000000 +0100
+++ new/barrel-0.1.3/po/zh_TW.po        2022-05-09 10:53:14.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-03-21 18:18+0100\n"
+"POT-Creation-Date: 2022-05-09 10:34+0200\n"
 "PO-Revision-Date: 2022-03-07 11:12+0000\n"
 "Last-Translator: Grace Yu <grace...@excel-gits.com>\n"
 "Language-Team: Chinese (Taiwan) <https://l10n.opensuse.org/projects/barrel/";
@@ -51,6 +51,10 @@
 msgid "Alias for 'create filesystem --type f2fs'"
 msgstr "\"create filesystem --type f2fs\" ?????????"
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type nilfs2'"
+msgstr "\"create filesystem --type ntfs\" ?????????"
+
 msgid "Alias for 'create filesystem --type ntfs'"
 msgstr "\"create filesystem --type ntfs\" ?????????"
 

Reply via email to