Hello community,

here is the log from the commit of package ark for openSUSE:Factory checked in 
at 2018-11-12 09:22:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ark (Old)
 and      /work/SRC/openSUSE:Factory/.ark.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ark"

Mon Nov 12 09:22:48 2018 rev:98 rq:647957 version:18.08.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/ark/ark.changes  2018-10-15 09:19:40.164695571 
+0200
+++ /work/SRC/openSUSE:Factory/.ark.new/ark.changes     2018-11-12 
09:25:38.254428785 +0100
@@ -1,0 +2,11 @@
+Thu Nov 08 20:43:26 UTC 2018 - [email protected]
+
+- Update to 18.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.08.3.php
+- Changes since 18.08.2:
+  * Disable Compress menu on remote URLs
+  * Show 'Extract' menu on archives without extension (kde#399806)
+
+-------------------------------------------------------------------

Old:
----
  ark-18.08.2.tar.xz

New:
----
  ark-18.08.3.tar.xz

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

Other differences:
------------------
++++++ ark.spec ++++++
--- /var/tmp/diff_new_pack.q7uZ9t/_old  2018-11-12 09:25:40.882425505 +0100
+++ /var/tmp/diff_new_pack.q7uZ9t/_new  2018-11-12 09:25:40.886425499 +0100
@@ -21,7 +21,7 @@
 %define SOMAJOR 18
 
 Name:           ark
-Version:        18.08.2
+Version:        18.08.3
 Release:        0
 %define kf5_version 5.26.0
 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)

++++++ ark-18.08.2.tar.xz -> ark-18.08.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/CMakeLists.txt 
new/ark-18.08.3/CMakeLists.txt
--- old/ark-18.08.2/CMakeLists.txt      2018-10-08 22:43:00.000000000 +0200
+++ new/ark-18.08.3/CMakeLists.txt      2018-11-02 16:11:16.000000000 +0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "18")
 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}")
 project(ark VERSION ${KDE_APPLICATIONS_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/app/compressfileitemaction.cpp 
new/ark-18.08.3/app/compressfileitemaction.cpp
--- old/ark-18.08.2/app/compressfileitemaction.cpp      2018-10-08 
22:43:00.000000000 +0200
+++ new/ark-18.08.3/app/compressfileitemaction.cpp      2018-11-02 
16:11:16.000000000 +0100
@@ -75,7 +75,7 @@
 
     QAction *compressMenuAction = new QAction(i18nc("@action:inmenu Compress 
submenu in Dolphin context menu", "Compress"), parentWidget);
     compressMenuAction->setMenu(compressMenu);
-    compressMenuAction->setEnabled(fileItemInfos.supportsWriting() && 
!m_pluginManager->availableWritePlugins().isEmpty());
+    compressMenuAction->setEnabled(fileItemInfos.isLocal() && 
fileItemInfos.supportsWriting() && 
!m_pluginManager->availableWritePlugins().isEmpty());
 
     actions << compressMenuAction;
     return actions;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/app/compressfileitemaction.json 
new/ark-18.08.3/app/compressfileitemaction.json
--- old/ark-18.08.2/app/compressfileitemaction.json     2018-10-08 
22:43:00.000000000 +0200
+++ new/ark-18.08.3/app/compressfileitemaction.json     2018-11-02 
16:11:16.000000000 +0100
@@ -12,6 +12,7 @@
         "Name[da]": "\"Kompriḿer\"-servicemenu",
         "Name[de]": "„Komprimieren“ im Servicemenü",
         "Name[el]": "Μενού υπηρεσίας 'Συμπίεσης'",
+        "Name[en_GB]": "'Compress' service menu",
         "Name[es]": "Menú de servicio para «Comprimir»",
         "Name[et]": "Tihendamise teenusemenüü",
         "Name[eu]": "'Konprimatu' zerbitzu menua",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/app/extractfileitemaction.cpp 
new/ark-18.08.3/app/extractfileitemaction.cpp
--- old/ark-18.08.2/app/extractfileitemaction.cpp       2018-10-08 
22:43:00.000000000 +0200
+++ new/ark-18.08.3/app/extractfileitemaction.cpp       2018-11-02 
16:11:16.000000000 +0100
@@ -49,7 +49,7 @@
     QList<QUrl> supportedUrls;
     // Filter URLs by supported mimetypes.
     foreach (const QUrl &url, fileItemInfos.urlList()) {
-        const QMimeType mimeType = determineMimeType(url.fileName());
+        const QMimeType mimeType = determineMimeType(url.path());
         if (m_pluginManager->preferredPluginsFor(mimeType).isEmpty()) {
             continue;
         }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/app/extractfileitemaction.json 
new/ark-18.08.3/app/extractfileitemaction.json
--- old/ark-18.08.2/app/extractfileitemaction.json      2018-10-08 
22:43:00.000000000 +0200
+++ new/ark-18.08.3/app/extractfileitemaction.json      2018-11-02 
16:11:16.000000000 +0100
@@ -11,6 +11,7 @@
         "Name[da]": "\"Udpak\"-servicemenu",
         "Name[de]": "„Entpacken“ im Servicemenü",
         "Name[el]": "Μενού υπηρεσίας 'Αποσυμπίεσης'",
+        "Name[en_GB]": "'Extract' service menu",
         "Name[es]": "Menú de servicio para «Extraer»",
         "Name[et]": "Lahtipakkimise teenusemenüü",
         "Name[eu]": "'Erauzi' zerbitzu menua",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/kerfuffle/mimetypes.h 
new/ark-18.08.3/kerfuffle/mimetypes.h
--- old/ark-18.08.2/kerfuffle/mimetypes.h       2018-10-08 22:43:00.000000000 
+0200
+++ new/ark-18.08.3/kerfuffle/mimetypes.h       2018-11-02 16:11:16.000000000 
+0100
@@ -32,6 +32,10 @@
 
 namespace Kerfuffle
 {
+    /**
+     * @param filename Absolute path of a file.
+     * @return The mimetype of the given file.
+     */
     KERFUFFLE_EXPORT QMimeType determineMimeType(const QString& filename);
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-18.08.2/plugins/cli7zplugin/kerfuffle_cli7z.json.cmake 
new/ark-18.08.3/plugins/cli7zplugin/kerfuffle_cli7z.json.cmake
--- old/ark-18.08.2/plugins/cli7zplugin/kerfuffle_cli7z.json.cmake      
2018-10-08 22:43:00.000000000 +0200
+++ new/ark-18.08.3/plugins/cli7zplugin/kerfuffle_cli7z.json.cmake      
2018-11-02 16:11:16.000000000 +0100
@@ -7,6 +7,7 @@
         "Description[da]": "Fuld understøttelse af zip- og 7z-arkivformater",
         "Description[de]": "Vollständige Unterstützung für Zip- und 
7z-Archivformate",
         "Description[el]": "Πλήρης υποστήριξη για την αρχειοθήκη μορφής zip 
και 7z",
+        "Description[en_GB]": "Full support for the zip and 7z archive 
formats",
         "Description[es]": "Uso total de los formatos de archivos comprimidos 
zip y 7z",
         "Description[eu]": "zip eta 7z artxibo fitxategientzako euskarri osoa",
         "Description[fi]": "Täysi Zip- ja 7z-tiedostomuotojen tuki",
@@ -43,6 +44,7 @@
         "Name[da]": "P7zip-plugin",
         "Name[de]": "P7zip-Modul",
         "Name[el]": "Πρόσθετο P7zip",
+        "Name[en_GB]": "P7zip plugin",
         "Name[es]": "Complemento P7zip",
         "Name[eu]": "P7zip plugina",
         "Name[fi]": "P7zip-liitännäinen",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-18.08.2/plugins/clirarplugin/kerfuffle_clirar.json.cmake 
new/ark-18.08.3/plugins/clirarplugin/kerfuffle_clirar.json.cmake
--- old/ark-18.08.2/plugins/clirarplugin/kerfuffle_clirar.json.cmake    
2018-10-08 22:43:00.000000000 +0200
+++ new/ark-18.08.3/plugins/clirarplugin/kerfuffle_clirar.json.cmake    
2018-11-02 16:11:16.000000000 +0100
@@ -7,6 +7,7 @@
         "Description[da]": "Fuld understøttelse af RAR-arkivformatet",
         "Description[de]": "Vollständige Unterstützung für das 
RAR-Archivformat",
         "Description[el]": "Πλήρης υποστήριξη για την αρχειοθήκη μορφής RAR",
+        "Description[en_GB]": "Full support for the RAR archive format",
         "Description[es]": "Uso total del formato de archivo comprimido RAR",
         "Description[eu]": "RAR artxibo formatuarentzako euskarri osoa",
         "Description[fi]": "Täysi RAR-tiedostomuodon tuki",
@@ -43,6 +44,7 @@
         "Name[da]": "RAR-plugin",
         "Name[de]": "RAR-Modul",
         "Name[el]": "Πρόσθετο RAR ",
+        "Name[en_GB]": "RAR plugin",
         "Name[es]": "Complemento RAR",
         "Name[eu]": "RAR plugina",
         "Name[fi]": "RAR-liitännäinen",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-18.08.2/plugins/cliunarchiverplugin/kerfuffle_cliunarchiver.json.cmake 
new/ark-18.08.3/plugins/cliunarchiverplugin/kerfuffle_cliunarchiver.json.cmake
--- 
old/ark-18.08.2/plugins/cliunarchiverplugin/kerfuffle_cliunarchiver.json.cmake  
    2018-10-08 22:43:00.000000000 +0200
+++ 
new/ark-18.08.3/plugins/cliunarchiverplugin/kerfuffle_cliunarchiver.json.cmake  
    2018-11-02 16:11:16.000000000 +0100
@@ -7,6 +7,7 @@
         "Description[da]": "Åbn og udpak RAR-arkiver",
         "Description[de]": "Öffnen und Entpacken von RAR-Archiven",
         "Description[el]": "Άνοιγμα και εξαγωγή αρχειοθηκών RAR",
+        "Description[en_GB]": "Open and extract RAR archives",
         "Description[es]": "Abrir y extraer archivos RAR",
         "Description[eu]": "Ireki eta erauzi RAR artxiboak",
         "Description[fi]": "Avaa ja pura RAR-arkistoja",
@@ -44,6 +45,7 @@
         "Name[da]": "Unarchiver-pluginet",
         "Name[de]": "Unarchiver-Modul",
         "Name[el]": "Πρόσθετο Unarchiver",
+        "Name[en_GB]": "The Unarchiver plugin",
         "Name[es]": "El complemento de Unarchiver",
         "Name[et]": "Unarchiveri plugin",
         "Name[eu]": "Unarchiver plugina",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-18.08.2/plugins/clizipplugin/kerfuffle_clizip.json.cmake 
new/ark-18.08.3/plugins/clizipplugin/kerfuffle_clizip.json.cmake
--- old/ark-18.08.2/plugins/clizipplugin/kerfuffle_clizip.json.cmake    
2018-10-08 22:43:00.000000000 +0200
+++ new/ark-18.08.3/plugins/clizipplugin/kerfuffle_clizip.json.cmake    
2018-11-02 16:11:16.000000000 +0100
@@ -7,6 +7,7 @@
         "Description[da]": "Understøttelse af det forældende zip-arkivformat",
         "Description[de]": "Unterstützung für veraltete Zip-Archivformate",
         "Description[el]": "Κληροδοτούμενη υποστήριξη για την αρχειοθήκη 
μορφής zip",
+        "Description[en_GB]": "Legacy support for the zip archive format",
         "Description[es]": "Uso heredado para el formato de archivo comprimido 
zip",
         "Description[eu]": "zip artxibo formatuarentzako heredatutako 
euskarria",
         "Description[fi]": "Zip-tiedostomuodon perinteinen tuki",
@@ -43,6 +44,7 @@
         "Name[da]": "Info-zip-plugin",
         "Name[de]": "Info-zip-Modul",
         "Name[el]": "Πρόσθετο Info-zip",
+        "Name[en_GB]": "Info-zip plugin",
         "Name[es]": "Complemento Info-zip",
         "Name[eu]": "Info-zip plugina",
         "Name[fi]": "Info-Zip-liitännäinen",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-18.08.2/plugins/libarchive/kerfuffle_libarchive.json.cmake 
new/ark-18.08.3/plugins/libarchive/kerfuffle_libarchive.json.cmake
--- old/ark-18.08.2/plugins/libarchive/kerfuffle_libarchive.json.cmake  
2018-10-08 22:43:00.000000000 +0200
+++ new/ark-18.08.3/plugins/libarchive/kerfuffle_libarchive.json.cmake  
2018-11-02 16:11:16.000000000 +0100
@@ -7,6 +7,7 @@
         "Description[da]": "Fuld understøttelse af TAR-arkiver",
         "Description[de]": "Vollständige Unterstützung für komprimierte 
TAR-Archive",
         "Description[el]": "Πλήρης υποστήριξη για την αρχειοθήκη μορφής TAR",
+        "Description[en_GB]": "Full support for compressed TAR archives",
         "Description[es]": "Uso total de los archivos comprimidos TAR",
         "Description[eu]": "Konprimatutako TAR artxiboentzako euskarri osoa",
         "Description[fi]": "Pakattujen Tar-arkistojen täysi tuki",
@@ -43,6 +44,7 @@
         "Name[da]": "Libarchive-plugin",
         "Name[de]": "LibArchive-Modul",
         "Name[el]": "Πρόσθετο Libarchive",
+        "Name[en_GB]": "Libarchive plugin",
         "Name[es]": "Complemento Libarchive",
         "Name[eu]": "Libarchive plugina",
         "Name[fi]": "Libarchive-liitännäinen",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-18.08.2/plugins/libarchive/kerfuffle_libarchive_readonly.json.cmake 
new/ark-18.08.3/plugins/libarchive/kerfuffle_libarchive_readonly.json.cmake
--- old/ark-18.08.2/plugins/libarchive/kerfuffle_libarchive_readonly.json.cmake 
2018-10-08 22:43:00.000000000 +0200
+++ new/ark-18.08.3/plugins/libarchive/kerfuffle_libarchive_readonly.json.cmake 
2018-11-02 16:11:16.000000000 +0100
@@ -7,6 +7,7 @@
         "Description[da]": "Åbn og udpak DEB-, RPM-, ISO-, AppImage-, XAR- og 
CAB-filer",
         "Description[de]": "Öffnen und Entpacken von DEB-, RPM-, ISO-, 
AppImage-, XAR- und CAB-Dateien",
         "Description[el]": "Άνοιγμα και εξαγωγή αρχείων DEB, RPM, ISO, 
AppImage, XAR και CAB",
+        "Description[en_GB]": "Open and extract DEB, RPM, ISO, AppImage, XAR 
and CAB files",
         "Description[es]": "Abrir y extraer archivos DEB, RPM, ISO, AppImage, 
XAR y CAB",
         "Description[eu]": "Ireki eta erauzi DEB, RPM, ISO, AppImage, XAR eta 
CAB fitxategiak",
         "Description[fi]": "Avaa ja pura Deb-, RPM-, ISO-, AppImage-, Xar- ja 
Cab-tiedostoja",
@@ -43,6 +44,7 @@
         "Name[da]": "Libarchive-plugin (skrivebeskyttede formater)",
         "Name[de]": "LibArchive-Modul (Nur lesbare Formate)",
         "Name[el]": "Πρόσθετο Libarchive (ανάγνωση μόνο)",
+        "Name[en_GB]": "Libarchive plugin (read-only formats)",
         "Name[es]": "Complemento Libarchive (formatos de solo lectura)",
         "Name[eu]": "Libarchive plugina (irakurri-soilik formatuak)",
         "Name[fi]": "Libarchive-liitännäinen (vain luku -muodot)",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-18.08.2/plugins/libsinglefileplugin/kerfuffle_libbz2.json.cmake 
new/ark-18.08.3/plugins/libsinglefileplugin/kerfuffle_libbz2.json.cmake
--- old/ark-18.08.2/plugins/libsinglefileplugin/kerfuffle_libbz2.json.cmake     
2018-10-08 22:43:00.000000000 +0200
+++ new/ark-18.08.3/plugins/libsinglefileplugin/kerfuffle_libbz2.json.cmake     
2018-11-02 16:11:16.000000000 +0100
@@ -7,6 +7,7 @@
         "Description[da]": "Åbn og udpak enkelte filer komprimeret med 
bzip2-algoritmen",
         "Description[de]": "Öffnen und Entpacken von einzelnen mit dem 
Bzip2-Algorithmus komprimierten Dateien",
         "Description[el]": "Άνοιγμα και εξαγωγή απλών αρχείων συμπιεσμένα με 
τον αλγόριθμο bzip2",
+        "Description[en_GB]": "Open and extract single files compressed with 
the bzip2 algorithm",
         "Description[es]": "Abrir y extraer archivos individuales comprimidos 
con el algoritmo bzip2",
         "Description[eu]": "Ireki eta erauzi bzip2 algoritmoarekin 
konprimatutako fitxategiak banaka",
         "Description[fi]": "Avaa ja pura Bzip2-algoritmilla pakattuja 
yksittäistiedostoja",
@@ -43,6 +44,7 @@
         "Name[da]": "Bzip2-plugin",
         "Name[de]": "Bzip2-Modul",
         "Name[el]": "Πρόσθετο Bzip2",
+        "Name[en_GB]": "Bzip2 plugin",
         "Name[es]": "Complemento Bzip2",
         "Name[eu]": "Bzip2 plugina",
         "Name[fi]": "Bzip2-liitännäinen",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-18.08.2/plugins/libsinglefileplugin/kerfuffle_libgz.json.cmake 
new/ark-18.08.3/plugins/libsinglefileplugin/kerfuffle_libgz.json.cmake
--- old/ark-18.08.2/plugins/libsinglefileplugin/kerfuffle_libgz.json.cmake      
2018-10-08 22:43:00.000000000 +0200
+++ new/ark-18.08.3/plugins/libsinglefileplugin/kerfuffle_libgz.json.cmake      
2018-11-02 16:11:16.000000000 +0100
@@ -7,6 +7,7 @@
         "Description[da]": "Åbn og udpak enkelte filer komprimeret med 
gzip-algoritmen",
         "Description[de]": "Öffnen und Entpacken von einzelnen mit dem 
GZip-Algorithmus komprimierten Dateien",
         "Description[el]": "Άνοιγμα και εξαγωγή απλών αρχείων συμπιεσμένα με 
τον αλγόριθμο gzip",
+        "Description[en_GB]": "Open and extract single files compressed with 
the gzip algorithm",
         "Description[es]": "Abrir y extraer archivos individuales comprimidos 
con el algoritmo gzip",
         "Description[eu]": "Ireki eta erauzi gzip algoritmoarekin 
konprimatutako fitxategiak banaka",
         "Description[fi]": "Avaa ja pura Gzip-algoritmilla pakattuja 
yksittäistiedostoja",
@@ -43,6 +44,7 @@
         "Name[da]": "Gzip-plugin",
         "Name[de]": "Gzip-Modul",
         "Name[el]": "Πρόσθετο Gzip",
+        "Name[en_GB]": "Gzip plugin",
         "Name[es]": "Complemento Gzip",
         "Name[eu]": "Gzip plugina",
         "Name[fi]": "Gzip-liitännäinen",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-18.08.2/plugins/libsinglefileplugin/kerfuffle_libxz.json.cmake 
new/ark-18.08.3/plugins/libsinglefileplugin/kerfuffle_libxz.json.cmake
--- old/ark-18.08.2/plugins/libsinglefileplugin/kerfuffle_libxz.json.cmake      
2018-10-08 22:43:00.000000000 +0200
+++ new/ark-18.08.3/plugins/libsinglefileplugin/kerfuffle_libxz.json.cmake      
2018-11-02 16:11:16.000000000 +0100
@@ -7,6 +7,7 @@
         "Description[da]": "Åbn og udpak enkelte filer komprimeret med 
lzma-algoritmen",
         "Description[de]": "Öffnen und Entpacken von einzelnen mit dem 
LZMA-Algorithmus komprimierten Dateien",
         "Description[el]": "Άνοιγμα και εξαγωγή απλών αρχείων συμπιεσμένα με 
τον αλγόριθμο Izma",
+        "Description[en_GB]": "Open and extract single files compressed with 
the lzma algorithm",
         "Description[es]": "Abrir y extraer archivos individuales comprimidos 
con el algoritmo lzma",
         "Description[eu]": "Ireki eta erauzi lzma algoritmoarekin 
konprimatutako fitxategiak banaka",
         "Description[fi]": "Avaa ja pura LZMA-algoritmilla pakattuja 
yksittäistiedostoja",
@@ -43,6 +44,7 @@
         "Name[da]": "LZMA-plugin",
         "Name[de]": "LZMA-Modul",
         "Name[el]": "Πρόσθετο LZMA",
+        "Name[en_GB]": "LZMA plugin",
         "Name[es]": "Complemento LZMA",
         "Name[eu]": "LZMA plugina",
         "Name[fi]": "LZMA-liitännäinen",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ark-18.08.2/plugins/libzipplugin/kerfuffle_libzip.json.cmake 
new/ark-18.08.3/plugins/libzipplugin/kerfuffle_libzip.json.cmake
--- old/ark-18.08.2/plugins/libzipplugin/kerfuffle_libzip.json.cmake    
2018-10-08 22:43:00.000000000 +0200
+++ new/ark-18.08.3/plugins/libzipplugin/kerfuffle_libzip.json.cmake    
2018-11-02 16:11:16.000000000 +0100
@@ -7,6 +7,7 @@
         "Description[da]": "Fuld understøttelse af zip-arkivformater",
         "Description[de]": "Vollständige Unterstützung für Zip-Archivformate",
         "Description[el]": "Πλήρης υποστήριξη για την αρχειοθήκη μορφής zip",
+        "Description[en_GB]": "Full support for the zip archive format",
         "Description[es]": "Uso total del formato de archivo comprimido zip",
         "Description[eu]": "Zip artxibo formatuarentzako euskarri osoa",
         "Description[fi]": "Täysi Zip-tiedostomuodon tuki",
@@ -43,6 +44,7 @@
         "Name[da]": "Libzip-plugin",
         "Name[de]": "Libzip-Modul",
         "Name[el]": "Πρόσθετο Libzip",
+        "Name[en_GB]": "Libzip plugin",
         "Name[es]": "Complemento Libzip",
         "Name[eu]": "Libzip plugina",
         "Name[fi]": "Libzip-liitännäinen",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/ar/ark.po new/ark-18.08.3/po/ar/ark.po
--- old/ark-18.08.2/po/ar/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/ar/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -18,7 +18,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2014-07-05 17:17+0300\n"
 "Last-Translator: Abdalrahim G. Fakhouri <[email protected]>\n"
 "Language-Team: Arabic <Arabic <[email protected]>>\n"
@@ -130,7 +130,7 @@
 msgid "Extract"
 msgstr "الاستخراج"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/ast/ark.po 
new/ark-18.08.3/po/ast/ark.po
--- old/ark-18.08.2/po/ast/ark.po       2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/ast/ark.po       2018-11-06 01:13:15.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-06-29 13:15+0100\n"
 "Last-Translator: enolp <[email protected]>\n"
 "Language-Team: Asturian <[email protected]>\n"
@@ -106,7 +106,7 @@
 msgid "Extract"
 msgstr ""
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/bg/ark.po new/ark-18.08.3/po/bg/ark.po
--- old/ark-18.08.2/po/bg/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/bg/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2014-05-18 16:38+0200\n"
 "Last-Translator: Svetoslav Stefanov <[email protected]>\n"
 "Language-Team: Bulgarian <[email protected]>\n"
@@ -120,7 +120,7 @@
 msgid "Extract"
 msgstr "Извличане"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/bs/ark.po new/ark-18.08.3/po/bs/ark.po
--- old/ark-18.08.2/po/bs/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/bs/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2015-02-24 23:38+0100\n"
 "Last-Translator: Samir Ribić <[email protected]>\n"
 "Language-Team: Bosanski <[email protected]>\n"
@@ -125,7 +125,7 @@
 msgid "Extract"
 msgstr "Raspakivanje"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/ca/ark.po new/ark-18.08.3/po/ca/ark.po
--- old/ark-18.08.2/po/ca/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/ca/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2018-07-08 19:24+0100\n"
 "Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -111,7 +111,7 @@
 msgid "Extract"
 msgstr "Extreu"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/ca@valencia/ark.po 
new/ark-18.08.3/po/ca@valencia/ark.po
--- old/ark-18.08.2/po/ca@valencia/ark.po       2018-10-09 02:16:43.000000000 
+0200
+++ new/ark-18.08.3/po/ca@valencia/ark.po       2018-11-06 01:13:15.000000000 
+0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2018-07-08 19:24+0100\n"
 "Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -111,7 +111,7 @@
 msgid "Extract"
 msgstr "Extreu"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/cs/ark.po new/ark-18.08.3/po/cs/ark.po
--- old/ark-18.08.2/po/cs/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/cs/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-11-30 09:44+0100\n"
 "Last-Translator: Vit Pelcak <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
@@ -109,7 +109,7 @@
 msgid "Extract"
 msgstr "Rozbalit"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/da/ark.po new/ark-18.08.3/po/da/ark.po
--- old/ark-18.08.2/po/da/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/da/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2018-01-18 21:01+0200\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish\n"
@@ -111,7 +111,7 @@
 msgid "Extract"
 msgstr "Pak ud"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/de/ark.po new/ark-18.08.3/po/de/ark.po
--- old/ark-18.08.2/po/de/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/de/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-11-21 13:47+0100\n"
 "Last-Translator: Burkhard Lück <[email protected]>\n"
 "Language-Team: German <[email protected]>\n"
@@ -113,7 +113,7 @@
 msgid "Extract"
 msgstr "Entpacken"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/el/ark.po new/ark-18.08.3/po/el/ark.po
--- old/ark-18.08.2/po/el/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/el/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -13,14 +13,14 @@
 # Dimitrios Glentadakis <[email protected]>, 2011, 2012, 2013.
 # Stelios <[email protected]>, 2012, 2014, 2017.
 # Dimitris Kardarakos <[email protected]>, 2016.
-# Petros Vidalis <[email protected]>, 2016, 2017.
+# Petros Vidalis <[email protected]>, 2016, 2017, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
-"PO-Revision-Date: 2017-10-28 14:13+0200\n"
-"Last-Translator: Stelios <[email protected]>\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
+"PO-Revision-Date: 2018-10-18 15:21+0200\n"
+"Last-Translator: Long Run <[email protected]>\n"
 "Language-Team: Greek <[email protected]>\n"
 "Language: el\n"
 "MIME-Version: 1.0\n"
@@ -118,7 +118,7 @@
 msgid "Extract"
 msgstr "Εξαγωγή"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
@@ -921,8 +921,7 @@
 msgstr[1] "Εξαγωγή %1 αρχείων"
 
 #: kerfuffle/jobs.cpp:513
-#, fuzzy, kde-format
-#| msgid "Destination"
+#, kde-format
 msgctxt "extraction folder"
 msgid "Destination"
 msgstr "Προορισμός"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/en_GB/ark.po 
new/ark-18.08.3/po/en_GB/ark.po
--- old/ark-18.08.2/po/en_GB/ark.po     2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/en_GB/ark.po     2018-11-06 01:13:15.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-12-31 18:31+0000\n"
 "Last-Translator: Steve Allewell <[email protected]>\n"
 "Language-Team: British English <[email protected]>\n"
@@ -108,7 +108,7 @@
 msgid "Extract"
 msgstr "Extract"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/eo/ark.po new/ark-18.08.3/po/eo/ark.po
--- old/ark-18.08.2/po/eo/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/eo/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: arkn\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2007-10-21 17:10+0200\n"
 "Last-Translator: Pierre-Marie Pédrot <[email protected]>\n"
 "Language-Team: esperanto <[email protected]>\n"
@@ -115,7 +115,7 @@
 msgid "Extract"
 msgstr "Ekstraktu"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, fuzzy, kde-format
 #| msgid "Extract"
 msgctxt ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/es/ark.po new/ark-18.08.3/po/es/ark.po
--- old/ark-18.08.2/po/es/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/es/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-11-20 20:16+0100\n"
 "Last-Translator: Eloy Cuadra <[email protected]>\n"
 "Language-Team: Spanish <[email protected]>\n"
@@ -110,7 +110,7 @@
 msgid "Extract"
 msgstr "Extraer"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/et/ark.po new/ark-18.08.3/po/et/ark.po
--- old/ark-18.08.2/po/et/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/et/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2016-12-09 18:11+0200\n"
 "Last-Translator: Marek Laane <[email protected]>\n"
 "Language-Team: Estonian <[email protected]>\n"
@@ -111,7 +111,7 @@
 msgid "Extract"
 msgstr "Lahtipakkimine"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/eu/ark.po new/ark-18.08.3/po/eu/ark.po
--- old/ark-18.08.2/po/eu/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/eu/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2018-08-07 09:40+0100\n"
 "Last-Translator: Iñigo Salvador Azurmendi <[email protected]>\n"
 "Language-Team: Basque <[email protected]>\n"
@@ -115,7 +115,7 @@
 msgid "Extract"
 msgstr "Erauzi"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/fa/ark.po new/ark-18.08.3/po/fa/ark.po
--- old/ark-18.08.2/po/fa/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/fa/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2007-08-07 20:07+0330\n"
 "Last-Translator: Nazanin Kazemi <[email protected]>\n"
 "Language-Team: Persian <[email protected]>\n"
@@ -118,7 +118,7 @@
 msgid "Extract"
 msgstr "استخراج"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, fuzzy, kde-format
 #| msgid "Extract"
 msgctxt ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/fi/ark.po new/ark-18.08.3/po/fi/ark.po
--- old/ark-18.08.2/po/fi/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/fi/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -19,7 +19,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2018-03-01 16:40+0200\n"
 "Last-Translator: Tommi Nieminen <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
@@ -125,7 +125,7 @@
 msgid "Extract"
 msgstr "Pura"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/fr/ark.po new/ark-18.08.3/po/fr/ark.po
--- old/ark-18.08.2/po/fr/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/fr/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -16,7 +16,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2018-08-09 15:35+0800\n"
 "Last-Translator: Simon Depiets <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
@@ -121,7 +121,7 @@
 msgid "Extract"
 msgstr "Extraire"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/ga/ark.po new/ark-18.08.3/po/ga/ark.po
--- old/ark-18.08.2/po/ga/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/ga/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kdeutils/ark.po\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2004-12-03 14:52-0500\n"
 "Last-Translator: Kevin Scannell <[email protected]>\n"
 "Language-Team: Irish <[email protected]>\n"
@@ -117,7 +117,7 @@
 msgid "Extract"
 msgstr "Bain Amach"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/gl/ark.po new/ark-18.08.3/po/gl/ark.po
--- old/ark-18.08.2/po/gl/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/gl/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2018-03-31 11:00+0100\n"
 "Last-Translator: Adrian Chaves <[email protected]>\n"
 "Language-Team: Galician <[email protected]>\n"
@@ -115,7 +115,7 @@
 msgid "Extract"
 msgstr "Extraer"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/he/ark.po new/ark-18.08.3/po/he/ark.po
--- old/ark-18.08.2/po/he/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/he/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -18,7 +18,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-05-16 07:03-0400\n"
 "Last-Translator: Copied by Zanata <[email protected]>\n"
 "Language-Team: Hebrew <[email protected]>\n"
@@ -118,7 +118,7 @@
 msgid "Extract"
 msgstr "חלץ"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/hi/ark.po new/ark-18.08.3/po/hi/ark.po
--- old/ark-18.08.2/po/hi/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/hi/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2008-02-02 21:47+0530\n"
 "Last-Translator: Ravishankar Shrivastava <[email protected]>\n"
 "Language-Team: Hindi <[email protected]>\n"
@@ -117,7 +117,7 @@
 msgid "Extract"
 msgstr "निकालें"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, fuzzy, kde-format
 #| msgid "Extract"
 msgctxt ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/hr/ark.po new/ark-18.08.3/po/hr/ark.po
--- old/ark-18.08.2/po/hr/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/hr/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: ark 0\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2011-07-22 16:59+0200\n"
 "Last-Translator: Marko Dimjašević <[email protected]>\n"
 "Language-Team: Croatian <[email protected]>\n"
@@ -129,7 +129,7 @@
 msgid "Extract"
 msgstr "Otpakiraj"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/hu/ark.po new/ark-18.08.3/po/hu/ark.po
--- old/ark-18.08.2/po/hu/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/hu/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: KDE 4.4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2015-09-11 13:30+0200\n"
 "Last-Translator: Kristóf Kiszel <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\n"
@@ -114,7 +114,7 @@
 msgid "Extract"
 msgstr "Kibontás"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/ia/ark.po new/ark-18.08.3/po/ia/ark.po
--- old/ark-18.08.2/po/ia/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/ia/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2018-02-19 23:13+0100\n"
 "Last-Translator: giovanni <[email protected]>\n"
 "Language-Team: Interlingua <[email protected]>\n"
@@ -106,7 +106,7 @@
 msgid "Extract"
 msgstr "Extrahe"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/id/ark.po new/ark-18.08.3/po/id/ark.po
--- old/ark-18.08.2/po/id/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/id/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2018-08-29 14:40+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
@@ -108,7 +108,7 @@
 msgid "Extract"
 msgstr "Ekstrak"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/is/ark.po new/ark-18.08.3/po/is/ark.po
--- old/ark-18.08.2/po/is/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/is/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2015-01-29 09:07+0000\n"
 "Last-Translator: Sveinn í Felli <[email protected]>\n"
 "Language-Team: Icelandic <[email protected]>\n"
@@ -132,7 +132,7 @@
 msgid "Extract"
 msgstr "Afþjappa"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, fuzzy, kde-format
 #| msgid "Extract here"
 msgctxt ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/it/ark.po new/ark-18.08.3/po/it/ark.po
--- old/ark-18.08.2/po/it/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/it/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-11-26 21:28+0100\n"
 "Last-Translator: Vincenzo Reale <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\n"
@@ -110,7 +110,7 @@
 msgid "Extract"
 msgstr "Estrai"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/ja/ark.po new/ark-18.08.3/po/ja/ark.po
--- old/ark-18.08.2/po/ja/ark.po        2018-10-09 02:16:43.000000000 +0200
+++ new/ark-18.08.3/po/ja/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2014-09-21 00:34-0700\n"
 "Last-Translator: Fumiaki Okushi <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
@@ -125,7 +125,7 @@
 msgid "Extract"
 msgstr "展開"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/kk/ark.po new/ark-18.08.3/po/kk/ark.po
--- old/ark-18.08.2/po/kk/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/kk/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2012-08-03 07:39+0600\n"
 "Last-Translator: Sairan Kikkarin\n"
 "Language-Team: Kazakh <[email protected]>\n"
@@ -119,7 +119,7 @@
 msgid "Extract"
 msgstr "Тарқату"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/km/ark.po new/ark-18.08.3/po/km/ark.po
--- old/ark-18.08.2/po/km/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/km/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2012-06-11 15:59+0700\n"
 "Last-Translator: Khoem Sokhem <[email protected]>\n"
 "Language-Team: Khmer\n"
@@ -118,7 +118,7 @@
 msgid "Extract"
 msgstr "ស្រង់​ចេញ"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/ko/ark.po new/ark-18.08.3/po/ko/ark.po
--- old/ark-18.08.2/po/ko/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/ko/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-12-03 23:23+0100\n"
 "Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
@@ -109,7 +109,7 @@
 msgid "Extract"
 msgstr "압축 풀기"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/lt/ark.po new/ark-18.08.3/po/lt/ark.po
--- old/ark-18.08.2/po/lt/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/lt/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-09-22 21:20+0100\n"
 "Last-Translator: Andrius Štikonas <[email protected]>\n"
 "Language-Team: Lithuanian <[email protected]>\n"
@@ -110,7 +110,7 @@
 msgid "Extract"
 msgstr "Išpakuoti"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/lv/ark.po new/ark-18.08.3/po/lv/ark.po
--- old/ark-18.08.2/po/lv/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/lv/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2011-03-09 22:52+0200\n"
 "Last-Translator: Einars Sprugis <[email protected]>\n"
 "Language-Team: Latvian <[email protected]>\n"
@@ -123,7 +123,7 @@
 msgid "Extract"
 msgstr "Atspiest"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/mr/ark.po new/ark-18.08.3/po/mr/ark.po
--- old/ark-18.08.2/po/mr/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/mr/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2013-03-05 14:53+0530\n"
 "Last-Translator: Chetan Khona <[email protected]>\n"
 "Language-Team: American English <[email protected]>\n"
@@ -117,7 +117,7 @@
 msgid "Extract"
 msgstr "बाहेर काढा"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/nb/ark.po new/ark-18.08.3/po/nb/ark.po
--- old/ark-18.08.2/po/nb/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/nb/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2014-11-10 17:15+0100\n"
 "Last-Translator: Bjørn Steensrud <[email protected]>\n"
 "Language-Team: Norwegian Bokmål <[email protected]>\n"
@@ -113,7 +113,7 @@
 msgid "Extract"
 msgstr ""
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/nds/ark.po 
new/ark-18.08.3/po/nds/ark.po
--- old/ark-18.08.2/po/nds/ark.po       2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/nds/ark.po       2018-11-06 01:13:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2014-02-20 11:36+0100\n"
 "Last-Translator: Sönke Dibbern <[email protected]>\n"
 "Language-Team: Low Saxon <[email protected]>\n"
@@ -118,7 +118,7 @@
 msgid "Extract"
 msgstr "Utpacken"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/nl/ark.po new/ark-18.08.3/po/nl/ark.po
--- old/ark-18.08.2/po/nl/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/nl/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -16,7 +16,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-11-19 17:35+0100\n"
 "Last-Translator: Freek de Kruijf <[email protected]>\n"
 "Language-Team: Dutch <[email protected]>\n"
@@ -121,7 +121,7 @@
 msgid "Extract"
 msgstr "Uitpakken"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/nn/ark.po new/ark-18.08.3/po/nn/ark.po
--- old/ark-18.08.2/po/nn/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/nn/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -8,8 +8,8 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
-"PO-Revision-Date: 2018-07-31 17:12+0100\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
+"PO-Revision-Date: 2018-10-12 19:54+0100\n"
 "Last-Translator: Øystein Steffensen-Alværvik <[email protected]>\n"
 "Language-Team: Norwegian Nynorsk <[email protected]>\n"
 "Language: nn\n"
@@ -111,7 +111,7 @@
 msgid "Extract"
 msgstr "Pakk ut"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
@@ -1709,7 +1709,7 @@
 #, kde-kuit-format
 msgctxt "@info"
 msgid "Ark does not currently support ISO files with UDF filesystem."
-msgstr "Ark støtar ikkje ISO-filer med UDF-filsystemet."
+msgstr "Ark støttar ikkje ISO-filer med UDF-filsystemet."
 
 #: part/part.cpp:932
 #, kde-kuit-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/pa/ark.po new/ark-18.08.3/po/pa/ark.po
--- old/ark-18.08.2/po/pa/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/pa/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-04-09 10:49-0600\n"
 "Last-Translator: A S Alam <[email protected]>\n"
 "Language-Team: Punjabi <[email protected]>\n"
@@ -109,7 +109,7 @@
 msgid "Extract"
 msgstr "ਖਿਲਾਰੋ"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/pl/ark.po new/ark-18.08.3/po/pl/ark.po
--- old/ark-18.08.2/po/pl/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/pl/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-12-02 07:56+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
@@ -111,7 +111,7 @@
 msgid "Extract"
 msgstr "Wypakuj"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/pt/ark.po new/ark-18.08.3/po/pt/ark.po
--- old/ark-18.08.2/po/pt/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/pt/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-11-19 18:57+0000\n"
 "Last-Translator: Pedro Morais <[email protected]>\n"
 "Language-Team: pt <[email protected]>\n"
@@ -116,7 +116,7 @@
 msgid "Extract"
 msgstr "Extrair"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/pt_BR/ark.po 
new/ark-18.08.3/po/pt_BR/ark.po
--- old/ark-18.08.2/po/pt_BR/ark.po     2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/pt_BR/ark.po     2018-11-06 01:13:15.000000000 +0100
@@ -14,7 +14,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2018-07-28 12:45-0300\n"
 "Last-Translator: André Marcelo Alvarenga <[email protected]>\n"
 "Language-Team: Brazilian Portuguese <[email protected]>\n"
@@ -117,7 +117,7 @@
 msgid "Extract"
 msgstr "Extrair"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/ro/ark.po new/ark-18.08.3/po/ro/ark.po
--- old/ark-18.08.2/po/ro/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/ro/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2012-10-20 10:34+0300\n"
 "Last-Translator: Sergiu Bivol <[email protected]>\n"
 "Language-Team: Romanian <[email protected]>\n"
@@ -121,7 +121,7 @@
 msgid "Extract"
 msgstr "Extrage"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/ru/ark.po new/ark-18.08.3/po/ru/ark.po
--- old/ark-18.08.2/po/ru/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/ru/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -16,7 +16,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-11-26 19:52+0300\n"
 "Last-Translator: Alexander Potashev <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
@@ -120,7 +120,7 @@
 msgid "Extract"
 msgstr "Распаковать"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/sk/ark.po new/ark-18.08.3/po/sk/ark.po
--- old/ark-18.08.2/po/sk/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/sk/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2018-09-02 09:55+0100\n"
 "Last-Translator: Mthw <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
@@ -113,7 +113,7 @@
 msgid "Extract"
 msgstr "Rozbaliť"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/sl/ark.po new/ark-18.08.3/po/sl/ark.po
--- old/ark-18.08.2/po/sl/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/sl/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -2,7 +2,7 @@
 # Translation of ark.po to Slovenian
 # -*- mode:po; coding:iso-latin-2: -*- KDEUTILS translation to Slovenian 
language.
 # Copyright (C) 2001,2002,2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-# $Id: ark.po 1520246 2018-07-18 05:06:03Z scripty $
+# $Id: ark.po 1526179 2018-10-09 05:53:07Z scripty $
 # $Source$
 #
 # Marko Samastur <[email protected]>, 2000.
@@ -16,7 +16,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2018-01-13 10:07+0100\n"
 "Last-Translator: Andrej Mernik <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
@@ -120,7 +120,7 @@
 msgid "Extract"
 msgstr "Razširi"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/sr/ark.po new/ark-18.08.3/po/sr/ark.po
--- old/ark-18.08.2/po/sr/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/sr/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-12-15 12:38+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -112,7 +112,7 @@
 msgid "Extract"
 msgstr "Распакуј"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/sv/ark.po new/ark-18.08.3/po/sv/ark.po
--- old/ark-18.08.2/po/sv/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/sv/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-11-19 21:09+0100\n"
 "Last-Translator: Stefan Asserhäll <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
@@ -112,7 +112,7 @@
 msgid "Extract"
 msgstr "Packa upp"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/tr/ark.po new/ark-18.08.3/po/tr/ark.po
--- old/ark-18.08.2/po/tr/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/tr/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -18,7 +18,7 @@
 msgstr ""
 "Project-Id-Version: kdeutils-kde4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-10-23 08:43+0000\n"
 "Last-Translator: İşbaran <[email protected]>\n"
 "Language-Team: Turkish <[email protected]>\n"
@@ -120,7 +120,7 @@
 msgid "Extract"
 msgstr "Çıkart"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/ug/ark.po new/ark-18.08.3/po/ug/ark.po
--- old/ark-18.08.2/po/ug/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/ug/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2013-09-08 07:05+0900\n"
 "Last-Translator: Gheyret Kenji <[email protected]>\n"
 "Language-Team: Uyghur Computer Science Association <[email protected]>\n"
@@ -117,7 +117,7 @@
 msgid "Extract"
 msgstr "ئايرىش"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/uk/ark.po new/ark-18.08.3/po/uk/ark.po
--- old/ark-18.08.2/po/uk/ark.po        2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/uk/ark.po        2018-11-06 01:13:15.000000000 +0100
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2017-11-19 09:16+0200\n"
 "Last-Translator: Yuri Chornoivan <[email protected]>\n"
 "Language-Team: Ukrainian <[email protected]>\n"
@@ -112,7 +112,7 @@
 msgid "Extract"
 msgstr "Видобути"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/zh_CN/ark.po 
new/ark-18.08.3/po/zh_CN/ark.po
--- old/ark-18.08.2/po/zh_CN/ark.po     2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/zh_CN/ark.po     2018-11-06 01:13:15.000000000 +0100
@@ -17,9 +17,9 @@
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
-"PO-Revision-Date: 2018-09-28 19:55\n"
-"Last-Translator: guoyunhe <[email protected]>\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
+"PO-Revision-Date: 2018-11-01 23:26\n"
+"Last-Translator: guoyunhe <[email protected]>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
@@ -120,7 +120,7 @@
 msgid "Extract"
 msgstr "解压缩"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"
@@ -721,7 +721,7 @@
 #: kerfuffle/extractiondialog.ui:70
 #, kde-format
 msgid "Extract All Files"
-msgstr "解压缩全部文件"
+msgstr "解压缩所有文件"
 
 #. i18n: ectx: property (title), widget (QGroupBox, singleFolderGroup)
 #: kerfuffle/extractiondialog.ui:79
@@ -863,7 +863,7 @@
 #: kerfuffle/jobs.cpp:509
 #, kde-format
 msgid "Extracting all files"
-msgstr "正在解压缩全部文件"
+msgstr "正在解压缩所有文件"
 
 #. i18np on purpose so this translation may properly be reused.
 #: kerfuffle/jobs.cpp:511 kerfuffle/jobs.cpp:585
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ark-18.08.2/po/zh_TW/ark.po 
new/ark-18.08.3/po/zh_TW/ark.po
--- old/ark-18.08.2/po/zh_TW/ark.po     2018-10-09 02:16:44.000000000 +0200
+++ new/ark-18.08.3/po/zh_TW/ark.po     2018-11-06 01:13:15.000000000 +0100
@@ -13,7 +13,7 @@
 msgstr ""
 "Project-Id-Version: ark\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-07-18 06:15+0200\n"
+"POT-Creation-Date: 2018-10-09 06:52+0200\n"
 "PO-Revision-Date: 2018-04-06 15:58+0800\n"
 "Last-Translator: pan93412 <[email protected]>\n"
 "Language-Team: Chinese <[email protected]>\n"
@@ -113,7 +113,7 @@
 msgid "Extract"
 msgstr "解開"
 
-#: app/extractHereDndPlugin.cpp:64
+#: app/extractHereDndPlugin.cpp:72
 #, kde-format
 msgctxt ""
 "@action:inmenu Context menu shown when an archive is being drag'n'dropped"


Reply via email to