Hello community, here is the log from the commit of package ark for openSUSE:Factory checked in at 2019-03-11 11:08:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ark (Old) and /work/SRC/openSUSE:Factory/.ark.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ark" Mon Mar 11 11:08:17 2019 rev:102 rq:683114 version:18.12.3 Changes: -------- --- /work/SRC/openSUSE:Factory/ark/ark.changes 2019-02-14 14:14:13.988195613 +0100 +++ /work/SRC/openSUSE:Factory/.ark.new.28833/ark.changes 2019-03-11 11:08:17.493736289 +0100 @@ -1,0 +2,11 @@ +Sat Mar 09 08:03:11 UTC 2019 - [email protected] + +- Update to 18.12.3 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-18.12.3.php +- Changes since 18.12.2: + * Fix loading of tar.zst archives (kde#404464) + * cli7ztest: add failing test case for zip folders with RDA attributes + +------------------------------------------------------------------- Old: ---- ark-18.12.2.tar.xz New: ---- ark-18.12.3.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ark.spec ++++++ --- /var/tmp/diff_new_pack.Mx7RCl/_old 2019-03-11 11:08:18.045732043 +0100 +++ /var/tmp/diff_new_pack.Mx7RCl/_new 2019-03-11 11:08:18.049732010 +0100 @@ -22,7 +22,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: ark -Version: 18.12.2 +Version: 18.12.3 Release: 0 Summary: KDE Archiver Tool License: GPL-2.0-or-later ++++++ ark-18.12.2.tar.xz -> ark-18.12.3.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-18.12.2/CMakeLists.txt new/ark-18.12.3/CMakeLists.txt --- old/ark-18.12.2/CMakeLists.txt 2019-02-03 05:48:50.000000000 +0100 +++ new/ark-18.12.3/CMakeLists.txt 2019-02-28 02:41:20.000000000 +0100 @@ -3,7 +3,7 @@ # KDE Application Version, managed by release script set (KDE_APPLICATIONS_VERSION_MAJOR "18") set (KDE_APPLICATIONS_VERSION_MINOR "12") -set (KDE_APPLICATIONS_VERSION_MICRO "2") +set (KDE_APPLICATIONS_VERSION_MICRO "3") set (KDE_APPLICATIONS_VERSION "${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}") project(ark VERSION ${KDE_APPLICATIONS_VERSION}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-18.12.2/autotests/plugins/cli7zplugin/cli7ztest.cpp new/ark-18.12.3/autotests/plugins/cli7zplugin/cli7ztest.cpp --- old/ark-18.12.2/autotests/plugins/cli7zplugin/cli7ztest.cpp 2019-02-03 05:48:50.000000000 +0100 +++ new/ark-18.12.3/autotests/plugins/cli7zplugin/cli7ztest.cpp 2019-02-28 02:41:20.000000000 +0100 @@ -478,3 +478,24 @@ plugin->deleteLater(); } +void Cli7zTest::testRDAAttributes() +{ + if (!m_plugin->isValid()) { + QSKIP("cli7z plugin not available. Skipping test.", SkipSingle); + } + + auto loadJob = Archive::load(QFINDTESTDATA("data/RDA-attributes.zip"), m_plugin, this); + QVERIFY(loadJob); + + int numberOfFolders = 0; + connect(loadJob, &Job::newEntry, this, [&numberOfFolders](Archive::Entry *entry) { + if (entry->isDir()) { + numberOfFolders++; + } + }); + + TestHelper::startAndWaitForResult(loadJob); + QEXPECT_FAIL("", "Folders with RDA attributes are currently not parsed, see https://phabricator.kde.org/D18562", Continue); + QCOMPARE(numberOfFolders, 2); +} + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-18.12.2/autotests/plugins/cli7zplugin/cli7ztest.h new/ark-18.12.3/autotests/plugins/cli7zplugin/cli7ztest.h --- old/ark-18.12.2/autotests/plugins/cli7zplugin/cli7ztest.h 2019-02-03 05:48:50.000000000 +0100 +++ new/ark-18.12.3/autotests/plugins/cli7zplugin/cli7ztest.h 2019-02-28 02:41:20.000000000 +0100 @@ -46,6 +46,7 @@ void testAddArgs(); void testExtractArgs_data(); void testExtractArgs(); + void testRDAAttributes(); private: PluginManager m_pluginManger; Binary files old/ark-18.12.2/autotests/plugins/cli7zplugin/data/RDA-attributes.zip and new/ark-18.12.3/autotests/plugins/cli7zplugin/data/RDA-attributes.zip differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-18.12.2/kerfuffle/mimetypes.cpp new/ark-18.12.3/kerfuffle/mimetypes.cpp --- old/ark-18.12.2/kerfuffle/mimetypes.cpp 2019-02-03 05:48:50.000000000 +0100 +++ new/ark-18.12.3/kerfuffle/mimetypes.cpp 2019-02-28 02:41:20.000000000 +0100 @@ -92,7 +92,7 @@ // Compressed tar-archives are detected as single compressed files when // detecting by content. The following code fixes detection of tar.gz, tar.bz2, tar.xz, - // tar.lzo, tar.lz and tar.lrz. + // tar.lzo, tar.lz, tar.lrz and tar.zst. if ((mimeFromExtension == db.mimeTypeForName(QStringLiteral("application/x-compressed-tar")) && mimeFromContent == db.mimeTypeForName(QStringLiteral("application/gzip"))) || (mimeFromExtension == db.mimeTypeForName(QStringLiteral("application/x-bzip-compressed-tar")) && @@ -108,7 +108,9 @@ (mimeFromExtension == db.mimeTypeForName(QStringLiteral("application/x-lrzip-compressed-tar")) && mimeFromContent == db.mimeTypeForName(QStringLiteral("application/x-lrzip"))) || (mimeFromExtension == db.mimeTypeForName(QStringLiteral("application/x-lz4-compressed-tar")) && - mimeFromContent == db.mimeTypeForName(QStringLiteral("application/x-lz4")))) { + mimeFromContent == db.mimeTypeForName(QStringLiteral("application/x-lz4"))) || + (mimeFromExtension == db.mimeTypeForName(QStringLiteral("application/x-zstd-compressed-tar")) && + mimeFromContent == db.mimeTypeForName(QStringLiteral("application/zstd")))) { return mimeFromExtension; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-18.12.2/po/cs/ark.po new/ark-18.12.3/po/cs/ark.po --- old/ark-18.12.2/po/cs/ark.po 2019-02-05 01:28:41.000000000 +0100 +++ new/ark-18.12.3/po/cs/ark.po 2019-03-05 01:12:12.000000000 +0100 @@ -1,6 +1,6 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# Vít Pelčák <[email protected]>, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018. +# Vít Pelčák <[email protected]>, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019. # Lukáš Tinkl <[email protected]>, 2010. # David Kolibac <[email protected]>, 2010. # Tomáš Chvátal <[email protected]>, 2012. @@ -18,7 +18,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 18.12.1\n" #, kde-format msgctxt "NAME OF TRANSLATORS" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-18.12.2/po/de/ark.po new/ark-18.12.3/po/de/ark.po --- old/ark-18.12.2/po/de/ark.po 2019-02-05 01:28:41.000000000 +0100 +++ new/ark-18.12.3/po/de/ark.po 2019-03-05 01:12:12.000000000 +0100 @@ -8,20 +8,21 @@ # Johannes Obermayr <[email protected]>, 2009, 2010. # Panagiotis Papadopoulos <[email protected]>, 2009, 2011. # Frederik Schwarzer <[email protected]>, 2010, 2011, 2012, 2015, 2016. +# Maximilian Trummer <[email protected]>, 2019. msgid "" msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2019-01-16 07:33+0100\n" -"PO-Revision-Date: 2018-11-15 05:57+0100\n" -"Last-Translator: Burkhard Lück <[email protected]>\n" +"PO-Revision-Date: 2019-02-22 17:00+0100\n" +"Last-Translator: Maximilian Trummer <[email protected]>\n" "Language-Team: German <[email protected]>\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Translator: Stephan Kulow <[email protected]>\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Kate 18.12.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #, kde-format @@ -105,7 +106,7 @@ #, kde-format msgctxt "@action:inmenu Part of Extract submenu in Dolphin context menu" msgid "Extract archive here, autodetect subfolder" -msgstr "Archiv hierher entpacken, Unterordner selbständig ermitteln" +msgstr "Archiv hierher entpacken, Unterordner selbstständig ermitteln" #: app/extractfileitemaction.cpp:88 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-18.12.2/po/gl/ark.po new/ark-18.12.3/po/gl/ark.po --- old/ark-18.12.2/po/gl/ark.po 2019-02-05 01:28:42.000000000 +0100 +++ new/ark-18.12.3/po/gl/ark.po 2019-03-05 01:12:12.000000000 +0100 @@ -2,13 +2,13 @@ # Xosé <[email protected]>, 2008, 2012. # Marce Villarino <[email protected]>, 2009, 2014. # Adrian Chaves Fernandez <[email protected]>, 2013, 2015, 2016. -# Adrián Chaves <[email protected]>, 2017, 2018. +# Adrián Chaves <[email protected]>, 2017, 2018, 2019. msgid "" msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2019-01-16 07:33+0100\n" -"PO-Revision-Date: 2018-11-07 18:46+0100\n" +"PO-Revision-Date: 2019-03-03 20:01+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" "Language: gl\n" @@ -21,7 +21,7 @@ "X-POFile-SpellExtra: Emily Helio ark tar unzip Corporation LF txt Ark \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-POFile-SpellExtra: rar\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 18.12.2\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" @@ -268,7 +268,7 @@ "Show a dialog for specifying the options for the operation (extract/add)" msgstr "" "Mostrar un diálogo para indicar as opcións para a operación, extraer ou " -"abrir." +"engadir." #: app/main.cpp:168 #, kde-format @@ -308,8 +308,8 @@ "Change the current dir to the first entry and add all other entries relative " "to this one." msgstr "" -"Cambiar o directorio actual á primeira entrada, e o resto das entradas " -"relativas a el." +"Cambiar o directorio actual á primeira entrada e engadir o resto das " +"entradas relativas a el." #: app/main.cpp:185 #, kde-format @@ -419,9 +419,7 @@ #, kde-format msgid "" "Whether to show a warning when creating zip archives with AES encryption." -msgstr "" -"Marque esta opción para mostrar un aviso ao crear arquivos zip con cifrado " -"AES." +msgstr "Se mostrar un aviso ao crear arquivos zip con cifrado AES." #. i18n: ectx: label, entry (defaultOpenAction), group (General) #: kerfuffle/ark.kcfg:13 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-18.12.2/po/id/ark.po new/ark-18.12.3/po/id/ark.po --- old/ark-18.12.2/po/id/ark.po 2019-02-05 01:28:42.000000000 +0100 +++ new/ark-18.12.3/po/id/ark.po 2019-03-05 01:12:12.000000000 +0100 @@ -9,15 +9,15 @@ "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2019-01-16 07:33+0100\n" -"PO-Revision-Date: 2019-01-19 08:58+0700\n" -"Last-Translator: Wantoyo <[email protected]>\n" +"PO-Revision-Date: 2019-02-23 08:12+0700\n" +"Last-Translator: wantoyo <[email protected]>\n" "Language-Team: Indonesian <[email protected]>\n" "Language: id\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: Lokalize 18.12.0\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 18.12.1\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -492,7 +492,8 @@ msgctxt "@info" msgid "Could not move the extracted file to the destination directory." msgid_plural "Could not move the extracted files to the destination directory." -msgstr[0] "Tidak bisa memindah file-file yang di ekstrak ke direktori tujuan." +msgstr[0] "Tidak bisa memindah file yang diekstrak ke direktori tujuan." +msgstr[1] "Tidak bisa memindah file-file yang diekstrak ke direktori tujuan." #: kerfuffle/cliinterface.cpp:875 #, kde-format @@ -598,8 +599,8 @@ msgid "" "This encryption method may not be supported by older archiving software." msgstr "" -"Metode enkripsi ini mungkin tidak didukung oleh perangkat lunak pengarsipan " -"yang lawas." +"Metode enkripsi ini mungkin tidak didukung oleh software pengarsipan yang " +"lawas." #. i18n: ectx: property (title), widget (KCollapsibleGroupBox, collapsibleMultiVolume) #: kerfuffle/compressionoptionswidget.ui:183 @@ -899,7 +900,8 @@ #, kde-format msgid "Extracting one file" msgid_plural "Extracting %1 files" -msgstr[0] "Mengekstrak %1 file" +msgstr[0] "Mengekstrak satu file" +msgstr[1] "Mengekstrak %1 file" #: kerfuffle/jobs.cpp:513 #, kde-format @@ -920,25 +922,29 @@ #, kde-format msgid "Compressing a file" msgid_plural "Compressing %1 files" -msgstr[0] "Mengompres %1 file" +msgstr[0] "Mengompres suatu file" +msgstr[1] "Mengompres %1 file" #: kerfuffle/jobs.cpp:711 #, kde-format msgid "Moving a file" msgid_plural "Moving %1 files" -msgstr[0] "Memindah %1 file" +msgstr[0] "Memindah sebuah file" +msgstr[1] "Memindah %1 file" #: kerfuffle/jobs.cpp:749 #, kde-format msgid "Copying a file" msgid_plural "Copying %1 files" -msgstr[0] "Menyalin %1 file" +msgstr[0] "Menyalin sebuah file" +msgstr[1] "Menyalin %1 file" #: kerfuffle/jobs.cpp:781 #, kde-format msgid "Deleting a file from the archive" msgid_plural "Deleting %1 files" -msgstr[0] "Menghapus %1 file" +msgstr[0] "Menghapus sebuah file dari arsip" +msgstr[1] "Menghapus %1 file" #: kerfuffle/jobs.cpp:805 #, kde-format @@ -1008,12 +1014,14 @@ msgid "%1 file" msgid_plural "%1 files" msgstr[0] "%1 file" +msgstr[1] "%1 file" #: kerfuffle/propertiesdialog.cpp:75 #, kde-format msgid ", %1 folder" msgid_plural ", %1 folders" msgstr[0] ", %1 folder" +msgstr[1] ", %1 folder" #: kerfuffle/propertiesdialog.cpp:89 #, kde-format @@ -1355,7 +1363,8 @@ #, kde-format msgid "One file selected" msgid_plural "%1 files selected" -msgstr[0] "%1 file dipilih" +msgstr[0] "Satu file dipilih" +msgstr[1] "%1 file dipilih" #. i18n: ectx: property (windowTitle), widget (QWidget, InformationPanel) #: part/infopanel.ui:20 @@ -1791,8 +1800,11 @@ msgid_plural "" "Deleting these files is not undoable. Are you sure you want to do this?" msgstr[0] "" -"Penghapusan file tersebut tidak dapat ditakjadikan. Apakah kamu yakin ingin " +"Penghapusan file ini tidak dapat ditakjadikan. Apakah kamu yakin ingin " "melakukan ini?" +msgstr[1] "" +"Penghapusan file-file tersebut tidak dapat ditakjadikan. Apakah kamu yakin " +"ingin melakukan ini?" # Ini nama dialog. #: part/part.cpp:1598 @@ -1800,7 +1812,8 @@ msgctxt "@title:window" msgid "Delete File" msgid_plural "Delete Files" -msgstr[0] "Hapus File-file" +msgstr[0] "Hapus File" +msgstr[1] "Hapus File-file" #: part/part.cpp:1641 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-18.12.2/po/lt/ark.po new/ark-18.12.3/po/lt/ark.po --- old/ark-18.12.2/po/lt/ark.po 2019-02-05 01:28:42.000000000 +0100 +++ new/ark-18.12.3/po/lt/ark.po 2019-03-05 01:12:12.000000000 +0100 @@ -4,14 +4,14 @@ # Tomas Straupis <[email protected]>, 2011. # Remigijus Jarmalavičius <[email protected]>, 2011. # Liudas Ališauskas <[email protected]>, 2013. -# Mindaugas Baranauskas <[email protected]>, 2015, 2016. +# Mindaugas Baranauskas <[email protected]>, 2015, 2016, 2019. msgid "" msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2019-01-16 07:33+0100\n" -"PO-Revision-Date: 2017-09-22 21:20+0100\n" -"Last-Translator: Andrius Štikonas <[email protected]>\n" +"PO-Revision-Date: 2019-02-17 10:46+0200\n" +"Last-Translator: Mindaugas Baranauskas <[email protected]>\n" "Language-Team: Lithuanian <[email protected]>\n" "Language: lt\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" -"X-Generator: Poedit 1.8.5\n" +"X-Generator: Lokalize 2.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -917,8 +917,7 @@ msgstr[3] "Išpakuojamas %1 failas" #: kerfuffle/jobs.cpp:513 -#, fuzzy, kde-format -#| msgid "Destination" +#, kde-format msgctxt "extraction folder" msgid "Destination" msgstr "Paskirties vieta" @@ -931,15 +930,13 @@ msgstr "" #: kerfuffle/jobs.cpp:658 -#, fuzzy, kde-format -#| msgid "Copying a file" -#| msgid_plural "Copying %1 files" +#, kde-format msgid "Compressing a file" msgid_plural "Compressing %1 files" -msgstr[0] "Kopijuojamas %1 failas" -msgstr[1] "Kopijuojami %1 failai" -msgstr[2] "Kopijuojama %1 failų" -msgstr[3] "Kopijuojamas %1 failas" +msgstr[0] "Glaudinamas %1 failas" +msgstr[1] "Glaudinami %1 failai" +msgstr[2] "Glaudinama %1 failų" +msgstr[3] "Glaudinamas %1 failas" #: kerfuffle/jobs.cpp:711 #, kde-format @@ -1053,10 +1050,9 @@ msgstr "" #: kerfuffle/propertiesdialog.cpp:92 -#, fuzzy, kde-format -#| msgid "yes (%1 volumes)" +#, kde-format msgid "yes (%1)" -msgstr "taip (%1 tomas)" +msgstr "taip (%1)" #: kerfuffle/propertiesdialog.cpp:109 kerfuffle/propertiesdialog.cpp:110 #: kerfuffle/propertiesdialog.cpp:111 @@ -1157,10 +1153,9 @@ #. i18n: ectx: property (text), widget (QLabel, label_16) #: kerfuffle/propertiesdialog.ui:295 -#, fuzzy, kde-format -#| msgid "Compress to Archive" +#, kde-format msgid "Compression method(s):" -msgstr "Suspausti į archyvą" +msgstr "Glaudinimo metodas(-ai):" #: kerfuffle/queries.cpp:95 #, kde-format @@ -1422,7 +1417,7 @@ #: part/infopanel.ui:153 #, kde-format msgid "Target:" -msgstr "" +msgstr "Paskirtis:" #. i18n: ectx: property (windowTitle), widget (QWidget, JobTrackerWidget) #: part/jobtracker.ui:13 @@ -1477,10 +1472,9 @@ msgstr "Įrašyti" #: part/part.cpp:161 -#, fuzzy, kde-format -#| msgid "Type archive name..." +#, kde-format msgid "Type to search..." -msgstr "Įveskite archyvo pavadinimą..." +msgstr "Įveskite užklausą..." #: part/part.cpp:299 #, kde-kuit-format @@ -1680,12 +1674,10 @@ msgstr "Išpakavimo nuostatos" #: part/part.cpp:796 -#, fuzzy, kde-format -#| msgctxt "@title:tab" -#| msgid "Preview Settings" +#, kde-format msgctxt "@title:tab" msgid "Plugin Settings" -msgstr "Peržiūros nuostatos" +msgstr "Papildinio nuostatos" #: part/part.cpp:797 #, kde-format @@ -1767,6 +1759,7 @@ msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" +"Ark šiuo metu nepalaiko tų ISO atvaizdžių, kurių failų sistema yra UDF." #: part/part.cpp:921 #, fuzzy, kde-kuit-format @@ -1903,10 +1896,9 @@ #: plugins/cli7zplugin/cliplugin.cpp:126 #: plugins/cliunarchiverplugin/cliplugin.cpp:102 -#, fuzzy, kde-format -#| msgid "Testing archive" +#, kde-format msgid "Listing the archive failed." -msgstr "Testuojamas archyvas" +msgstr "Nepavyko gauti archyve esančių failų sąrašo." #: plugins/cli7zplugin/cliplugin.cpp:281 #, fuzzy, kde-format @@ -1955,10 +1947,9 @@ msgstr "" #: plugins/cliunarchiverplugin/cliplugin.cpp:114 -#, fuzzy, kde-format -#| msgid "Extracting file..." +#, kde-format msgid "Extraction failed." -msgstr "Išpakuojamas failas..." +msgstr "Išpakuoti nepavyko." #: plugins/cliunarchiverplugin/cliplugin.cpp:148 #, kde-format @@ -1983,11 +1974,10 @@ msgstr "Išpakavimas nepavyko dėl netikėtos klaidos." #: plugins/clizipplugin/cliplugin.cpp:333 -#, fuzzy, kde-format -#| msgid "Unknown size" +#, kde-format msgctxt "referred to compression method" msgid "unknown" -msgstr "Dydis nežinomas" +msgstr "nežinomas" #: plugins/libarchive/libarchiveplugin.cpp:254 #, fuzzy, kde-format @@ -2107,10 +2097,9 @@ #: plugins/libzipplugin/libzipplugin.cpp:451 #: plugins/libzipplugin/libzipplugin.cpp:838 #: plugins/libzipplugin/libzipplugin.cpp:921 -#, fuzzy, kde-kuit-format -#| msgid "Click to add files to the archive" +#, kde-kuit-format msgid "Failed to write archive." -msgstr "Spragtelėkite norėdami įdėti failus į archyvą" +msgstr "Nepavyko įrašyti archyvo." #: plugins/libzipplugin/libzipplugin.cpp:225 #: plugins/libzipplugin/libzipplugin.cpp:895 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-18.12.2/po/pt_BR/ark.po new/ark-18.12.3/po/pt_BR/ark.po --- old/ark-18.12.2/po/pt_BR/ark.po 2019-02-05 01:28:42.000000000 +0100 +++ new/ark-18.12.3/po/pt_BR/ark.po 2019-03-05 01:12:12.000000000 +0100 @@ -8,14 +8,14 @@ # Henrique Pinto <[email protected]>, 2003, 2004, 2005. # doutor.zero <[email protected]>, 2007. # André Marcelo Alvarenga <[email protected]>, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2018. -# Luiz Fernando Ranghetti <[email protected]>, 2009, 2012, 2017, 2018. +# Luiz Fernando Ranghetti <[email protected]>, 2009, 2012, 2017, 2018, 2019. # Marcus Gama <[email protected]>, 2012. msgid "" msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2019-01-16 07:33+0100\n" -"PO-Revision-Date: 2018-11-07 10:18-0300\n" +"PO-Revision-Date: 2019-02-07 17:29-0200\n" "Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n" "Language-Team: Portuguese <[email protected]>\n" "Language: pt_BR\n" @@ -23,7 +23,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 18.12.1\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -853,7 +853,7 @@ msgid "When clicking a file in an archive or pressing the Return key:" msgstr "" "Ao clicar em um arquivo dentro do arquivo compactado ou ao pressionar a " -"tecla Return:" +"tecla Enter:" #. i18n: ectx: property (text), widget (QRadioButton, radioButton) #: kerfuffle/generalsettingspage.ui:33 @@ -1041,7 +1041,7 @@ #: kerfuffle/propertiesdialog.cpp:89 #, kde-format msgid "only file contents (%1)" -msgstr "apenas o conteúfo do arquivo (%1)" +msgstr "apenas o conteúdo do arquivo (%1)" #: kerfuffle/propertiesdialog.cpp:92 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-18.12.2/po/zh_CN/ark.po new/ark-18.12.3/po/zh_CN/ark.po --- old/ark-18.12.2/po/zh_CN/ark.po 2019-02-05 01:28:43.000000000 +0100 +++ new/ark-18.12.3/po/zh_CN/ark.po 2019-03-05 01:12:12.000000000 +0100 @@ -18,7 +18,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2019-01-16 07:33+0100\n" -"PO-Revision-Date: 2019-01-27 23:11\n" +"PO-Revision-Date: 2019-02-20 23:33\n" "Last-Translator: guoyunhe <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n"
