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-03-22 19:39:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/barrel (Old)
 and      /work/SRC/openSUSE:Factory/.barrel.new.25692 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "barrel"

Tue Mar 22 19:39:38 2022 rev:6 rq:963765 version:0.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/barrel/barrel.changes    2022-03-07 
17:48:36.839090856 +0100
+++ /work/SRC/openSUSE:Factory/.barrel.new.25692/barrel.changes 2022-03-22 
19:39:41.091057473 +0100
@@ -1,0 +2,6 @@
+Mon Mar 21 18:09:19 CET 2022 - aschn...@suse.com
+
+- added aliases exfat and vfat
+- version 0.1.1
+
+-------------------------------------------------------------------

Old:
----
  barrel-0.1.0.tar.xz

New:
----
  barrel-0.1.1.tar.xz

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

Other differences:
------------------
++++++ barrel.spec ++++++
--- /var/tmp/diff_new_pack.OP2zT3/_old  2022-03-22 19:39:41.623058032 +0100
+++ /var/tmp/diff_new_pack.OP2zT3/_new  2022-03-22 19:39:41.631058039 +0100
@@ -16,7 +16,7 @@
 #
 
 Name:           barrel
-Version:        0.1.0
+Version:        0.1.1
 Release:        0
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Source:         barrel-%{version}.tar.xz

++++++ barrel-0.1.0.tar.xz -> barrel-0.1.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.0/VERSION new/barrel-0.1.1/VERSION
--- old/barrel-0.1.0/VERSION    2022-01-21 10:42:58.000000000 +0100
+++ new/barrel-0.1.1/VERSION    2022-03-21 18:18:17.000000000 +0100
@@ -1 +1 @@
-0.1.0
+0.1.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.0/barrel/cmds.cc 
new/barrel-0.1.1/barrel/cmds.cc
--- old/barrel-0.1.0/barrel/cmds.cc     2021-12-23 08:52:45.000000000 +0100
+++ new/barrel-0.1.1/barrel/cmds.cc     2022-03-21 18:18:17.000000000 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2021 SUSE LLC
+ * Copyright (c) [2021-2022] SUSE LLC
  *
  * All Rights Reserved.
  *
@@ -72,6 +72,7 @@
     const vector<Parser> create_cmds = {
        { "btrfs", make_shared<CmdCreateBtrfs>() },
        { "encryption", make_shared<CmdCreateEncryption>() },
+       { "exfat", make_shared<CmdCreateExfat>() },
        { "ext2", make_shared<CmdCreateExt2>() },
        { "ext3", make_shared<CmdCreateExt3>() },
        { "ext4", make_shared<CmdCreateExt4>() },
@@ -93,6 +94,7 @@
        { "raid6", make_shared<CmdCreateRaid6>() },
        { "raid10", make_shared<CmdCreateRaid10>() },
        { "swap", make_shared<CmdCreateSwap>() },
+       { "vfat", make_shared<CmdCreateVfat>() },
        { "vg", make_shared<CmdCreateLvmVg>() },
        { "xfs", make_shared<CmdCreateXfs>() }
     };
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.0/barrel/create-filesystem.cc 
new/barrel-0.1.1/barrel/create-filesystem.cc
--- old/barrel-0.1.0/barrel/create-filesystem.cc        2021-12-23 
08:52:45.000000000 +0100
+++ new/barrel-0.1.1/barrel/create-filesystem.cc        2022-03-21 
18:18:17.000000000 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2021 SUSE LLC
+ * Copyright (c) [2021-2022] SUSE LLC
  *
  * All Rights Reserved.
  *
@@ -60,11 +60,11 @@
 
        const map<string, FsType> str_to_fs_type = {
            { "btrfs", FsType::BTRFS },
-           { "f2fs", FsType::F2FS },
            { "exfat", FsType::EXFAT },
            { "ext2", FsType::EXT2 },
            { "ext3", FsType::EXT3 },
            { "ext4", FsType::EXT4 },
+           { "f2fs", FsType::F2FS },
            { "ntfs", FsType::NTFS },
            { "swap", FsType::SWAP },
            { "vfat", FsType::VFAT },
@@ -447,16 +447,16 @@
 
 
     shared_ptr<ParsedCmd>
-    CmdCreateF2fs::parse(GetOpts& get_opts) const
+    CmdCreateExfat::parse(GetOpts& get_opts) const
     {
-       return parse_create_filesystem(get_opts, FsType::F2FS);
+       return parse_create_filesystem(get_opts, FsType::EXFAT);
     }
 
 
     const char*
-    CmdCreateF2fs::help() const
+    CmdCreateExfat::help() const
     {
-       return _("Alias for 'create filesystem --type f2fs'");
+       return _("Alias for 'create filesystem --type exfat'");
     }
 
 
@@ -503,6 +503,20 @@
 
 
     shared_ptr<ParsedCmd>
+    CmdCreateF2fs::parse(GetOpts& get_opts) const
+    {
+       return parse_create_filesystem(get_opts, FsType::F2FS);
+    }
+
+
+    const char*
+    CmdCreateF2fs::help() const
+    {
+       return _("Alias for 'create filesystem --type f2fs'");
+    }
+
+
+    shared_ptr<ParsedCmd>
     CmdCreateNtfs::parse(GetOpts& get_opts) const
     {
        return parse_create_filesystem(get_opts, FsType::NTFS);
@@ -530,6 +544,20 @@
     }
 
 
+    shared_ptr<ParsedCmd>
+    CmdCreateVfat::parse(GetOpts& get_opts) const
+    {
+       return parse_create_filesystem(get_opts, FsType::VFAT);
+    }
+
+
+    const char*
+    CmdCreateVfat::help() const
+    {
+       return _("Alias for 'create filesystem --type vfat'");
+    }
+
+
     shared_ptr<ParsedCmd>
     CmdCreateXfs::parse(GetOpts& get_opts) const
     {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.0/barrel/create-filesystem.h 
new/barrel-0.1.1/barrel/create-filesystem.h
--- old/barrel-0.1.0/barrel/create-filesystem.h 2021-12-23 08:52:45.000000000 
+0100
+++ new/barrel-0.1.1/barrel/create-filesystem.h 2022-03-21 18:18:17.000000000 
+0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2021 SUSE LLC
+ * Copyright (c) [2021-2022] SUSE LLC
  *
  * All Rights Reserved.
  *
@@ -46,7 +46,7 @@
     };
 
 
-    struct CmdCreateF2fs : public CmdCreateFilesystem
+    struct CmdCreateExfat : public CmdCreateFilesystem
     {
        virtual shared_ptr<ParsedCmd> parse(GetOpts& get_opts) const override;
        virtual const char* help() const override;
@@ -78,6 +78,14 @@
     };
 
 
+    struct CmdCreateF2fs : 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;
@@ -90,6 +98,14 @@
     {
        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 CmdCreateVfat : 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; }
     };
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.0/po/ca.po new/barrel-0.1.1/po/ca.po
--- old/barrel-0.1.0/po/ca.po   2022-03-07 12:34:56.000000000 +0100
+++ new/barrel-0.1.1/po/ca.po   2022-03-21 18:25:05.000000000 +0100
@@ -7,11 +7,11 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-02-23 16:05+0100\n"
+"POT-Creation-Date: 2022-03-21 18:18+0100\n"
 "PO-Revision-Date: 2022-02-24 12:12+0000\n"
 "Last-Translator: David Medina <medi...@gmail.com>\n"
-"Language-Team: Catalan <https://l10n.opensuse.org/projects/barrel/master/ca/>"
-"\n"
+"Language-Team: Catalan <https://l10n.opensuse.org/projects/barrel/master/ca/";
+">\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -34,6 +34,10 @@
 msgid "Alias for 'create filesystem --type btrfs'"
 msgstr "??lies per a \"create filesystem --type btrfs\""
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type exfat'"
+msgstr "??lies per a \"create filesystem --type ext2\""
+
 msgid "Alias for 'create filesystem --type ext2'"
 msgstr "??lies per a \"create filesystem --type ext2\""
 
@@ -52,6 +56,10 @@
 msgid "Alias for 'create filesystem --type swap'"
 msgstr "??lies per a \"create filesystem --type swap\""
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type vfat'"
+msgstr "??lies per a \"create filesystem --type xfs\""
+
 msgid "Alias for 'create filesystem --type xfs'"
 msgstr "??lies per a \"create filesystem --type xfs\""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.0/po/da.po new/barrel-0.1.1/po/da.po
--- old/barrel-0.1.0/po/da.po   2022-02-23 16:05:43.000000000 +0100
+++ new/barrel-0.1.1/po/da.po   2022-03-21 18:25:05.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-02-23 16:05+0100\n"
+"POT-Creation-Date: 2022-03-21 18:18+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -31,6 +31,9 @@
 msgid "Alias for 'create filesystem --type btrfs'"
 msgstr ""
 
+msgid "Alias for 'create filesystem --type exfat'"
+msgstr ""
+
 msgid "Alias for 'create filesystem --type ext2'"
 msgstr ""
 
@@ -49,6 +52,9 @@
 msgid "Alias for 'create filesystem --type swap'"
 msgstr ""
 
+msgid "Alias for 'create filesystem --type vfat'"
+msgstr ""
+
 msgid "Alias for 'create filesystem --type xfs'"
 msgstr ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.0/po/de.po new/barrel-0.1.1/po/de.po
--- old/barrel-0.1.0/po/de.po   2022-03-07 12:34:56.000000000 +0100
+++ new/barrel-0.1.1/po/de.po   2022-03-21 18:25:05.000000000 +0100
@@ -6,11 +6,11 @@
 msgstr ""
 "Project-Id-Version: barrel\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-02-23 16:05+0100\n"
+"POT-Creation-Date: 2022-03-21 18:18+0100\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/>"
-"\n"
+"Language-Team: German <https://l10n.opensuse.org/projects/barrel/master/de/";
+">\n"
 "Language: de\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -33,6 +33,10 @@
 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'"
+
 msgid "Alias for 'create filesystem --type ext2'"
 msgstr "Alias f??r 'create filesystem --type ext2'"
 
@@ -51,6 +55,10 @@
 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'"
+
 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.0/po/es.po new/barrel-0.1.1/po/es.po
--- old/barrel-0.1.0/po/es.po   2022-03-07 12:34:56.000000000 +0100
+++ new/barrel-0.1.1/po/es.po   2022-03-21 18:25:05.000000000 +0100
@@ -7,11 +7,11 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-02-23 16:05+0100\n"
+"POT-Creation-Date: 2022-03-21 18:18+0100\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/>"
-"\n"
+"Language-Team: Spanish <https://l10n.opensuse.org/projects/barrel/master/es/";
+">\n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -34,6 +34,10 @@
 msgid "Alias for 'create filesystem --type btrfs'"
 msgstr "Alias para 'create filesystem --type btrfs'"
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type exfat'"
+msgstr "Alias para 'create filesystem --type ext2'"
+
 msgid "Alias for 'create filesystem --type ext2'"
 msgstr "Alias para 'create filesystem --type ext2'"
 
@@ -52,6 +56,10 @@
 msgid "Alias for 'create filesystem --type swap'"
 msgstr "Alias para 'create filesystem --type swap'"
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type vfat'"
+msgstr "Alias para 'create filesystem --type xfs'"
+
 msgid "Alias for 'create filesystem --type xfs'"
 msgstr "Alias para 'create filesystem --type xfs'"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.0/po/fr.po new/barrel-0.1.1/po/fr.po
--- old/barrel-0.1.0/po/fr.po   2022-03-07 12:34:56.000000000 +0100
+++ new/barrel-0.1.1/po/fr.po   2022-03-21 18:25:05.000000000 +0100
@@ -7,11 +7,11 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-02-23 16:05+0100\n"
+"POT-Creation-Date: 2022-03-21 18:18+0100\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/>"
-"\n"
+"Language-Team: French <https://l10n.opensuse.org/projects/barrel/master/fr/";
+">\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -34,6 +34,10 @@
 msgid "Alias for 'create filesystem --type btrfs'"
 msgstr "Alias pour \"create filesystem --type btrfs\""
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type exfat'"
+msgstr "Alias pour \"create filesystem --type ext2\""
+
 msgid "Alias for 'create filesystem --type ext2'"
 msgstr "Alias pour \"create filesystem --type ext2\""
 
@@ -52,6 +56,10 @@
 msgid "Alias for 'create filesystem --type swap'"
 msgstr "Alias pour \"create filesystem --type swap\""
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type vfat'"
+msgstr "Alias pour \"create filesystem --type xfs\""
+
 msgid "Alias for 'create filesystem --type xfs'"
 msgstr "Alias pour \"create filesystem --type xfs\""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.0/po/it.po new/barrel-0.1.1/po/it.po
--- old/barrel-0.1.0/po/it.po   2022-03-07 12:34:56.000000000 +0100
+++ new/barrel-0.1.1/po/it.po   2022-03-21 18:25:05.000000000 +0100
@@ -7,11 +7,11 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-02-23 16:05+0100\n"
+"POT-Creation-Date: 2022-03-21 18:18+0100\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/>"
-"\n"
+"Language-Team: Italian <https://l10n.opensuse.org/projects/barrel/master/it/";
+">\n"
 "Language: it\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -34,6 +34,10 @@
 msgid "Alias for 'create filesystem --type btrfs'"
 msgstr "Alias di 'create filesystem --type btrfs'"
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type exfat'"
+msgstr "Alias di 'create filesystem --type ext2'"
+
 msgid "Alias for 'create filesystem --type ext2'"
 msgstr "Alias di 'create filesystem --type ext2'"
 
@@ -52,6 +56,10 @@
 msgid "Alias for 'create filesystem --type swap'"
 msgstr "Alias di 'create filesystem --type swap'"
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type vfat'"
+msgstr "Alias di 'create filesystem --type xfs'"
+
 msgid "Alias for 'create filesystem --type xfs'"
 msgstr "Alias di 'create filesystem --type xfs'"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.0/po/ja.po new/barrel-0.1.1/po/ja.po
--- old/barrel-0.1.0/po/ja.po   2022-03-07 12:34:56.000000000 +0100
+++ new/barrel-0.1.1/po/ja.po   2022-03-21 18:25:05.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-02-23 16:05+0100\n"
+"POT-Creation-Date: 2022-03-21 18:18+0100\n"
 "PO-Revision-Date: 2022-02-24 01:12+0000\n"
 "Last-Translator: Yasuhiko Kamata <belphe...@belbel.or.jp>\n"
 "Language-Team: Japanese <https://l10n.opensuse.org/projects/barrel/master/ja/";
@@ -34,6 +34,10 @@
 msgid "Alias for 'create filesystem --type btrfs'"
 msgstr "'create filesystem --type btrfs' ??????????????????"
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type exfat'"
+msgstr "'create filesystem --type ext2' ??????????????????"
+
 msgid "Alias for 'create filesystem --type ext2'"
 msgstr "'create filesystem --type ext2' ??????????????????"
 
@@ -52,6 +56,10 @@
 msgid "Alias for 'create filesystem --type swap'"
 msgstr "'create filesystem --type swap' ??????????????????"
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type vfat'"
+msgstr "'create filesystem --type xfs' ??????????????????"
+
 msgid "Alias for 'create filesystem --type xfs'"
 msgstr "'create filesystem --type xfs' ??????????????????"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.0/po/pt_BR.po new/barrel-0.1.1/po/pt_BR.po
--- old/barrel-0.1.0/po/pt_BR.po        2022-03-07 12:34:56.000000000 +0100
+++ new/barrel-0.1.1/po/pt_BR.po        2022-03-21 18:25:05.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-02-23 16:05+0100\n"
+"POT-Creation-Date: 2022-03-21 18:18+0100\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/";
@@ -35,6 +35,10 @@
 msgid "Alias for 'create filesystem --type btrfs'"
 msgstr "??lias de \"create filesystem --type btrfs\""
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type exfat'"
+msgstr "??lias de \"create filesystem --type ext2\""
+
 msgid "Alias for 'create filesystem --type ext2'"
 msgstr "??lias de \"create filesystem --type ext2\""
 
@@ -53,6 +57,10 @@
 msgid "Alias for 'create filesystem --type swap'"
 msgstr "??lias de \"create filesystem --type swap\""
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type vfat'"
+msgstr "??lias de \"create filesystem --type xfs\""
+
 msgid "Alias for 'create filesystem --type xfs'"
 msgstr "??lias de \"create filesystem --type xfs\""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.0/po/zh_CN.po new/barrel-0.1.1/po/zh_CN.po
--- old/barrel-0.1.0/po/zh_CN.po        2022-03-07 12:34:56.000000000 +0100
+++ new/barrel-0.1.1/po/zh_CN.po        2022-03-21 18:25:05.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-02-23 16:05+0100\n"
+"POT-Creation-Date: 2022-03-21 18:18+0100\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/";
@@ -35,6 +35,10 @@
 msgid "Alias for 'create filesystem --type btrfs'"
 msgstr "\"create filesystem --type btrfs\" ?????????"
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type exfat'"
+msgstr "\"create filesystem --type ext2\" ?????????"
+
 msgid "Alias for 'create filesystem --type ext2'"
 msgstr "\"create filesystem --type ext2\" ?????????"
 
@@ -53,6 +57,10 @@
 msgid "Alias for 'create filesystem --type swap'"
 msgstr "\"create filesystem --type swap\" ?????????"
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type vfat'"
+msgstr "\"create filesystem --type xfs\" ?????????"
+
 msgid "Alias for 'create filesystem --type xfs'"
 msgstr "\"create filesystem --type xfs\" ?????????"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/barrel-0.1.0/po/zh_TW.po new/barrel-0.1.1/po/zh_TW.po
--- old/barrel-0.1.0/po/zh_TW.po        2022-03-07 12:34:56.000000000 +0100
+++ new/barrel-0.1.1/po/zh_TW.po        2022-03-21 18:25:05.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: barrel VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-02-23 16:05+0100\n"
+"POT-Creation-Date: 2022-03-21 18:18+0100\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/";
@@ -35,6 +35,10 @@
 msgid "Alias for 'create filesystem --type btrfs'"
 msgstr "\"create filesystem --type btrfs\" ?????????"
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type exfat'"
+msgstr "\"create filesystem --type ext2\" ?????????"
+
 msgid "Alias for 'create filesystem --type ext2'"
 msgstr "\"create filesystem --type ext2\" ?????????"
 
@@ -53,6 +57,10 @@
 msgid "Alias for 'create filesystem --type swap'"
 msgstr "\"create filesystem --type swap\" ?????????"
 
+#, fuzzy
+msgid "Alias for 'create filesystem --type vfat'"
+msgstr "\"create filesystem --type xfs\" ?????????"
+
 msgid "Alias for 'create filesystem --type xfs'"
 msgstr "\"create filesystem --type xfs\" ?????????"
 

Reply via email to