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-05 23:07:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/barrel (Old)
 and      /work/SRC/openSUSE:Factory/.barrel.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "barrel"

Thu May  5 23:07:29 2022 rev:7 rq:975218 version:0.1.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/barrel/barrel.changes    2022-03-22 
19:39:41.091057473 +0100
+++ /work/SRC/openSUSE:Factory/.barrel.new.1538/barrel.changes  2022-05-05 
23:08:14.341695534 +0200
@@ -1,0 +2,6 @@
+Thu May 05 15:07:32 CEST 2022 - aschn...@suse.com
+
+- added logging
+- version 0.1.2
+
+-------------------------------------------------------------------

Old:
----
  barrel-0.1.1.tar.xz

New:
----
  barrel-0.1.2.tar.xz

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

Other differences:
------------------
++++++ barrel.spec ++++++
--- /var/tmp/diff_new_pack.T59EJn/_old  2022-05-05 23:08:14.845696163 +0200
+++ /var/tmp/diff_new_pack.T59EJn/_new  2022-05-05 23:08:14.849696169 +0200
@@ -16,7 +16,7 @@
 #
 
 Name:           barrel
-Version:        0.1.1
+Version:        0.1.2
 Release:        0
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Source:         barrel-%{version}.tar.xz
@@ -39,6 +39,7 @@
 
 Requires:       libstorage-ng1 >= 4.4.76
 Recommends:     %{name}-lang
+Recommends:     logrotate
 
 Summary:        Tool for storage management
 Url:            http://github.com/openSUSE/barrel
@@ -77,6 +78,7 @@
 %doc %dir %{_docdir}/%{name}
 %doc %{_docdir}/%{name}/AUTHORS
 %doc %{_mandir}/*/barrel.8*
+%config(noreplace) %{_sysconfdir}/logrotate.d/barrel
 %license %{_docdir}/%{name}/LICENSE
 
 %package lang

++++++ barrel-0.1.1.tar.xz -> barrel-0.1.2.tar.xz ++++++
++++ 14289 lines of diff (skipped)
++++    retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/barrel-0.1.1/VERSION new/barrel-0.1.2/VERSION
--- old/barrel-0.1.1/VERSION    2022-03-21 18:18:17.000000000 +0100
+++ new/barrel-0.1.2/VERSION    2022-05-05 16:21:49.000000000 +0200
@@ -1 +1 @@
-0.1.1
+0.1.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/barrel-0.1.1/barrel/Utils/BarrelDefines.h 
new/barrel-0.1.2/barrel/Utils/BarrelDefines.h
--- old/barrel-0.1.1/barrel/Utils/BarrelDefines.h       2022-01-11 
10:37:02.000000000 +0100
+++ new/barrel-0.1.2/barrel/Utils/BarrelDefines.h       2022-05-05 
16:21:49.000000000 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2021 SUSE LLC
+ * Copyright (c) [2021-2022] SUSE LLC
  *
  * All Rights Reserved.
  *
@@ -39,5 +39,7 @@
 
 #define POOLS_FILE SYSCONF_DIR "/barrel/pools.json"
 
+#define LOG_FILE "/var/log/barrel.log"
+
 
 #endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/barrel-0.1.1/barrel/barrel.cc new/barrel-0.1.2/barrel/barrel.cc
--- old/barrel-0.1.1/barrel/barrel.cc   2022-01-11 10:37:02.000000000 +0100
+++ new/barrel-0.1.2/barrel/barrel.cc   2022-05-05 16:21:49.000000000 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2021 SUSE LLC
+ * Copyright (c) [2021-2022] SUSE LLC
  *
  * All Rights Reserved.
  *
@@ -22,7 +22,9 @@
 
 #include <iostream>
 
+#include "config.h"
 #include "handle.h"
+#include "Utils/BarrelDefines.h"
 
 
 using namespace barrel;
@@ -40,6 +42,11 @@
        cerr << "Failed to set locale." << endl;
     }
 
+    set_logger(get_logfile_logger(LOG_FILE));
+
+    get_logger()->write(LogLevel::MILESTONE, "barrel", __FILE__, __LINE__, 
__FUNCTION__,
+                       "barrel version " VERSION);
+
     if (!handle(argc, argv))
        return EXIT_FAILURE;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/barrel-0.1.1/barrel.spec.in new/barrel-0.1.2/barrel.spec.in
--- old/barrel-0.1.1/barrel.spec.in     2022-01-21 14:36:10.000000000 +0100
+++ new/barrel-0.1.2/barrel.spec.in     2022-05-05 16:21:49.000000000 +0200
@@ -39,6 +39,7 @@
 
 Requires:       libstorage-ng1 >= 4.4.76
 Recommends:     %{name}-lang
+Recommends:     logrotate
 
 Summary:        Tool for storage management
 Url:            http://github.com/openSUSE/barrel
@@ -77,6 +78,7 @@
 %doc %dir %{_docdir}/%{name}
 %doc %{_docdir}/%{name}/AUTHORS
 %doc %{_mandir}/*/barrel.8*
+%config(noreplace) %{_sysconfdir}/logrotate.d/barrel
 %license %{_docdir}/%{name}/LICENSE
 
 %package lang
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/barrel-0.1.1/config.h.in new/barrel-0.1.2/config.h.in
--- old/barrel-0.1.1/config.h.in        2022-03-21 18:25:41.000000000 +0100
+++ new/barrel-0.1.2/config.h.in        2022-05-05 16:21:55.000000000 +0200
@@ -6,12 +6,15 @@
 /* Define to 1 if you have the <inttypes.h> header file. */
 #undef HAVE_INTTYPES_H
 
-/* Define to 1 if you have the <memory.h> header file. */
-#undef HAVE_MEMORY_H
+/* Define to 1 if you have the <minix/config.h> header file. */
+#undef HAVE_MINIX_CONFIG_H
 
 /* Define to 1 if you have the <stdint.h> header file. */
 #undef HAVE_STDINT_H
 
+/* Define to 1 if you have the <stdio.h> header file. */
+#undef HAVE_STDIO_H
+
 /* Define to 1 if you have the <stdlib.h> header file. */
 #undef HAVE_STDLIB_H
 
@@ -30,6 +33,9 @@
 /* Define to 1 if you have the <unistd.h> header file. */
 #undef HAVE_UNISTD_H
 
+/* Define to 1 if you have the <wchar.h> header file. */
+#undef HAVE_WCHAR_H
+
 /* Define to the sub-directory where libtool stores uninstalled libraries. */
 #undef LT_OBJDIR
 
@@ -54,51 +60,104 @@
 /* Define to the version of this package. */
 #undef PACKAGE_VERSION
 
-/* Define to 1 if you have the ANSI C header files. */
+/* Define to 1 if all of the C90 standard headers exist (not just the ones
+   required in a freestanding environment). This macro is provided for
+   backward compatibility; new code need not use it. */
 #undef STDC_HEADERS
 
 /* Enable extensions on AIX 3, Interix.  */
 #ifndef _ALL_SOURCE
 # undef _ALL_SOURCE
 #endif
+/* Enable general extensions on macOS.  */
+#ifndef _DARWIN_C_SOURCE
+# undef _DARWIN_C_SOURCE
+#endif
+/* Enable general extensions on Solaris.  */
+#ifndef __EXTENSIONS__
+# undef __EXTENSIONS__
+#endif
 /* Enable GNU extensions on systems that have them.  */
 #ifndef _GNU_SOURCE
 # undef _GNU_SOURCE
 #endif
-/* Enable threading extensions on Solaris.  */
+/* Enable X/Open compliant socket functions that do not require linking
+   with -lxnet on HP-UX 11.11.  */
+#ifndef _HPUX_ALT_XOPEN_SOCKET_API
+# undef _HPUX_ALT_XOPEN_SOCKET_API
+#endif
+/* Identify the host operating system as Minix.
+   This macro does not affect the system headers' behavior.
+   A future release of Autoconf may stop defining this macro.  */
+#ifndef _MINIX
+# undef _MINIX
+#endif
+/* Enable general extensions on NetBSD.
+   Enable NetBSD compatibility extensions on Minix.  */
+#ifndef _NETBSD_SOURCE
+# undef _NETBSD_SOURCE
+#endif
+/* Enable OpenBSD compatibility extensions on NetBSD.
+   Oddly enough, this does nothing on OpenBSD.  */
+#ifndef _OPENBSD_SOURCE
+# undef _OPENBSD_SOURCE
+#endif
+/* Define to 1 if needed for POSIX-compatible behavior.  */
+#ifndef _POSIX_SOURCE
+# undef _POSIX_SOURCE
+#endif
+/* Define to 2 if needed for POSIX-compatible behavior.  */
+#ifndef _POSIX_1_SOURCE
+# undef _POSIX_1_SOURCE
+#endif
+/* Enable POSIX-compatible threading on Solaris.  */
 #ifndef _POSIX_PTHREAD_SEMANTICS
 # undef _POSIX_PTHREAD_SEMANTICS
 #endif
+/* Enable extensions specified by ISO/IEC TS 18661-5:2014.  */
+#ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
+# undef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
+#endif
+/* Enable extensions specified by ISO/IEC TS 18661-1:2014.  */
+#ifndef __STDC_WANT_IEC_60559_BFP_EXT__
+# undef __STDC_WANT_IEC_60559_BFP_EXT__
+#endif
+/* Enable extensions specified by ISO/IEC TS 18661-2:2015.  */
+#ifndef __STDC_WANT_IEC_60559_DFP_EXT__
+# undef __STDC_WANT_IEC_60559_DFP_EXT__
+#endif
+/* Enable extensions specified by ISO/IEC TS 18661-4:2015.  */
+#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
+# undef __STDC_WANT_IEC_60559_FUNCS_EXT__
+#endif
+/* Enable extensions specified by ISO/IEC TS 18661-3:2015.  */
+#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
+# undef __STDC_WANT_IEC_60559_TYPES_EXT__
+#endif
+/* Enable extensions specified by ISO/IEC TR 24731-2:2010.  */
+#ifndef __STDC_WANT_LIB_EXT2__
+# undef __STDC_WANT_LIB_EXT2__
+#endif
+/* Enable extensions specified by ISO/IEC 24747:2009.  */
+#ifndef __STDC_WANT_MATH_SPEC_FUNCS__
+# undef __STDC_WANT_MATH_SPEC_FUNCS__
+#endif
 /* Enable extensions on HP NonStop.  */
 #ifndef _TANDEM_SOURCE
 # undef _TANDEM_SOURCE
 #endif
-/* Enable general extensions on Solaris.  */
-#ifndef __EXTENSIONS__
-# undef __EXTENSIONS__
+/* Enable X/Open extensions.  Define to 500 only if necessary
+   to make mbstate_t available.  */
+#ifndef _XOPEN_SOURCE
+# undef _XOPEN_SOURCE
 #endif
 
 
 /* Version number of package */
 #undef VERSION
 
-/* Enable large inode numbers on Mac OS X 10.5.  */
-#ifndef _DARWIN_USE_64_BIT_INODE
-# define _DARWIN_USE_64_BIT_INODE 1
-#endif
-
 /* Number of bits in a file offset, on hosts where this is settable. */
 #undef _FILE_OFFSET_BITS
 
 /* Define for large files, on AIX-style hosts. */
 #undef _LARGE_FILES
-
-/* Define to 1 if on MINIX. */
-#undef _MINIX
-
-/* Define to 2 if the system does not provide POSIX.1 features except with
-   this defined. */
-#undef _POSIX_1_SOURCE
-
-/* Define to 1 if you need to in order for `stat' and other things to work. */
-#undef _POSIX_SOURCE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/barrel-0.1.1/configure.ac new/barrel-0.1.2/configure.ac
--- old/barrel-0.1.1/configure.ac       2022-01-11 10:37:02.000000000 +0100
+++ new/barrel-0.1.2/configure.ac       2022-04-11 14:19:20.000000000 +0200
@@ -1,5 +1,6 @@
+AC_INIT
 
-AC_INIT(barrel/barrel.cc)
+AC_CONFIG_SRCDIR([barrel/barrel.cc])
 
 VERSION=`cat ./VERSION`
 
@@ -27,7 +28,7 @@
 
 AC_SUBST(VERSION)
 
-AC_OUTPUT(
+AC_CONFIG_FILES([
        Makefile
        barrel/Makefile
        barrel/Utils/Makefile
@@ -37,4 +38,6 @@
        testsuite/Makefile
        package/barrel.spec:barrel.spec.in
        po/Makefile
-)
+])
+
+AC_OUTPUT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/barrel-0.1.1/data/Makefile.am new/barrel-0.1.2/data/Makefile.am
--- old/barrel-0.1.1/data/Makefile.am   2022-01-11 10:37:02.000000000 +0100
+++ new/barrel-0.1.2/data/Makefile.am   2022-05-05 16:21:49.000000000 +0200
@@ -2,6 +2,9 @@
 # Makefile.am for barrel/data
 #
 
+EXTRA_DIST = barrel.logrotate
+
 install-data-local:
        install -d -m 755 $(DESTDIR)/etc/barrel
+       install -D -m 644 barrel.logrotate $(DESTDIR)/etc/logrotate.d/barrel
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/barrel-0.1.1/data/barrel.logrotate new/barrel-0.1.2/data/barrel.logrotate
--- old/barrel-0.1.1/data/barrel.logrotate      1970-01-01 01:00:00.000000000 
+0100
+++ new/barrel-0.1.2/data/barrel.logrotate      2022-05-05 16:21:49.000000000 
+0200
@@ -0,0 +1,11 @@
+/var/log/barrel.log {
+    compress
+    dateext
+    notifempty
+    missingok
+    nocreate
+
+    maxage 60
+    rotate 99
+    size 10M
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/barrel-0.1.1/doc/barrel.xml.in new/barrel-0.1.2/doc/barrel.xml.in
--- old/barrel-0.1.1/doc/barrel.xml.in  2022-01-21 14:36:10.000000000 +0100
+++ new/barrel-0.1.2/doc/barrel.xml.in  2022-05-05 16:21:49.000000000 +0200
@@ -1185,6 +1185,18 @@
     </itemizedlist>
   </refsect1>
 
+  <refsect1 id='files'>
+    <title>FILES</title>
+    <variablelist>
+      <varlistentry>
+        <term><filename>/var/log/barrel.log</filename></term>
+        <listitem>
+          <para>Logfile. Please include this file in bug reports.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+  </refsect1>
+
   <refsect1 id='homepage'>
     <title>HOMEPAGE</title>
     <para><ulink 
url='http://github.com/openSUSE/barrel/'>http://github.com/openSUSE/barrel/</ulink></para>
@@ -1206,7 +1218,7 @@
       <citerefentry 
role="nolink"><refentrytitle>cryptsetup</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
       <citerefentry 
role="nolink"><refentrytitle>fstab</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
       <citerefentry 
role="nolink"><refentrytitle>crypttab</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
-      <citerefentry 
role="nolink"><refentrytitle>mdadm.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
+      <citerefentry 
role="nolink"><refentrytitle>mdadm.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>
     </para>
   </refsect1>
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/barrel-0.1.1/po/ca.po new/barrel-0.1.2/po/ca.po
--- old/barrel-0.1.1/po/ca.po   2022-03-21 18:25:05.000000000 +0100
+++ new/barrel-0.1.2/po/ca.po   2022-03-25 11:02:00.000000000 +0100
@@ -8,10 +8,10 @@
 "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-02-24 12:12+0000\n"
+"PO-Revision-Date: 2022-03-21 21: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,9 +34,8 @@
 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\""
+msgstr "??lies per a \"create filesystem --type exfat\""
 
 msgid "Alias for 'create filesystem --type ext2'"
 msgstr "??lies per a \"create filesystem --type ext2\""
@@ -56,9 +55,8 @@
 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\""
+msgstr "??lies per a \"create filesystem --type vfat\""
 
 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' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/barrel-0.1.1/po/ja.po new/barrel-0.1.2/po/ja.po
--- old/barrel-0.1.1/po/ja.po   2022-03-21 18:25:05.000000000 +0100
+++ new/barrel-0.1.2/po/ja.po   2022-03-25 11:02:00.000000000 +0100
@@ -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-02-24 01:12+0000\n"
+"PO-Revision-Date: 2022-03-22 08:12+0000\n"
 "Last-Translator: Yasuhiko Kamata <belphe...@belbel.or.jp>\n"
 "Language-Team: Japanese <https://l10n.opensuse.org/projects/barrel/master/ja/";
 ">\n"
@@ -34,9 +34,8 @@
 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' ??????????????????"
+msgstr "'create filesystem --type exfat' ??????????????????"
 
 msgid "Alias for 'create filesystem --type ext2'"
 msgstr "'create filesystem --type ext2' ??????????????????"
@@ -56,9 +55,8 @@
 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' ??????????????????"
+msgstr "'create filesystem --type vfat' ??????????????????"
 
 msgid "Alias for 'create filesystem --type xfs'"
 msgstr "'create filesystem --type xfs' ??????????????????"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/barrel-0.1.1/po/pt_BR.po new/barrel-0.1.2/po/pt_BR.po
--- old/barrel-0.1.1/po/pt_BR.po        2022-03-21 18:25:05.000000000 +0100
+++ new/barrel-0.1.2/po/pt_BR.po        2022-04-28 07:05:21.000000000 +0200
@@ -9,8 +9,8 @@
 "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-02-27 17:12+0000\n"
-"Last-Translator: Rodrigo Macedo <rmsolucoeseminformat...@gmail.com>\n"
+"PO-Revision-Date: 2022-04-26 18:12+0000\n"
+"Last-Translator: Luiz Fernando Ranghetti <elcheviv...@gmail.com>\n"
 "Language-Team: Portuguese (Brazil) <https://l10n.opensuse.org/projects/";
 "barrel/master/pt_BR/>\n"
 "Language: pt_BR\n"
@@ -35,9 +35,8 @@
 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\""
+msgstr "??lias de \"create filesystem --type exfat\""
 
 msgid "Alias for 'create filesystem --type ext2'"
 msgstr "??lias de \"create filesystem --type ext2\""
@@ -57,9 +56,8 @@
 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\""
+msgstr "??lias de \"create filesystem --type vfat\""
 
 msgid "Alias for 'create filesystem --type xfs'"
 msgstr "??lias de \"create filesystem --type xfs\""

Reply via email to