Hello community, here is the log from the commit of package ark for openSUSE:Factory checked in at 2016-11-12 13:28:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ark (Old) and /work/SRC/openSUSE:Factory/.ark.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ark" Changes: -------- --- /work/SRC/openSUSE:Factory/ark/ark.changes 2016-10-18 10:26:28.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.ark.new/ark.changes 2016-11-12 13:28:26.000000000 +0100 @@ -1,0 +2,7 @@ +Wed Nov 9 06:08:37 UTC 2016 - [email protected] + +- Update to KDE Applications 16.08.3 + * KDE Applications 16.08.3 + * https://www.kde.org/announcements/announce-applications-16.08.3.php + +------------------------------------------------------------------- Old: ---- ark-16.08.2.tar.xz New: ---- ark-16.08.3.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ark.spec ++++++ --- /var/tmp/diff_new_pack.56MEbX/_old 2016-11-12 13:28:27.000000000 +0100 +++ /var/tmp/diff_new_pack.56MEbX/_new 2016-11-12 13:28:27.000000000 +0100 @@ -17,7 +17,7 @@ Name: ark -Version: 16.08.2 +Version: 16.08.3 Release: 0 Summary: KDE Archiver Tool License: GPL-2.0+ ++++++ ark-16.08.2.tar.xz -> ark-16.08.3.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/CMakeLists.txt new/ark-16.08.3/CMakeLists.txt --- old/ark-16.08.2/CMakeLists.txt 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/CMakeLists.txt 2016-11-07 00:17:24.000000000 +0100 @@ -7,7 +7,7 @@ # KDE Application Version, managed by release script set (KDE_APPLICATIONS_VERSION_MAJOR "16") set (KDE_APPLICATIONS_VERSION_MINOR "08") -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}") configure_file(${CMAKE_CURRENT_SOURCE_DIR}/CTestCustom.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/CTestCustom.cmake) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/app/batchextract.cpp new/ark-16.08.3/app/batchextract.cpp --- old/ark-16.08.2/app/batchextract.cpp 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/app/batchextract.cpp 2016-11-07 00:17:24.000000000 +0100 @@ -218,7 +218,7 @@ Kerfuffle::Archive *archive = Kerfuffle::Archive::create(url.toLocalFile(), this); Q_ASSERT(archive); - if (!QFileInfo::exists(url.toLocalFile())) { + if (!QFileInfo::exists(url.toLocalFile()) || !archive->isValid()) { m_failedFiles.append(url.fileName()); return false; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/app/compressfileitemaction.json new/ark-16.08.3/app/compressfileitemaction.json --- old/ark-16.08.2/app/compressfileitemaction.json 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/app/compressfileitemaction.json 2016-11-07 00:17:24.000000000 +0100 @@ -13,9 +13,11 @@ "Name[es]": "Menú de servicio para «Comprimir»", "Name[et]": "Tihendamise teenusemenüü", "Name[fi]": "Pakkaa-palveluvalikko", + "Name[fr]": "Menu de service « compresser »", "Name[he]": "תפריט שירות \"דחיסה\"", "Name[it]": "Menu di servizio «Comprimi»", "Name[nl]": "Servicemenu 'Comprimeren'", + "Name[nn]": "«Komprimer»-tenestemeny", "Name[pl]": "Menu usługi 'Spakuj'", "Name[pt]": "Menu do serviço 'Comprimir'", "Name[sk]": "Servisná ponuka 'Zbaliť'", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/app/extractfileitemaction.cpp new/ark-16.08.3/app/extractfileitemaction.cpp --- old/ark-16.08.2/app/extractfileitemaction.cpp 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/app/extractfileitemaction.cpp 2016-11-07 00:17:24.000000000 +0100 @@ -21,6 +21,7 @@ #include "extractfileitemaction.h" +#include <QFileInfo> #include <QMenu> #include <KPluginFactory> @@ -44,12 +45,19 @@ QList<QAction*> actions; const QIcon icon = QIcon::fromTheme(QStringLiteral("ark")); + bool readOnlyParentDir = false; QList<QUrl> supportedUrls; // Filter URLs by supported mimetypes. foreach (const QUrl &url, fileItemInfos.urlList()) { const QMimeType mimeType = determineMimeType(url.fileName()); - if (!m_pluginManager->preferredPluginsFor(mimeType).isEmpty()) { - supportedUrls << url; + if (m_pluginManager->preferredPluginsFor(mimeType).isEmpty()) { + continue; + } + supportedUrls << url; + // Check whether we can write in the parent directory of the file. + const QString directory = url.adjusted(QUrl::RemoveFilename | QUrl::StripTrailingSlash).toLocalFile(); + if (!QFileInfo(directory).isWritable()) { + readOnlyParentDir = true; } } @@ -81,7 +89,7 @@ extractMenuAction->setMenu(extractMenu); // #189177: disable extract menu in read-only folders. - if (!fileItemInfos.supportsWriting()) { + if (readOnlyParentDir) { extractMenuAction->setEnabled(false); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/app/extractfileitemaction.json new/ark-16.08.3/app/extractfileitemaction.json --- old/ark-16.08.2/app/extractfileitemaction.json 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/app/extractfileitemaction.json 2016-11-07 00:17:24.000000000 +0100 @@ -12,9 +12,11 @@ "Name[es]": "Menú de servicio para «Extraer»", "Name[et]": "Lahtipakkimise teenusemenüü", "Name[fi]": "Pura-palveluvalikko", + "Name[fr]": "Menu de service « extraire »", "Name[he]": "תפריט שירות \"חילוץ\"", "Name[it]": "Menu di servizio «Estrai»", "Name[nl]": "Servicemenu 'Uitpakken'", + "Name[nn]": "«Pakk ut»-tenestemeny", "Name[pl]": "Menu usługi 'Wypakuj'", "Name[pt]": "Menu do serviço 'Extrair'", "Name[sk]": "Servisná ponuka 'Rozbaliť'", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/app/org.kde.ark.appdata.xml new/ark-16.08.3/app/org.kde.ark.appdata.xml --- old/ark-16.08.2/app/org.kde.ark.appdata.xml 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/app/org.kde.ark.appdata.xml 2016-11-07 00:17:24.000000000 +0100 @@ -28,6 +28,7 @@ <name xml:lang="nb">Ark</name> <name xml:lang="nds">Ark</name> <name xml:lang="nl">Ark</name> + <name xml:lang="nn">Ark</name> <name xml:lang="pa">ਆਕ</name> <name xml:lang="pl">Ark</name> <name xml:lang="pt">Ark</name> @@ -70,6 +71,7 @@ <summary xml:lang="nb">Arkiveringsverktøy</summary> <summary xml:lang="nds">Archievwarktüüch</summary> <summary xml:lang="nl">Archiefgereedschap</summary> + <summary xml:lang="nn">Arkiveringsverktøy</summary> <summary xml:lang="pa">ਅਕਾਇਵ ਬਣਾਉਣ ਟੂਲ</summary> <summary xml:lang="pl">Narzędzie do archiwizowania</summary> <summary xml:lang="pt">Ferramenta de Arquivo</summary> @@ -116,6 +118,7 @@ <p xml:lang="nb">Ark er et verktøy med grafisk brukerflate, for komprimering/dekomprimering, med støtte for mange formater, deriblant tar, gzip, rar og zip, samt CD-ROM-bilder. Ark kan brukes til å bla i, pakke opp, opprette og endre arkiver.</p> <p xml:lang="nds">Ark is en graafsch Komprimeer- un Dekomprimeerwarktüüch, dat en Barg Formaten ünnerstütten deit. Dor sünd tar, gzip, bzip2, rar un zip bi, un ok CD-ROM-Afbiller. Mit Ark kannst Du Archiven dörkieken, opstellen un ännern un Dateien dor ruttrecken.</p> <p xml:lang="nl">Ark is een grafisch hulpmiddel om bestanden te comprimeren/uit te pakken met ondersteuning van meerdere formaten, inclusief tar, gzip, bzip2, rar en zip, evenals cd-ROM images. Ark kan gebruikt worden om door archieven te bladeren, deze uit te pakken, te maken en te wijzigen.</p> + <p xml:lang="nn">Ark er eit grafisk filkomprimerings- og dekomprimeringsverktøy med støtte for ulike format, blant anna tar, gzip, bzip2, rar, zip og CD-ROM-bilete. Det kan brukast til å sjå gjennom, pakka ut, laga eller endra filarkiv.</p> <p xml:lang="pl">Ark jest graficznym narzędziem do pakowania/rozpakowywania plików wraz z obsługą różnych formatów, włączając w to tar, gzip, bzip2, rar oraz zip, a także obrazy CD-ROM. Programu Ark można używać do przeglądania, tworzenia, zmieniania oraz wydobywania z archiwów</p> <p xml:lang="pt">O Ark é um utilitário de compressão/descompressão com o suporte para diversos formatos, incluindo o 'tar', 'gzip', 'bzip2', 'rar' e 'zip', assim como imagens de CD-ROM. O Ark pode ser usado para navegar, extrair, criar e modificar esses pacotes.</p> <p xml:lang="pt-BR">O Ark é um utilitário de compressão/descompressão com o suporte a diversos formatos, incluindo tar, gzip, bzip2, rar e zip, assim como imagens de CD-ROM. O Ark pode ser usado para navegar, extrair, criar e modificar esses arquivos.</p> @@ -157,6 +160,7 @@ <p xml:lang="nb">Egenskaper:</p> <p xml:lang="nds">Markmalen:</p> <p xml:lang="nl">Mogelijkheden:</p> + <p xml:lang="nn">Funksjonar:</p> <p xml:lang="pa">ਲੱਛਣ:</p> <p xml:lang="pl">Cechy:</p> <p xml:lang="pt">Funcionalidades:</p> @@ -199,6 +203,7 @@ <li xml:lang="nb">Mange formater støttet: gzip, bzip2, zip, rar, 7z og mer</li> <li xml:lang="nds">En Reeg Fomaten warrt ünnerstütt: gzip, bzip2, zip, rar, 7z un anner</li> <li xml:lang="nl">Ondersteuning voor een aantal formaten: gzip, bzip2, zip, rar, 7z en meer</li> + <li xml:lang="nn">Støtte for fleire format, blant anna gzip, bzip2, zip, rar og 7z</li> <li xml:lang="pl">Obsługa kilku formatów: gzip, bzip2, zip, rar, 7z oraz więcej</li> <li xml:lang="pt">Diversos formatos suportados: gzip, bzip2, zip, rar, 7z, entre outros</li> <li xml:lang="pt-BR">Diversos formatos suportados: gzip, bzip2, zip, rar, 7z, entre outros</li> @@ -239,6 +244,7 @@ <li xml:lang="nb">Forhåndsvis innhold uten å pakke ut filer</li> <li xml:lang="nds">Datein ahn Ruttrecken vörweg ankieken</li> <li xml:lang="nl">Voorvertoning van inhoud van bestand zonder bestanden uit te pakken</li> + <li xml:lang="nn">Førehandsvising av filinnhald utan fullstendig utpakking</li> <li xml:lang="pl">Podejrzyj zawartość pliku bez jego wypakowywania</li> <li xml:lang="pt">Antevisão do conteúdo dos ficheiros sem os extrair</li> <li xml:lang="pt-BR">Visualização do conteúdo dos arquivos sem precisar extraí-los</li> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/app/org.kde.ark.desktop.cmake new/ark-16.08.3/app/org.kde.ark.desktop.cmake --- old/ark-16.08.2/app/org.kde.ark.desktop.cmake 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/app/org.kde.ark.desktop.cmake 2016-11-07 00:17:24.000000000 +0100 @@ -175,6 +175,7 @@ Comment[ko]=압축 파일로 작업하기 Comment[lt]=Darbas su archyvais Comment[nl]=Mert bestandsarchieven werken +Comment[nn]=Arbeid med filarkiv Comment[pl]=Pracuj z archiwami plików Comment[pt]=Lidar com pacotes em ficheiros Comment[pt_BR]=Manipulação de arquivos compactados diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/kerfuffle/cliinterface.cpp new/ark-16.08.3/kerfuffle/cliinterface.cpp --- old/ark-16.08.2/kerfuffle/cliinterface.cpp 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/kerfuffle/cliinterface.cpp 2016-11-07 00:17:24.000000000 +0100 @@ -340,6 +340,11 @@ m_process = Q_NULLPTR; } + // Don't emit finished() if the job was killed quietly. + if (m_abortingOperation) { + return; + } + if (m_compressionOptions.value(QStringLiteral("AlwaysUseTmpDir")).toBool()) { // unar exits with code 1 if extraction fails. // This happens at least with wrong passwords or not enough space in the destination folder. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/kerfuffle/mime/kerfuffle.xml new/ark-16.08.3/kerfuffle/mime/kerfuffle.xml --- old/ark-16.08.2/kerfuffle/mime/kerfuffle.xml 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/kerfuffle/mime/kerfuffle.xml 2016-11-07 00:17:24.000000000 +0100 @@ -10,6 +10,7 @@ <comment xml:lang="es">Archivo comprimido Tar (comprimido con lzip)</comment> <comment xml:lang="et">Tar-arhiiv (lzip-tihendusega)</comment> <comment xml:lang="nl">Tar-archief (lzip-gecomprimeerd)</comment> + <comment xml:lang="nn">Tar-arkiv (lzip-komprimert)</comment> <comment xml:lang="pl">Archiwum Tar (kompresja lzip)</comment> <comment xml:lang="pt">Pacote TAR (comprimido com Lzip)</comment> <comment xml:lang="pt_BR">Arquivo tar (compressão lzip)</comment> @@ -33,6 +34,7 @@ <comment xml:lang="es">Archivo comprimido XAR</comment> <comment xml:lang="et">XAR-arhiiv</comment> <comment xml:lang="nl">XAR-archief</comment> + <comment xml:lang="nn">XAR-arkiv</comment> <comment xml:lang="pl">Archiwum XAR</comment> <comment xml:lang="pt">Pacote XAR</comment> <comment xml:lang="pt_BR">Arquivo XAR</comment> @@ -60,6 +62,7 @@ <comment xml:lang="es">Archivo comprimido Tar (comprimido con LZ4)</comment> <comment xml:lang="et">Tar-arhiiv (LZ4 tihendusega)</comment> <comment xml:lang="nl">Tar-archief (lz4-gecomprimeerd)</comment> + <comment xml:lang="nn">Tar-arkiv (LZ4-komprimert)</comment> <comment xml:lang="pl">Archiwum Tar (kompresja LZ4)</comment> <comment xml:lang="pt">Pacote TAR (comprimido com LZ4)</comment> <comment xml:lang="pt_BR">Arquivo tar (compressão LZ4)</comment> @@ -82,6 +85,7 @@ <comment xml:lang="es">Paquete de aplicación AppImage</comment> <comment xml:lang="et">AppImage rakendusekimp</comment> <comment xml:lang="nl">Toepassingsbundel AppImage</comment> + <comment xml:lang="nn">AppImage-programpakke</comment> <comment xml:lang="pl">Pęk aplikacji AppImage</comment> <comment xml:lang="pt">Pacote de aplicações do AppImage</comment> <comment xml:lang="sk">Balík aplikácie AppImage</comment> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/plugins/cliunarchiverplugin/kerfuffle_cliunarchiver.json.cmake new/ark-16.08.3/plugins/cliunarchiverplugin/kerfuffle_cliunarchiver.json.cmake --- old/ark-16.08.2/plugins/cliunarchiverplugin/kerfuffle_cliunarchiver.json.cmake 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/plugins/cliunarchiverplugin/kerfuffle_cliunarchiver.json.cmake 2016-11-07 00:17:24.000000000 +0100 @@ -17,6 +17,7 @@ "Name[he]": "תוסף חילוץ אכיונים", "Name[it]": "Estensione The Unarchiver", "Name[nl]": "De plug-in voor uit archief halen", + "Name[nn]": "Unarchiver-tillegget", "Name[pl]": "Wtyczka wypakowywacza", "Name[pt]": "O 'plugin' do Unarchiver", "Name[pt_BR]": "Plugin Unarchiver", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/plugins/libarchive/kerfuffle_libarchive.json.cmake new/ark-16.08.3/plugins/libarchive/kerfuffle_libarchive.json.cmake --- old/ark-16.08.2/plugins/libarchive/kerfuffle_libarchive.json.cmake 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/plugins/libarchive/kerfuffle_libarchive.json.cmake 2016-11-07 00:17:24.000000000 +0100 @@ -12,6 +12,7 @@ "Description[gl]": "Complemento de libarchive para Kerfuffle", "Description[it]": "Estensione LibArchive per Kerfuffle", "Description[nl]": "LibArchive plug-in voor Kerfuffle", + "Description[nn]": "LibArchive-tillegg til Kerfuffle", "Description[pl]": "Wtyczka LibArchive dla Kerfuffle", "Description[pt]": "'Plugin' da LibArchive para o Kerfuffle", "Description[pt_BR]": "Plugin LibArchive para a Kerfuffle", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/plugins/libarchive/readwritelibarchiveplugin.cpp new/ark-16.08.3/plugins/libarchive/readwritelibarchiveplugin.cpp --- old/ark-16.08.2/plugins/libarchive/readwritelibarchiveplugin.cpp 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/plugins/libarchive/readwritelibarchiveplugin.cpp 2016-11-07 00:17:24.000000000 +0100 @@ -305,7 +305,6 @@ qCDebug(ARK) << "Added" << no_entries << "old entries to archive"; } - m_abortOperation = false; // In the success case, we need to manually close the archive_writer before // calling QSaveFile::commit(), otherwise the latter will close() the @@ -313,7 +312,12 @@ // TODO: We need to abstract this code better so that we only deal with one // object that manages both QSaveFile and ArchiveWriter. archive_write_close(arch_writer.data()); - tempFile.commit(); + // #365869: avoid data loss if we are aborting the job. + if (!m_abortOperation) { + tempFile.commit(); + } + + m_abortOperation = false; return true; } @@ -422,7 +426,7 @@ // Copy old elements from previous archive to new archive. int no_entries = 0; - while (archive_read_next_header(arch_reader.data(), &entry) == ARCHIVE_OK) { + while (!m_abortOperation && archive_read_next_header(arch_reader.data(), &entry) == ARCHIVE_OK) { const QString entryName = QFile::decodeName(archive_entry_pathname(entry)); @@ -456,15 +460,18 @@ } qCDebug(ARK) << "Removed" << no_entries << "entries from archive"; - m_abortOperation = false; - // In the success case, we need to manually close the archive_writer before // calling QSaveFile::commit(), otherwise the latter will close() the // file descriptor archive_writer is still working on. // TODO: We need to abstract this code better so that we only deal with one // object that manages both QSaveFile and ArchiveWriter. archive_write_close(arch_writer.data()); - tempFile.commit(); + // #365869: avoid data loss if we are aborting the job. + if (!m_abortOperation) { + tempFile.commit(); + } + + m_abortOperation = false; return true; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/plugins/libsinglefileplugin/kerfuffle_libbz2.json.cmake new/ark-16.08.3/plugins/libsinglefileplugin/kerfuffle_libbz2.json.cmake --- old/ark-16.08.2/plugins/libsinglefileplugin/kerfuffle_libbz2.json.cmake 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/plugins/libsinglefileplugin/kerfuffle_libbz2.json.cmake 2016-11-07 00:17:24.000000000 +0100 @@ -12,6 +12,7 @@ "Description[gl]": "Complemento de libbz2 para Kerfuffle", "Description[it]": "Estensione libbz2 per Kerfuffle", "Description[nl]": "libbz2 plug-in voor Kerfuffle", + "Description[nn]": "libzip2-tillegg til Kerfuffle", "Description[pl]": "wtyczka libbz2 dla Kerfuffle", "Description[pt]": "'Plugin' de libbz2 para o Kerfuffle", "Description[pt_BR]": "Plugin libbz2 para o Kerfuffle", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/plugins/libsinglefileplugin/kerfuffle_libgz.json.cmake new/ark-16.08.3/plugins/libsinglefileplugin/kerfuffle_libgz.json.cmake --- old/ark-16.08.2/plugins/libsinglefileplugin/kerfuffle_libgz.json.cmake 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/plugins/libsinglefileplugin/kerfuffle_libgz.json.cmake 2016-11-07 00:17:24.000000000 +0100 @@ -12,6 +12,7 @@ "Description[gl]": "Complemento de libgz para Kerfuffle", "Description[it]": "Estensione libgz per Kerfuffle", "Description[nl]": "libgz-plug-in voor Kerfuffle", + "Description[nn]": "libgz-tillegg til Kerfuffle", "Description[pl]": "wtyczka libgz dla Kerfuffle", "Description[pt]": "'Plugin' de libgz para o Kerfuffle", "Description[pt_BR]": "Plugin libgz para a Kerfuffle", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ark-16.08.2/plugins/libsinglefileplugin/kerfuffle_libxz.json.cmake new/ark-16.08.3/plugins/libsinglefileplugin/kerfuffle_libxz.json.cmake --- old/ark-16.08.2/plugins/libsinglefileplugin/kerfuffle_libxz.json.cmake 2016-10-10 14:25:46.000000000 +0200 +++ new/ark-16.08.3/plugins/libsinglefileplugin/kerfuffle_libxz.json.cmake 2016-11-07 00:17:24.000000000 +0100 @@ -12,6 +12,7 @@ "Description[gl]": "Complemento de libxz para Kerfuffle", "Description[it]": "Estensione libxz per Kerfuffle", "Description[nl]": "libxz plug-in voor Kerfuffle", + "Description[nn]": "libxz-tillegg til Kerfuffle", "Description[pl]": "wtyczka libxz dla Kerfuffle", "Description[pt]": "'Plugin' de libxz para o Kerfuffle", "Description[pt_BR]": "Plugin libxz para o Kerfuffle",
