Hello community,

here is the log from the commit of package kompare for openSUSE:Factory checked 
in at 2019-08-16 15:39:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kompare (Old)
 and      /work/SRC/openSUSE:Factory/.kompare.new.22127 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kompare"

Fri Aug 16 15:39:23 2019 rev:78 rq:723689 version:19.08.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kompare/kompare.changes  2019-07-16 
08:33:51.579397130 +0200
+++ /work/SRC/openSUSE:Factory/.kompare.new.22127/kompare.changes       
2019-08-16 15:39:24.529808181 +0200
@@ -1,0 +2,31 @@
+Fri Aug  9 08:31:27 UTC 2019 - Christophe Giboudeaux <[email protected]>
+
+- Update to 19.08.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08.0.php
+- No code change since 19.07.90
+
+-------------------------------------------------------------------
+Tue Aug 06 16:50:50 UTC 2019 - [email protected]
+
+- Update to 19.07.90
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08-rc.php
+- Changes since 19.07.80:
+  * Fix browse for files/folders doesn't enable "Compare" button. (kde#390024)
+
+-------------------------------------------------------------------
+Tue Jul 23 11:59:03 UTC 2019 - [email protected]
+
+- Update to 19.07.80
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08-beta.php
+- Changes since 19.04.3:
+  * Port QFontMetrics::width -> QFontMetrics::horizontalAdvance
+  * Port QColor::light -> QColor::lighter
+  * Port QColor::dark -> QColor::darker
+
+-------------------------------------------------------------------

Old:
----
  kompare-19.04.3.tar.xz

New:
----
  applications.keyring
  kompare-19.08.0.tar.xz
  kompare-19.08.0.tar.xz.sig

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

Other differences:
------------------
++++++ kompare.spec ++++++
--- /var/tmp/diff_new_pack.mOk6nt/_old  2019-08-16 15:39:25.341807945 +0200
+++ /var/tmp/diff_new_pack.mOk6nt/_new  2019-08-16 15:39:25.345807943 +0200
@@ -21,13 +21,17 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:           kompare
-Version:        19.04.3
+Version:        19.08.0
 Release:        0
 Summary:        File Comparator
 License:        GPL-2.0-only AND GFDL-1.2-only
 Group:          Development/Tools/Other
-URL:            http://www.kde.org/
-Source0:        %{name}-%{version}.tar.xz
+URL:            https://www.kde.org/
+Source:         
https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz
+%if %{with lang}
+Source1:        
https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz.sig
+Source2:        applications.keyring
+%endif
 BuildRequires:  extra-cmake-modules
 BuildRequires:  kcodecs-devel
 BuildRequires:  kconfig-devel

++++++ kompare-19.04.3.tar.xz -> kompare-19.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/komparepart/kompareconnectwidget.cpp 
new/kompare-19.08.0/komparepart/kompareconnectwidget.cpp
--- old/kompare-19.04.3/komparepart/kompareconnectwidget.cpp    2019-06-11 
07:36:08.000000000 +0200
+++ new/kompare-19.08.0/komparepart/kompareconnectwidget.cpp    2019-07-22 
09:45:53.000000000 +0200
@@ -226,7 +226,7 @@
 
                 if (selected)
                 {
-                    p->setPen(bg.dark(135));
+                    p->setPen(bg.darker(135));
                     p->setBrush(Qt::NoBrush);
                     p->drawPath(topBezier);
                     p->drawPath(bottomBezier.toReversed());
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/komparepart/komparelistview.cpp 
new/kompare-19.08.0/komparepart/komparelistview.cpp
--- old/kompare-19.04.3/komparepart/komparelistview.cpp 2019-06-11 
07:36:08.000000000 +0200
+++ new/kompare-19.08.0/komparepart/komparelistview.cpp 2019-07-22 
09:45:53.000000000 +0200
@@ -791,7 +791,7 @@
     if (diffItemParent()->isCurrent())
     {
         p->translate(0.5, 0.5);
-        p->setPen(bg.dark(135));
+        p->setPen(bg.darker(135));
         QTreeWidgetItem* parentItem = parent();
         if (this == parentItem->child(0))
             p->drawLine(0, 0, width, 0);
@@ -855,7 +855,11 @@
 //                     p->setPen( Qt::black );
                     brush = normalBrush;
                 }
+#if QT_VERSION >= QT_VERSION_CHECK(5, 11, 0)
+                chunkWidth = p->fontMetrics().horizontalAdvance(textChunk);
+#else
                 chunkWidth = p->fontMetrics().width(textChunk);
+#endif
                 p->fillRect(offset, 0, chunkWidth, paintHeight(), brush);
                 p->drawText(offset, 0,
                             chunkWidth, paintHeight(),
@@ -872,7 +876,11 @@
             QFont font(p->font());
             font.setBold(false);
             p->setFont(font);
+#if QT_VERSION >= QT_VERSION_CHECK(5, 11, 0)
+            chunkWidth = p->fontMetrics().horizontalAdvance(textChunk);
+#else
             chunkWidth = p->fontMetrics().width(textChunk);
+#endif
             p->fillRect(offset, 0, chunkWidth, paintHeight(), normalBrush);
             p->drawText(offset, 0,
                         chunkWidth, paintHeight(),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/kompareurldialog.cpp 
new/kompare-19.08.0/kompareurldialog.cpp
--- old/kompare-19.04.3/kompareurldialog.cpp    2019-06-11 07:36:08.000000000 
+0200
+++ new/kompare-19.08.0/kompareurldialog.cpp    2019-07-22 09:45:53.000000000 
+0200
@@ -72,7 +72,8 @@
             this, &KompareURLDialog::slotEnableOk);
     connect(m_filesPage->secondURLRequester(), &KUrlRequester::textChanged,
             this, &KompareURLDialog::slotEnableOk);
-
+    connect(m_filesPage, &FilesPage::urlChanged,
+            this, &KompareURLDialog::slotEnableOk);
 }
 
 KompareURLDialog::~KompareURLDialog()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/libdialogpages/filespage.cpp 
new/kompare-19.08.0/libdialogpages/filespage.cpp
--- old/kompare-19.04.3/libdialogpages/filespage.cpp    2019-06-11 
07:36:08.000000000 +0200
+++ new/kompare-19.08.0/libdialogpages/filespage.cpp    2019-07-22 
09:45:53.000000000 +0200
@@ -143,6 +143,7 @@
     {
         // remove newUrl if already exists and add it as the first item
         urlComboBox->setUrl(newUrl);
+        emit urlChanged();
     }
 
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/libdialogpages/filespage.h 
new/kompare-19.08.0/libdialogpages/filespage.h
--- old/kompare-19.04.3/libdialogpages/filespage.h      2019-06-11 
07:36:08.000000000 +0200
+++ new/kompare-19.08.0/libdialogpages/filespage.h      2019-07-22 
09:45:53.000000000 +0200
@@ -58,6 +58,13 @@
     virtual void apply();
     virtual void setDefaults();
 
+Q_SIGNALS:
+    // Signal when we set a url from browse buttons.
+    // Since KUrlComboBox::setUrl doesn't emit textChanged we need to notify
+    // the main dialog that we set a url programatically so it can enable OK
+    // if there's a path in both boxes...
+    void urlChanged();
+
 private Q_SLOTS:
     void open();
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/libdialogpages/viewsettings.cpp 
new/kompare-19.08.0/libdialogpages/viewsettings.cpp
--- old/kompare-19.04.3/libdialogpages/viewsettings.cpp 2019-06-11 
07:36:08.000000000 +0200
+++ new/kompare-19.08.0/libdialogpages/viewsettings.cpp 2019-07-22 
09:45:53.000000000 +0200
@@ -93,7 +93,7 @@
     }
 
     if (selected)
-        color = color.light(110);
+        color = color.lighter(110);
 
     return color;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/ar/kompare.po 
new/kompare-19.08.0/po/ar/kompare.po
--- old/kompare-19.04.3/po/ar/kompare.po        2019-07-09 02:14:48.000000000 
+0200
+++ new/kompare-19.08.0/po/ar/kompare.po        2019-08-09 02:37:42.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2013-10-15 16:25+0000\n"
 "Last-Translator: safaalfulaij <[email protected]>\n"
 "Language-Team: Arabic <[email protected]>\n"
@@ -734,7 +734,7 @@
 msgid "Here you can change the options for the view."
 msgstr ""
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/bg/kompare.po 
new/kompare-19.08.0/po/bg/kompare.po
--- old/kompare-19.04.3/po/bg/kompare.po        2019-07-09 02:14:48.000000000 
+0200
+++ new/kompare-19.08.0/po/bg/kompare.po        2019-08-09 02:37:44.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2009-09-17 22:29+0300\n"
 "Last-Translator: Yasen Pramatarov <[email protected]>\n"
 "Language-Team: Bulgarian <[email protected]>\n"
@@ -701,7 +701,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Тук можете да промените опциите за изгледа"
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/bs/kompare.po 
new/kompare-19.08.0/po/bs/kompare.po
--- old/kompare-19.04.3/po/bs/kompare.po        2019-07-09 02:14:48.000000000 
+0200
+++ new/kompare-19.08.0/po/bs/kompare.po        2019-08-09 02:37:45.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdesdk\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2014-12-29 15:40+0000\n"
 "Last-Translator: Nejra Pašić <[email protected]>\n"
 "Language-Team: Bosnian <[email protected]>\n"
@@ -711,7 +711,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Ovdje možete da izmijenite opcije za prikaz."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/ca/kompare.po 
new/kompare-19.08.0/po/ca/kompare.po
--- old/kompare-19.04.3/po/ca/kompare.po        2019-07-09 02:14:48.000000000 
+0200
+++ new/kompare-19.08.0/po/ca/kompare.po        2019-08-09 02:37:47.000000000 
+0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-10-11 17:54+0100\n"
 "Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -700,7 +700,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Aquí podeu canviar les opcions de la vista."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/ca@valencia/kompare.po 
new/kompare-19.08.0/po/ca@valencia/kompare.po
--- old/kompare-19.04.3/po/ca@valencia/kompare.po       2019-07-09 
02:14:48.000000000 +0200
+++ new/kompare-19.08.0/po/ca@valencia/kompare.po       2019-08-09 
02:37:50.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-10-11 17:54+0100\n"
 "Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -700,7 +700,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Ací podeu canviar les opcions de la vista."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/cs/kompare.po 
new/kompare-19.08.0/po/cs/kompare.po
--- old/kompare-19.04.3/po/cs/kompare.po        2019-07-09 02:14:48.000000000 
+0200
+++ new/kompare-19.08.0/po/cs/kompare.po        2019-08-09 02:37:51.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-11-13 15:31+0100\n"
 "Last-Translator: Vit Pelcak <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
@@ -698,7 +698,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Zde můžete změnit nastavení pohledu."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/da/kompare.po 
new/kompare-19.08.0/po/da/kompare.po
--- old/kompare-19.04.3/po/da/kompare.po        2019-07-09 02:14:48.000000000 
+0200
+++ new/kompare-19.08.0/po/da/kompare.po        2019-08-09 02:37:53.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2018-01-10 19:38+0100\n"
 "Last-Translator: Martin Schlander <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
@@ -697,7 +697,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Her kan du ændre valgene for visningen."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/de/kompare.po 
new/kompare-19.08.0/po/de/kompare.po
--- old/kompare-19.04.3/po/de/kompare.po        2019-07-09 02:14:48.000000000 
+0200
+++ new/kompare-19.08.0/po/de/kompare.po        2019-08-09 02:37:54.000000000 
+0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-10-15 21:51+0100\n"
 "Last-Translator: Burkhard Lück <[email protected]>\n"
 "Language-Team: German <[email protected]>\n"
@@ -701,7 +701,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Hier können Sie die Einstellungen für die Ansicht ändern."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/el/kompare.po 
new/kompare-19.08.0/po/el/kompare.po
--- old/kompare-19.04.3/po/el/kompare.po        2019-07-09 02:14:48.000000000 
+0200
+++ new/kompare-19.08.0/po/el/kompare.po        2019-08-09 02:37:56.000000000 
+0200
@@ -13,7 +13,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2018-10-18 16:08+0200\n"
 "Last-Translator: Long Run <[email protected]>\n"
 "Language-Team: Greek <[email protected]>\n"
@@ -704,7 +704,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Εδώ μπορείτε να αλλάξετε τις επιλογές της εμφάνισης."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/en_GB/kompare.po 
new/kompare-19.08.0/po/en_GB/kompare.po
--- old/kompare-19.04.3/po/en_GB/kompare.po     2019-07-09 02:14:48.000000000 
+0200
+++ new/kompare-19.08.0/po/en_GB/kompare.po     2019-08-09 02:37:57.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-11-26 14:19+0000\n"
 "Last-Translator: Steve Allewell <[email protected]>\n"
 "Language-Team: British English <[email protected]>\n"
@@ -696,7 +696,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Here you can change the options for the view."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/eo/kompare.po 
new/kompare-19.08.0/po/eo/kompare.po
--- old/kompare-19.04.3/po/eo/kompare.po        2019-07-09 02:14:48.000000000 
+0200
+++ new/kompare-19.08.0/po/eo/kompare.po        2019-08-09 02:37:58.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2009-11-15 12:06+0100\n"
 "Last-Translator: Axel Rousseau <[email protected]>\n"
 "Language-Team: esperanto <[email protected]>\n"
@@ -665,7 +665,7 @@
 msgid "Here you can change the options for the view."
 msgstr ""
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/es/docs/kompare/index.docbook 
new/kompare-19.08.0/po/es/docs/kompare/index.docbook
--- old/kompare-19.04.3/po/es/docs/kompare/index.docbook        2019-07-09 
02:14:49.000000000 +0200
+++ new/kompare-19.08.0/po/es/docs/kompare/index.docbook        2019-08-09 
02:39:11.000000000 +0200
@@ -1689,8 +1689,7 @@
 > y Santiago Fernández Sancho <email
 >[email protected]</email
 >.</para
-> 
-&underFDL; &underGPL; </chapter>
+> &underFDL; &underGPL; </chapter>
 
 &documentation.index; 
 </book>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/es/kompare.po 
new/kompare-19.08.0/po/es/kompare.po
--- old/kompare-19.04.3/po/es/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/es/kompare.po        2019-08-09 02:38:00.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-10-12 11:28+0100\n"
 "Last-Translator: Eloy Cuadra <[email protected]>\n"
 "Language-Team: Spanish <[email protected]>\n"
@@ -699,7 +699,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Aquí puede cambiar las opciones de la vista."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/et/kompare.po 
new/kompare-19.08.0/po/et/kompare.po
--- old/kompare-19.04.3/po/et/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/et/kompare.po        2019-08-09 02:38:01.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2016-07-27 23:55+0300\n"
 "Last-Translator: Marek Laane <[email protected]>\n"
 "Language-Team: Estonian <[email protected]>\n"
@@ -696,7 +696,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Siin saab muuta vaate valikuid."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/eu/kompare.po 
new/kompare-19.08.0/po/eu/kompare.po
--- old/kompare-19.04.3/po/eu/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/eu/kompare.po        2019-08-09 02:38:03.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2011-10-14 23:11+0200\n"
 "Last-Translator: Iñigo Salvador Azurmendi <[email protected]>\n"
 "Language-Team: Basque <[email protected]>\n"
@@ -705,7 +705,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Hemen ikuspegiaren aukerak alda ditzakezu."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/fa/kompare.po 
new/kompare-19.08.0/po/fa/kompare.po
--- old/kompare-19.04.3/po/fa/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/fa/kompare.po        2019-08-09 02:38:03.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2007-06-30 17:00+0330\n"
 "Last-Translator: Nazanin Kazemi <[email protected]>\n"
 "Language-Team: Persian <[email protected]>\n"
@@ -691,7 +691,7 @@
 msgid "Here you can change the options for the view."
 msgstr ""
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/fi/kompare.po 
new/kompare-19.08.0/po/fi/kompare.po
--- old/kompare-19.04.3/po/fi/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/fi/kompare.po        2019-08-09 02:38:06.000000000 
+0200
@@ -14,7 +14,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2018-08-04 21:01+0200\n"
 "Last-Translator: Tommi Nieminen <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
@@ -706,7 +706,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Tässä voit muuttaa näytön asetuksia."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/fr/kompare.po 
new/kompare-19.08.0/po/fr/kompare.po
--- old/kompare-19.04.3/po/fr/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/fr/kompare.po        2019-08-09 02:38:07.000000000 
+0200
@@ -19,7 +19,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-12-13 11:39+0800\n"
 "Last-Translator: Simon Depiets <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
@@ -720,7 +720,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Vous pouvez ici modifier les options d'affichage."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/ga/kompare.po 
new/kompare-19.08.0/po/ga/kompare.po
--- old/kompare-19.04.3/po/ga/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/ga/kompare.po        2019-08-09 02:38:09.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kdesdk/kompare.po\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+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"
@@ -724,7 +724,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Anseo is féidir roghanna an amhairc a athrú."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/gl/kompare.po 
new/kompare-19.08.0/po/gl/kompare.po
--- old/kompare-19.04.3/po/gl/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/gl/kompare.po        2019-08-09 02:38:10.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2019-01-01 15:30+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n"
 "Language-Team: Galician <[email protected]>\n"
@@ -16,11 +16,7 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Environment: kde,development\n"
-"X-Accelerator-Marker: &\n"
-"X-Text-Markup: kde4\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -699,7 +695,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Aquí pode cambiar as opcións da vista."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/hi/kompare.po 
new/kompare-19.08.0/po/hi/kompare.po
--- old/kompare-19.04.3/po/hi/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/hi/kompare.po        2019-08-09 02:38:12.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2008-02-23 17:35+0530\n"
 "Last-Translator: Ravishankar Shrivastava <[email protected]>\n"
 "Language-Team: Hindi <[email protected]>\n"
@@ -698,7 +698,7 @@
 msgid "Here you can change the options for the view."
 msgstr "यहाँ पर आप दृश्य के विकल्पों को बदल सकते हैं."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/hr/kompare.po 
new/kompare-19.08.0/po/hr/kompare.po
--- old/kompare-19.04.3/po/hr/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/hr/kompare.po        2019-08-09 02:38:13.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kompare 0\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2004-04-20 13:26+CEST\n"
 "Last-Translator: auto\n"
 "Language-Team: Croatian <[email protected]>\n"
@@ -708,7 +708,7 @@
 msgid "Here you can change the options for the view."
 msgstr ""
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/hu/kompare.po 
new/kompare-19.08.0/po/hu/kompare.po
--- old/kompare-19.04.3/po/hu/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/hu/kompare.po        2019-08-09 02:38:14.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: KDE 4.2\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2013-04-09 23:49+0200\n"
 "Last-Translator: Balázs Úr <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\n"
@@ -698,7 +698,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Itt lehet megváltoztatni a nézet beállításait."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/is/kompare.po 
new/kompare-19.08.0/po/is/kompare.po
--- old/kompare-19.04.3/po/is/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/is/kompare.po        2019-08-09 02:38:17.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2015-04-17 11:51+0000\n"
 "Last-Translator: Sveinn í Felli <[email protected]>\n"
 "Language-Team: Icelandic <[email protected]>\n"
@@ -700,7 +700,7 @@
 msgid "Here you can change the options for the view."
 msgstr ""
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/it/docs/kompare/index.docbook 
new/kompare-19.08.0/po/it/docs/kompare/index.docbook
--- old/kompare-19.04.3/po/it/docs/kompare/index.docbook        2019-07-09 
02:14:49.000000000 +0200
+++ new/kompare-19.08.0/po/it/docs/kompare/index.docbook        2019-08-09 
02:39:15.000000000 +0200
@@ -1691,8 +1691,7 @@
 >Traduzione in italiano di Federico Zenith<email
 >[email protected]</email
 ></para
-> 
-&underFDL; &underGPL; </chapter>
+> &underFDL; &underGPL; </chapter>
 
 &documentation.index; 
 </book>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/it/kompare.po 
new/kompare-19.08.0/po/it/kompare.po
--- old/kompare-19.04.3/po/it/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/it/kompare.po        2019-08-09 02:38:19.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-10-16 16:14+0100\n"
 "Last-Translator: Paolo Zamponi <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\n"
@@ -696,7 +696,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Qui puoi cambiare le opzioni per la visualizzazione."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/ja/kompare.po 
new/kompare-19.08.0/po/ja/kompare.po
--- old/kompare-19.04.3/po/ja/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/ja/kompare.po        2019-08-09 02:38:21.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2009-07-20 23:29+0900\n"
 "Last-Translator: Yukiko Bando <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
@@ -704,7 +704,7 @@
 msgid "Here you can change the options for the view."
 msgstr "ここで外観のオプションを変更できます。"
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/kk/kompare.po 
new/kompare-19.08.0/po/kk/kompare.po
--- old/kompare-19.04.3/po/kk/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/kk/kompare.po        2019-08-09 02:38:22.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2013-06-27 04:14+0600\n"
 "Last-Translator: Sairan Kikkarin <[email protected]>\n"
 "Language-Team: Kazakh <[email protected]>\n"
@@ -688,7 +688,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Мұнда көрініс параметрлерін өзгерте аласыз."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/km/kompare.po 
new/kompare-19.08.0/po/km/kompare.po
--- old/kompare-19.04.3/po/km/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/km/kompare.po        2019-08-09 02:38:23.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2008-12-19 10:22+0700\n"
 "Last-Translator: Khoem Sokhem <[email protected]>\n"
 "Language-Team: Khmer <[email protected]>\n"
@@ -666,7 +666,7 @@
 msgid "Here you can change the options for the view."
 msgstr ""
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/ko/kompare.po 
new/kompare-19.08.0/po/ko/kompare.po
--- old/kompare-19.04.3/po/ko/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/ko/kompare.po        2019-08-09 02:38:25.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-12-03 23:40+0100\n"
 "Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
@@ -679,7 +679,7 @@
 msgid "Here you can change the options for the view."
 msgstr "보기 옵션을 변경할 수 있습니다."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/lt/kompare.po 
new/kompare-19.08.0/po/lt/kompare.po
--- old/kompare-19.04.3/po/lt/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/lt/kompare.po        2019-08-09 02:38:27.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-06-28 10:15+0200\n"
 "Last-Translator: Mindaugas Baranauskas <[email protected]>\n"
 "Language-Team: Lithuanian <[email protected]>\n"
@@ -565,7 +565,7 @@
 #: komparepart/kompareprefdlg.cpp:54
 #, kde-format
 msgid "Diff Settings"
-msgstr "Diff nustatymai"
+msgstr "Diff nuostatos"
 
 #. i18n: ectx: property (title), widget (QGroupBox, m_FormatGB)
 #: komparepart/komparesaveoptionsbase.ui:29 libdialogpages/diffpage.cpp:255
@@ -716,7 +716,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Čia galite keisti žiūryklės parinktis."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/lv/kompare.po 
new/kompare-19.08.0/po/lv/kompare.po
--- old/kompare-19.04.3/po/lv/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/lv/kompare.po        2019-08-09 02:38:28.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2009-06-04 12:04+0300\n"
 "Last-Translator: Viesturs Zariņš <[email protected]>\n"
 "Language-Team: Latvian <[email protected]>\n"
@@ -710,7 +710,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Šeit var izmainīt skata režīmu."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/mr/kompare.po 
new/kompare-19.08.0/po/mr/kompare.po
--- old/kompare-19.04.3/po/mr/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/mr/kompare.po        2019-08-09 02:38:29.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2013-03-28 14:37+0530\n"
 "Last-Translator: Chetan Khona <[email protected]>\n"
 "Language-Team: Marathi <[email protected]>\n"
@@ -665,7 +665,7 @@
 msgid "Here you can change the options for the view."
 msgstr ""
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/nb/kompare.po 
new/kompare-19.08.0/po/nb/kompare.po
--- old/kompare-19.04.3/po/nb/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/nb/kompare.po        2019-08-09 02:38:30.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2013-04-08 21:44+0200\n"
 "Last-Translator: Bjørn Steensrud <[email protected]>\n"
 "Language-Team: Norwegian Bokmål <[email protected]>\n"
@@ -698,7 +698,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Her kan du endre valgene for visningen."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/nds/kompare.po 
new/kompare-19.08.0/po/nds/kompare.po
--- old/kompare-19.04.3/po/nds/kompare.po       2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/nds/kompare.po       2019-08-09 02:38:31.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2011-09-05 22:49+0200\n"
 "Last-Translator: Manfred Wiese <[email protected]>\n"
 "Language-Team: Low Saxon <[email protected]>\n"
@@ -704,7 +704,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Hier kannst Du de Optschonen för de Ansicht ännern."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/nl/kompare.po 
new/kompare-19.08.0/po/nl/kompare.po
--- old/kompare-19.04.3/po/nl/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/nl/kompare.po        2019-08-09 02:38:33.000000000 
+0200
@@ -20,7 +20,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-10-11 11:27+0100\n"
 "Last-Translator: Freek de Kruijf <[email protected]>\n"
 "Language-Team: Dutch <[email protected]>\n"
@@ -708,7 +708,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Hier kunt u de opties voor het programma-uiterlijk wijzigen."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/nn/kompare.po 
new/kompare-19.08.0/po/nn/kompare.po
--- old/kompare-19.04.3/po/nn/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/nn/kompare.po        2019-08-09 02:38:34.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2019-05-01 11:44+0200\n"
 "Last-Translator: Karl Ove Hufthammer <[email protected]>\n"
 "Language-Team: Norwegian Nynorsk <[email protected]>\n"
@@ -696,7 +696,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Her kan du endra på innstillingane for utsjånad."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/pa/kompare.po 
new/kompare-19.08.0/po/pa/kompare.po
--- old/kompare-19.04.3/po/pa/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/pa/kompare.po        2019-08-09 02:38:35.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2012-07-05 07:33+0530\n"
 "Last-Translator: A S Alam <[email protected]>\n"
 "Language-Team: Punjabi/Panjabi <[email protected]>\n"
@@ -689,7 +689,7 @@
 msgid "Here you can change the options for the view."
 msgstr ""
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/pl/kompare.po 
new/kompare-19.08.0/po/pl/kompare.po
--- old/kompare-19.04.3/po/pl/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/pl/kompare.po        2019-08-09 02:38:37.000000000 
+0200
@@ -1,6 +1,6 @@
 # translation of kompare.po to Polish
 # translation of kompare.po to
-# Version: $Revision: 1542253 $
+# Version: $Revision: 1547323 $
 # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010 Free Software 
Foundation, Inc.
 #
 # Marta Rybczynska <[email protected]>, 2002, 2004, 2005.
@@ -14,7 +14,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-12-09 07:04+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
@@ -712,7 +712,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Tutaj można zmienić opcje widoku."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/pt/kompare.po 
new/kompare-19.08.0/po/pt/kompare.po
--- old/kompare-19.04.3/po/pt/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/pt/kompare.po        2019-08-09 02:38:39.000000000 
+0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-10-11 10:59+0100\n"
 "Last-Translator: José Nuno Pires <[email protected]>\n"
 "Language-Team: pt <[email protected]>\n"
@@ -701,7 +701,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Aqui poderá modificar as opções de visualização."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/pt_BR/kompare.po 
new/kompare-19.08.0/po/pt_BR/kompare.po
--- old/kompare-19.04.3/po/pt_BR/kompare.po     2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/pt_BR/kompare.po     2019-08-09 02:38:40.000000000 
+0200
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2019-02-07 17:53-0200\n"
 "Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\n"
@@ -702,7 +702,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Aqui você pode mudar as opções para a janela."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/ro/kompare.po 
new/kompare-19.08.0/po/ro/kompare.po
--- old/kompare-19.04.3/po/ro/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/ro/kompare.po        2019-08-09 02:38:42.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2012-12-22 11:55+0200\n"
 "Last-Translator: Sergiu Bivol <[email protected]>\n"
 "Language-Team: Romanian <[email protected]>\n"
@@ -680,7 +680,7 @@
 msgid "Here you can change the options for the view."
 msgstr ""
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/ru/kompare.po 
new/kompare-19.08.0/po/ru/kompare.po
--- old/kompare-19.04.3/po/ru/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/ru/kompare.po        2019-08-09 02:38:44.000000000 
+0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2015-04-09 04:38+0300\n"
 "Last-Translator: Alexander Potashev <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
@@ -727,7 +727,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Здесь можно настроить визуальные параметры."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/sk/kompare.po 
new/kompare-19.08.0/po/sk/kompare.po
--- old/kompare-19.04.3/po/sk/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/sk/kompare.po        2019-08-09 02:38:47.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2018-01-03 15:44+0100\n"
 "Last-Translator: Roman Paholik <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
@@ -703,7 +703,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Tu môžete zmeniť voľby pre prehliadanie"
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/sl/kompare.po 
new/kompare-19.08.0/po/sl/kompare.po
--- old/kompare-19.04.3/po/sl/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/sl/kompare.po        2019-08-09 02:38:48.000000000 
+0200
@@ -2,7 +2,7 @@
 # translation of kompare.po to
 # Translation of kompare.po to Slovenian
 # Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-# $Id: kompare.po 1542253 2019-05-20 06:55:29Z scripty $
+# $Id: kompare.po 1547323 2019-07-23 06:23:29Z scripty $
 # $Source$
 #
 # Gregor Rakar <[email protected]>, 2003, 2004, 2005.
@@ -13,7 +13,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2018-01-14 10:54+0100\n"
 "Last-Translator: Andrej Mernik <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
@@ -727,7 +727,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Tukaj lahko spremenite možnosti pogleda."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/sv/kompare.po 
new/kompare-19.08.0/po/sv/kompare.po
--- old/kompare-19.04.3/po/sv/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/sv/kompare.po        2019-08-09 02:38:52.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-10-11 17:43+0100\n"
 "Last-Translator: Stefan Asserhäll <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
@@ -696,7 +696,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Här kan du ändra inställningarna för vyn."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/tr/kompare.po 
new/kompare-19.08.0/po/tr/kompare.po
--- old/kompare-19.04.3/po/tr/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/tr/kompare.po        2019-08-09 02:38:53.000000000 
+0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kdesdk-kde4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2017-06-04 11:31+0000\n"
 "Last-Translator: Mete <[email protected]>\n"
 "Language-Team: Turkish <[email protected]>\n"
@@ -700,7 +700,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Görünüm için tercihleri burada değiştirebilirsiniz."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/ug/kompare.po 
new/kompare-19.08.0/po/ug/kompare.po
--- old/kompare-19.04.3/po/ug/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/ug/kompare.po        2019-08-09 02:38:54.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+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"
@@ -656,7 +656,7 @@
 msgid "Here you can change the options for the view."
 msgstr ""
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/uk/kompare.po 
new/kompare-19.08.0/po/uk/kompare.po
--- old/kompare-19.04.3/po/uk/kompare.po        2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/uk/kompare.po        2019-08-09 02:38:55.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2018-08-07 12:41+0200\n"
 "Last-Translator: Yuri Chornoivan <[email protected]>\n"
 "Language-Team: Ukrainian <[email protected]>\n"
@@ -715,7 +715,7 @@
 msgid "Here you can change the options for the view."
 msgstr "Тут можна змінити параметри вигляду."
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/zh_CN/kompare.po 
new/kompare-19.08.0/po/zh_CN/kompare.po
--- old/kompare-19.04.3/po/zh_CN/kompare.po     2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/zh_CN/kompare.po     2019-08-09 02:38:57.000000000 
+0200
@@ -12,8 +12,8 @@
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
-"PO-Revision-Date: 2019-06-02 13:20\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
+"PO-Revision-Date: 2019-07-18 15:16\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -687,7 +687,7 @@
 msgid "Here you can change the options for the view."
 msgstr "您可以在这里更改视图选项。"
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/po/zh_TW/kompare.po 
new/kompare-19.08.0/po/zh_TW/kompare.po
--- old/kompare-19.04.3/po/zh_TW/kompare.po     2019-07-09 02:14:49.000000000 
+0200
+++ new/kompare-19.08.0/po/zh_TW/kompare.po     2019-08-09 02:39:00.000000000 
+0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kompare\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:41+0200\n"
+"POT-Creation-Date: 2019-07-23 07:29+0200\n"
 "PO-Revision-Date: 2019-01-19 19:40+0800\n"
 "Last-Translator: pan93412 <[email protected]>\n"
 "Language-Team: Chinese <[email protected]>\n"
@@ -683,7 +683,7 @@
 msgid "Here you can change the options for the view."
 msgstr "您可以在此變更外觀的選項。"
 
-#: kompareurldialog.cpp:109
+#: kompareurldialog.cpp:110
 #, kde-format
 msgid ""
 "File used for excluding files cannot be found, please specify another file."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kompare-19.04.3/servicemenus/kompare.desktop 
new/kompare-19.08.0/servicemenus/kompare.desktop
--- old/kompare-19.04.3/servicemenus/kompare.desktop    2019-06-11 
07:36:08.000000000 +0200
+++ new/kompare-19.08.0/servicemenus/kompare.desktop    2019-07-22 
09:45:53.000000000 +0200
@@ -24,6 +24,7 @@
 Name[pl]=Porównaj pliki
 Name[pt]=Comparar os Ficheiros
 Name[pt_BR]=Comparar arquivos
+Name[sk]=Porovnať súbory
 Name[sl]=Primerjaj datoteki
 Name[sv]=Jämför filer
 Name[uk]=Порівняти файли


Reply via email to