Hello community,

here is the log from the commit of package kgamma5 for openSUSE:Factory checked 
in at 2018-10-08 17:36:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kgamma5 (Old)
 and      /work/SRC/openSUSE:Factory/.kgamma5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kgamma5"

Mon Oct  8 17:36:41 2018 rev:50 rq:640293 version:5.14.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kgamma5/kgamma5.changes  2018-09-13 
23:51:05.558419439 +0200
+++ /work/SRC/openSUSE:Factory/.kgamma5.new/kgamma5.changes     2018-10-08 
17:36:53.643135776 +0200
@@ -1,0 +2,26 @@
+Fri Oct  5 10:01:10 UTC 2018 - [email protected]
+
+- Update to 5.14.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.14.0.php
+- No code changes since 5.13.90
+
+-------------------------------------------------------------------
+Sat Sep 15 16:25:28 UTC 2018 - [email protected]
+
+- Add tarball signature and keyring containing keys of release managers
+  Jonathan Riddell and Bhushan Shah
+
+-------------------------------------------------------------------
+Thu Sep 13 17:24:59 UTC 2018 - [email protected]
+
+- Update to 5.13.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.13.90.php
+- Changes since 5.13.5:
+  * QT_MIN_VERSIONS is Qt 5.11 for Plasma 5.14. Agreed at kickoff meeting.  
Set everywhere for clearity and consistency.
+  * Fix compile with strict compile flags
+
+-------------------------------------------------------------------

Old:
----
  kgamma5-5.13.5.tar.xz

New:
----
  kgamma5-5.14.0.tar.xz
  kgamma5-5.14.0.tar.xz.sig
  plasma.keyring

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

Other differences:
------------------
++++++ kgamma5.spec ++++++
--- /var/tmp/diff_new_pack.jSBdOl/_old  2018-10-08 17:36:55.911132889 +0200
+++ /var/tmp/diff_new_pack.jSBdOl/_new  2018-10-08 17:36:55.915132884 +0200
@@ -18,13 +18,17 @@
 
 %bcond_without lang
 Name:           kgamma5
-Version:        5.13.5
+Version:        5.14.0
 Release:        0
 Summary:        Display gamma configuration
 License:        GPL-2.0-or-later
 Group:          Productivity/Graphics/Other
 Url:            http://www.kde.org
-Source:         
http://download.kde.org/stable/plasma/%{version}/kgamma5-%{version}.tar.xz
+Source:         kgamma5-%{version}.tar.xz
+%if %{with lang}
+Source1:        kgamma5-%{version}.tar.xz.sig
+Source2:        plasma.keyring
+%endif
 BuildRequires:  extra-cmake-modules >= 1.0.0
 BuildRequires:  kf5-filesystem
 BuildRequires:  xz

++++++ kgamma5-5.13.5.tar.xz -> kgamma5-5.14.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/CMakeLists.txt 
new/kgamma5-5.14.0/CMakeLists.txt
--- old/kgamma5-5.13.5/CMakeLists.txt   2018-09-04 12:08:29.000000000 +0200
+++ new/kgamma5-5.14.0/CMakeLists.txt   2018-10-05 18:46:16.000000000 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(kgamma)
-set(PROJECT_VERSION "5.13.5")
+set(PROJECT_VERSION "5.14.0")
 
-set(QT_MIN_VERSION "5.9.0")
-set(KF5_MIN_VERSION "5.42.0")
+set(QT_MIN_VERSION "5.11.0")
+set(KF5_MIN_VERSION "5.50.0")
 
 find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/cmake)
@@ -32,6 +32,11 @@
 configure_file(config-kgamma.h.cmake 
${CMAKE_CURRENT_BINARY_DIR}/config-kgamma.h)
 
 include_directories(${CMAKE_CURRENT_BINARY_DIR})
+add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
+add_definitions(-DQT_USE_QSTRINGBUILDER)
+add_definitions(-DQT_NO_CAST_FROM_ASCII)
+add_definitions(-DQT_NO_CAST_TO_ASCII)
+add_definitions(-DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT)
 
 add_subdirectory(kcmkgamma)
 # add_subdirectory(xf86gammacfg)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/kcmkgamma/displaynumber.cpp 
new/kgamma5-5.14.0/kcmkgamma/displaynumber.cpp
--- old/kgamma5-5.13.5/kcmkgamma/displaynumber.cpp      2018-09-04 
12:07:58.000000000 +0200
+++ new/kgamma5-5.14.0/kcmkgamma/displaynumber.cpp      2018-10-05 
18:44:14.000000000 +0200
@@ -45,7 +45,7 @@
 
 void DisplayNumber::setWidth(int digits) {
   QFontMetrics fm(font());
-  QString s("0123456789.+-");
+  QString s(QStringLiteral("0123456789.+-"));
   int width = 0, charWidth=0;
 
   for (int i = 0; i < 11; i++, width = fm.width(s[i]))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/kcmkgamma/gammactrl.h 
new/kgamma5-5.14.0/kcmkgamma/gammactrl.h
--- old/kgamma5-5.13.5/kcmkgamma/gammactrl.h    2018-09-04 12:07:58.000000000 
+0200
+++ new/kgamma5-5.14.0/kcmkgamma/gammactrl.h    2018-10-05 18:44:14.000000000 
+0200
@@ -33,8 +33,8 @@
   public:
     /** construktor */
     explicit GammaCtrl(QWidget *parent=nullptr, XVidExtWrap *xvid=nullptr, int 
channel=0,
-      const QString& mingamma="0.40", const QString& maxgamma="3.50", 
-      const QString& setgamma="1.00");
+      const QString& mingamma=QStringLiteral("0.40"), const QString& 
maxgamma=QStringLiteral("3.50"),
+      const QString& setgamma=QStringLiteral("1.00"));
     /** destruktor */
     ~GammaCtrl() override;
     /** Return the current gamma value with precision prec */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/kcmkgamma/kgamma.cpp 
new/kgamma5-5.14.0/kcmkgamma/kgamma.cpp
--- old/kgamma5-5.13.5/kcmkgamma/kgamma.cpp     2018-09-04 12:07:58.000000000 
+0200
+++ new/kgamma5-5.14.0/kcmkgamma/kgamma.cpp     2018-10-05 18:44:14.000000000 
+0200
@@ -78,9 +78,9 @@
 
       for (int i = 0; i < ScreenCount; i++ ) {
         assign << 0;
-        rgamma << "";
-        ggamma << "";
-        bgamma << "";
+        rgamma << QString();
+        ggamma << QString();
+        bgamma << QString();
 
         // Store the current gamma values
         xv->setScreen(i);
@@ -165,32 +165,32 @@
 
     QLabel *pic1 = new QLabel(stack);
     pic1->setMinimumSize(530, 171);
-    
pic1->setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation,
 "kgamma/pics/greyscale.png")));
+    
pic1->setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation,
 QStringLiteral("kgamma/pics/greyscale.png"))));
     pic1->setAlignment(Qt::AlignCenter);
     stack->insertWidget( 0,pic1 );
 
     QLabel *pic2 = new QLabel(stack);
-    
pic2->setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation,
 "kgamma/pics/rgbscale.png")));
+    
pic2->setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation,
 QStringLiteral("kgamma/pics/rgbscale.png"))));
        pic2->setAlignment(Qt::AlignCenter);
     stack->insertWidget( 1,pic2 );
 
     QLabel *pic3 = new QLabel(stack);
-    
pic3->setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation,
 "kgamma/pics/cmyscale.png")));
+    
pic3->setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation,
 QStringLiteral("kgamma/pics/cmyscale.png"))));
     pic3->setAlignment(Qt::AlignCenter);
     stack->insertWidget( 2,pic3 );
 
     QLabel *pic4 = new QLabel(stack);
-    
pic4->setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation,
 "kgamma/pics/darkgrey.png")));
+    
pic4->setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation,
 QStringLiteral("kgamma/pics/darkgrey.png"))));
     pic4->setAlignment(Qt::AlignCenter);
     stack->insertWidget( 3,pic4 );
 
     QLabel *pic5 = new QLabel(stack);
-    
pic5->setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation,
 "kgamma/pics/midgrey.png")));
+    
pic5->setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation,
 QStringLiteral("kgamma/pics/midgrey.png"))));
     pic5->setAlignment(Qt::AlignCenter);
     stack->insertWidget( 4,pic5 );
 
     QLabel *pic6 = new QLabel(stack);
-    
pic6->setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation,
 "kgamma/pics/lightgrey.png")));
+    
pic6->setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation,
 QStringLiteral("kgamma/pics/lightgrey.png"))));
     pic6->setAlignment(Qt::AlignCenter);
     stack->insertWidget( 5,pic6 );
 
@@ -290,7 +290,7 @@
 /** Restore latest saved gamma values */
 void KGamma::load() {
   if (GammaCorrection) {
-    KConfig *config = new KConfig("kgammarc");
+    KConfig *config = new KConfig(QStringLiteral("kgammarc"));
     KConfigGroup group = config->group("ConfigFile");
 
     // save checkbox status
@@ -299,7 +299,7 @@
 
     // load syncbox status
     group = config->group("SyncBox");
-    if ( group.readEntry("sync") == "yes" ) syncbox->setChecked(true);
+    if ( group.readEntry("sync") == QLatin1String("yes") ) 
syncbox->setChecked(true);
     else syncbox->setChecked(false);
 
     config->sync();
@@ -340,14 +340,14 @@
     }
     xv->setScreen(currentScreen);
 
-    KConfig *config = new KConfig("kgammarc");
+    KConfig *config = new KConfig(QStringLiteral("kgammarc"));
     KConfigGroup group = config->group("SyncBox");
     if ( syncbox->isChecked() ) group.writeEntry("sync", "yes");
     else group.writeEntry("sync", "no");
 
     if ( !xf86cfgbox->isChecked() ) { //write gamma settings to the users 
config
       for (int i = 0; i < ScreenCount; i++) {
-        KConfigGroup screenGroup = config->group( QString("Screen %1").arg(i) 
);
+        KConfigGroup screenGroup = config->group( QStringLiteral("Screen 
%1").arg(i) );
         screenGroup.writeEntry("rgamma", rgamma[i]);
         screenGroup.writeEntry("ggamma", ggamma[i]);
         screenGroup.writeEntry("bgamma", bgamma[i]);
@@ -360,12 +360,12 @@
       x86group.writeEntry("use", "XF86Config");
 
       if ( !(rootProcess->state()==QProcess::Running) ) {
-        QString Arguments = "xf86gammacfg ";
+        QString Arguments = QStringLiteral("xf86gammacfg ");
         for (int i = 0; i < ScreenCount; i++)
-          Arguments += rgamma[assign[i]] + ' ' + ggamma[assign[i]] + ' ' + \
-                       bgamma[assign[i]] + ' ';
-        rootProcess->setProgram(QStandardPaths::findExecutable("kdesu"));
-        rootProcess->setArguments(Arguments.split(' '));
+          Arguments += rgamma[assign[i]] + QLatin1Char(' ') + 
ggamma[assign[i]] + QLatin1Char(' ') + \
+                       bgamma[assign[i]] + QLatin1Char(' ');
+        
rootProcess->setProgram(QStandardPaths::findExecutable(QStringLiteral("kdesu")));
+        rootProcess->setArguments(Arguments.split(QLatin1Char(' ')));
         rootProcess->start();
       }
     }
@@ -380,7 +380,7 @@
   if (GammaCorrection) {
     for (int i = 0; i < ScreenCount; i++) {
       xv->setScreen(i);
-      gctrl->setGamma("1.00");
+      gctrl->setGamma(QStringLiteral("1.00"));
     }
     xv->setScreen(currentScreen);
 
@@ -390,14 +390,14 @@
 }
 
 bool KGamma::loadSettings() {
-  KConfig *config = new KConfig("kgammarc");
+  KConfig *config = new KConfig(QStringLiteral("kgammarc"));
   KConfigGroup grp = config->group("ConfigFile");
   QString ConfigFile( grp.readEntry("use") );
   KConfigGroup syncGroup = config->group("SyncBox");
-  if ( syncGroup.readEntry("sync") == "yes" ) syncbox->setChecked(true);
+  if ( syncGroup.readEntry("sync") == QStringLiteral("yes") ) 
syncbox->setChecked(true);
   delete config;
 
-  if ( ConfigFile == "XF86Config" ) {  // parse XF86Config
+  if ( ConfigFile == QLatin1String("XF86Config") ) {  // parse XF86Config
     bool validGlobalConfig = loadSystemSettings();
     xf86cfgbox->setChecked( validGlobalConfig );
     return( validGlobalConfig );
@@ -408,10 +408,10 @@
 }
 
 bool KGamma::loadUserSettings() {
-  KConfig *config = new KConfig("kgammarc");
+  KConfig *config = new KConfig(QStringLiteral("kgammarc"));
 
   for (int i = 0; i < ScreenCount; i++) {
-    KConfigGroup screenGroup = config->group(QString( "Screen %1" ).arg(i) );
+    KConfigGroup screenGroup = config->group(QStringLiteral( "Screen %1" 
).arg(i) );
     rgamma[i] = screenGroup.readEntry("rgamma");
     ggamma[i] = screenGroup.readEntry("ggamma");
     bgamma[i] = screenGroup.readEntry("bgamma");
@@ -426,7 +426,7 @@
   QList<int> ScreenNr;
   QString Section;
   XF86ConfigPath Path;
-  QFile f( Path.get() );
+  QFile f( QString::fromUtf8(Path.get()) );
   if ( f.open(QIODevice::ReadOnly) ) {
     QTextStream t( &f );
     QString s;
@@ -436,24 +436,24 @@
     // Analyze Screen<->Monitor assignments of multi-head configurations
     while ( !t.atEnd() ) {
       s = (t.readLine()).simplified();
-      QStringList words = s.split(' ');
+      QStringList words = s.split(QLatin1Char(' '));
       if ( !words.empty() ) {
-        if ( words[0] == "Section" && words.size() > 1 ) {
-          if ( (Section = words[1]) == "\"Monitor\"" ) gm = false;
+        if ( words[0] == QLatin1String("Section") && words.size() > 1 ) {
+          if ( (Section = words[1]) == QLatin1String("\"Monitor\"") ) gm = 
false;
         }
-        else if ( words[0] == "EndSection" ) {
-          if ( Section == "\"Monitor\"" && !gm ) {
-            Gamma << "";
+        else if ( words[0] == QLatin1String("EndSection") ) {
+          if ( Section == QLatin1String("\"Monitor\"") && !gm ) {
+            Gamma << QString();
             gm = false;
           }
-          Section = "";
+          Section = QString();
         }
-        else if ( words[0] == "Identifier" && words.size() > 1 ) {
-          if ( Section == "\"Monitor\"" ) Monitor << words[1];
-          else if ( Section == "\"Screen\"" ) Screen << words[1];
+        else if ( words[0] == QLatin1String("Identifier") && words.size() > 1 
) {
+          if ( Section == QLatin1String("\"Monitor\"") ) Monitor << words[1];
+          else if ( Section == QLatin1String("\"Screen\"") ) Screen << 
words[1];
         }
-        else if ( words[0] == "Screen" && words.size() > 1 ) {
-          if ( Section == "\"ServerLayout\"" ) {
+        else if ( words[0] == QLatin1String("Screen") && words.size() > 1 ) {
+          if ( Section == QLatin1String("\"ServerLayout\"") ) {
             bool ok;
             int i = words[1].toInt(&ok);
             if ( ok && words.size() > 2 ) {
@@ -466,12 +466,12 @@
             }
           }
         }
-        else if ( words[0] == "Monitor" && words.size() > 1 ) {
-          if ( Section == "\"Screen\"" )
+        else if ( words[0] == QLatin1String("Monitor") && words.size() > 1 ) {
+          if ( Section == QLatin1String("\"Screen\"") )
             ScreenMonitor << words[1];
         }
-        else if ( words[0] == "Gamma" ) {
-          if ( Section == "\"Monitor\"" ) {
+        else if ( words[0] == QLatin1String("Gamma") ) {
+          if ( Section == QLatin1String("\"Monitor\"") ) {
             Gamma << s;
             gm = true;
           }
@@ -494,9 +494,9 @@
       // Extract gamma values
       if (gm) {
         for ( int i = 0; i < ScreenCount; i++) {
-          rgamma[i] = ggamma[i] = bgamma[i] = "";
+          rgamma[i] = ggamma[i] = bgamma[i] = QString();
 
-          QStringList words = Gamma[assign[i]].split(' ');
+          QStringList words = Gamma[assign[i]].split(QLatin1Char(' '));
           QStringList::ConstIterator it = words.constBegin();
           if ( words.size() < 4 )
             rgamma[i] = ggamma[i] = bgamma[i] = *(++it);   // single gamma 
value
@@ -612,11 +612,11 @@
     if (ok) {
       xv.setGammaLimits(0.4, 3.5);
       float rgamma, ggamma, bgamma;
-      KConfig *config = new KConfig("kgammarc");
+      KConfig *config = new KConfig(QStringLiteral("kgammarc"));
 
       for (int i = 0; i < xv._ScreenCount(); i++) {
         xv.setScreen(i);
-        KConfigGroup screenGroup = config->group( QString("Screen %1").arg(i) 
);
+        KConfigGroup screenGroup = config->group( QStringLiteral("Screen 
%1").arg(i) );
 
         if ((rgamma = screenGroup.readEntry("rgamma").toFloat()))
           xv.setGamma(XVidExtWrap::Red, rgamma);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/ar/kcmkgamma.po 
new/kgamma5-5.14.0/po/ar/kcmkgamma.po
--- old/kgamma5-5.13.5/po/ar/kcmkgamma.po       2018-09-04 12:08:06.000000000 
+0200
+++ new/kgamma5-5.14.0/po/ar/kcmkgamma.po       2018-10-05 18:44:52.000000000 
+0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2008-12-17 12:02+0400\n"
 "Last-Translator: zayed <[email protected]>\n"
 "Language-Team: Arabic <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/ast/kcmkgamma.po 
new/kgamma5-5.14.0/po/ast/kcmkgamma.po
--- old/kgamma5-5.13.5/po/ast/kcmkgamma.po      2018-09-04 12:08:06.000000000 
+0200
+++ new/kgamma5-5.14.0/po/ast/kcmkgamma.po      2018-10-05 18:44:52.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2016-12-19 03:56+0100\n"
 "Last-Translator: enolp <[email protected]>\n"
 "Language-Team: Asturian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/be/kcmkgamma.po 
new/kgamma5-5.14.0/po/be/kcmkgamma.po
--- old/kgamma5-5.13.5/po/be/kcmkgamma.po       2018-09-04 12:08:06.000000000 
+0200
+++ new/kgamma5-5.14.0/po/be/kcmkgamma.po       2018-10-05 18:44:52.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-06-22 20:54+0300\n"
 "Last-Translator: Darafei Praliaskouski <[email protected]>\n"
 "Language-Team: Belarusian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/bg/kcmkgamma.po 
new/kgamma5-5.14.0/po/bg/kcmkgamma.po
--- old/kgamma5-5.13.5/po/bg/kcmkgamma.po       2018-09-04 12:08:07.000000000 
+0200
+++ new/kgamma5-5.14.0/po/bg/kcmkgamma.po       2018-10-05 18:44:54.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-07-23 09:00+0000\n"
 "Last-Translator: Zlatko Popov <[email protected]>\n"
 "Language-Team: Bulgarian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/br/kcmkgamma.po 
new/kgamma5-5.14.0/po/br/kcmkgamma.po
--- old/kgamma5-5.13.5/po/br/kcmkgamma.po       2018-09-04 12:08:07.000000000 
+0200
+++ new/kgamma5-5.14.0/po/br/kcmkgamma.po       2018-10-05 18:44:54.000000000 
+0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: kdegraphics/kgamma.pot\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2004-09-20 15:44+0200\n"
 "Last-Translator: Thierry Vignaud <[email protected]>\n"
 "Language-Team: br <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/bs/kcmkgamma.po 
new/kgamma5-5.14.0/po/bs/kcmkgamma.po
--- old/kgamma5-5.13.5/po/bs/kcmkgamma.po       2018-09-04 12:08:07.000000000 
+0200
+++ new/kgamma5-5.14.0/po/bs/kcmkgamma.po       2018-10-05 18:44:56.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdegraphics\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2012-09-03 13:51+0000\n"
 "Last-Translator: Samir Ribić <Unknown>\n"
 "Language-Team: Bosnian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/ca/kcmkgamma.po 
new/kgamma5-5.14.0/po/ca/kcmkgamma.po
--- old/kgamma5-5.13.5/po/ca/kcmkgamma.po       2018-09-04 12:08:07.000000000 
+0200
+++ new/kgamma5-5.14.0/po/ca/kcmkgamma.po       2018-10-05 18:44:57.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2018-06-28 21:24+0100\n"
 "Last-Translator: Antoni Bella Pérez <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/ca@valencia/kcmkgamma.po 
new/kgamma5-5.14.0/po/ca@valencia/kcmkgamma.po
--- old/kgamma5-5.13.5/po/ca@valencia/kcmkgamma.po      2018-09-04 
12:08:07.000000000 +0200
+++ new/kgamma5-5.14.0/po/ca@valencia/kcmkgamma.po      2018-10-05 
18:44:56.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2018-06-28 21:24+0100\n"
 "Last-Translator: Antoni Bella Pérez <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/cs/kcmkgamma.po 
new/kgamma5-5.14.0/po/cs/kcmkgamma.po
--- old/kgamma5-5.13.5/po/cs/kcmkgamma.po       2018-09-04 12:08:07.000000000 
+0200
+++ new/kgamma5-5.14.0/po/cs/kcmkgamma.po       2018-10-05 18:44:57.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2013-02-06 11:25+0100\n"
 "Last-Translator: Tomáš Chvátal <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/cy/kcmkgamma.po 
new/kgamma5-5.14.0/po/cy/kcmkgamma.po
--- old/kgamma5-5.13.5/po/cy/kcmkgamma.po       2018-09-04 12:08:08.000000000 
+0200
+++ new/kgamma5-5.14.0/po/cy/kcmkgamma.po       2018-10-05 18:44:59.000000000 
+0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: ../cy/messages//kdegraphics/kgamma.po\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2004-09-20 15:44+0200\n"
 "Last-Translator: Thierry Vignaud <[email protected]>\n"
 "Language-Team: cy <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/da/kcmkgamma.po 
new/kgamma5-5.14.0/po/da/kcmkgamma.po
--- old/kgamma5-5.13.5/po/da/kcmkgamma.po       2018-09-04 12:08:08.000000000 
+0200
+++ new/kgamma5-5.14.0/po/da/kcmkgamma.po       2018-10-05 18:44:58.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2008-01-15 22:45+0100\n"
 "Last-Translator: Keld Simonsen <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/de/kcmkgamma.po 
new/kgamma5-5.14.0/po/de/kcmkgamma.po
--- old/kgamma5-5.13.5/po/de/kcmkgamma.po       2018-09-04 12:08:08.000000000 
+0200
+++ new/kgamma5-5.14.0/po/de/kcmkgamma.po       2018-10-05 18:44:59.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2012-05-11 11:33+0200\n"
 "Last-Translator: Frederik Schwarzer <[email protected]>\n"
 "Language-Team: German <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/el/kcmkgamma.po 
new/kgamma5-5.14.0/po/el/kcmkgamma.po
--- old/kgamma5-5.13.5/po/el/kcmkgamma.po       2018-09-04 12:08:08.000000000 
+0200
+++ new/kgamma5-5.14.0/po/el/kcmkgamma.po       2018-10-05 18:44:59.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-03-08 22:52+0200\n"
 "Last-Translator: Spiros Georgaras <[email protected]>\n"
 "Language-Team: Greek <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/en_GB/kcmkgamma.po 
new/kgamma5-5.14.0/po/en_GB/kcmkgamma.po
--- old/kgamma5-5.13.5/po/en_GB/kcmkgamma.po    2018-09-04 12:08:08.000000000 
+0200
+++ new/kgamma5-5.14.0/po/en_GB/kcmkgamma.po    2018-10-05 18:45:00.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2008-04-13 10:20+0100\n"
 "Last-Translator: Malcolm Hunter <[email protected]>\n"
 "Language-Team: British English <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/eo/kcmkgamma.po 
new/kgamma5-5.14.0/po/eo/kcmkgamma.po
--- old/kgamma5-5.13.5/po/eo/kcmkgamma.po       2018-09-04 12:08:08.000000000 
+0200
+++ new/kgamma5-5.14.0/po/eo/kcmkgamma.po       2018-10-05 18:45:00.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-11-30 20:35+0100\n"
 "Last-Translator: Pierre-Marie Pédrot <[email protected]>\n"
 "Language-Team: esperanto <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/es/kcmkgamma.po 
new/kgamma5-5.14.0/po/es/kcmkgamma.po
--- old/kgamma5-5.13.5/po/es/kcmkgamma.po       2018-09-04 12:08:08.000000000 
+0200
+++ new/kgamma5-5.14.0/po/es/kcmkgamma.po       2018-10-05 18:45:00.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2013-03-17 14:08+0100\n"
 "Last-Translator: Eloy Cuadra <[email protected]>\n"
 "Language-Team: Spanish <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/et/kcmkgamma.po 
new/kgamma5-5.14.0/po/et/kcmkgamma.po
--- old/kgamma5-5.13.5/po/et/kcmkgamma.po       2018-09-04 12:08:08.000000000 
+0200
+++ new/kgamma5-5.14.0/po/et/kcmkgamma.po       2018-10-05 18:45:01.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-10-10 20:39+0300\n"
 "Last-Translator: Marek Laane <[email protected]>\n"
 "Language-Team: Estonian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/eu/kcmkgamma.po 
new/kgamma5-5.14.0/po/eu/kcmkgamma.po
--- old/kgamma5-5.13.5/po/eu/kcmkgamma.po       2018-09-04 12:08:08.000000000 
+0200
+++ new/kgamma5-5.14.0/po/eu/kcmkgamma.po       2018-10-05 18:45:02.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2009-05-12 17:58+0200\n"
 "Last-Translator: Iñaki Larrañaga Murgoitio <[email protected]>\n"
 "Language-Team: Basque <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/fa/kcmkgamma.po 
new/kgamma5-5.14.0/po/fa/kcmkgamma.po
--- old/kgamma5-5.13.5/po/fa/kcmkgamma.po       2018-09-04 12:08:09.000000000 
+0200
+++ new/kgamma5-5.14.0/po/fa/kcmkgamma.po       2018-10-05 18:45:02.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-06-24 11:42+0330\n"
 "Last-Translator: Nazanin Kazemi <[email protected]>\n"
 "Language-Team: Persian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/fi/kcmkgamma.po 
new/kgamma5-5.14.0/po/fi/kcmkgamma.po
--- old/kgamma5-5.13.5/po/fi/kcmkgamma.po       2018-09-04 12:08:09.000000000 
+0200
+++ new/kgamma5-5.14.0/po/fi/kcmkgamma.po       2018-10-05 18:45:03.000000000 
+0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2015-08-07 00:10+0200\n"
 "Last-Translator: Lasse Liehu <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/fr/kcmkgamma.po 
new/kgamma5-5.14.0/po/fr/kcmkgamma.po
--- old/kgamma5-5.13.5/po/fr/kcmkgamma.po       2018-09-04 12:08:09.000000000 
+0200
+++ new/kgamma5-5.14.0/po/fr/kcmkgamma.po       2018-10-05 18:45:03.000000000 
+0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2013-06-26 11:17+0200\n"
 "Last-Translator: xavier <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/fy/kcmkgamma.po 
new/kgamma5-5.14.0/po/fy/kcmkgamma.po
--- old/kgamma5-5.13.5/po/fy/kcmkgamma.po       2018-09-04 12:08:09.000000000 
+0200
+++ new/kgamma5-5.14.0/po/fy/kcmkgamma.po       2018-10-05 18:45:03.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2004-04-15 01:26+0200\n"
 "Last-Translator: Rinse de Vries <[email protected]>\n"
 "Language-Team: Nederlands <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/ga/kcmkgamma.po 
new/kgamma5-5.14.0/po/ga/kcmkgamma.po
--- old/kgamma5-5.13.5/po/ga/kcmkgamma.po       2018-09-04 12:08:09.000000000 
+0200
+++ new/kgamma5-5.14.0/po/ga/kcmkgamma.po       2018-10-05 18:45:04.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kdegraphics/kgamma.po\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+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"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/gl/kcmkgamma.po 
new/kgamma5-5.14.0/po/gl/kcmkgamma.po
--- old/kgamma5-5.13.5/po/gl/kcmkgamma.po       2018-09-04 12:08:10.000000000 
+0200
+++ new/kgamma5-5.14.0/po/gl/kcmkgamma.po       2018-10-05 18:45:05.000000000 
+0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2018-03-31 11:01+0100\n"
 "Last-Translator: Adrian Chaves <[email protected]>\n"
 "Language-Team: Galician <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/he/kcmkgamma.po 
new/kgamma5-5.14.0/po/he/kcmkgamma.po
--- old/kgamma5-5.13.5/po/he/kcmkgamma.po       2018-09-04 12:08:10.000000000 
+0200
+++ new/kgamma5-5.14.0/po/he/kcmkgamma.po       2018-10-05 18:45:06.000000000 
+0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2017-05-16 06:53-0400\n"
 "Last-Translator: Copied by Zanata <[email protected]>\n"
 "Language-Team: Hebrew <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/hi/kcmkgamma.po 
new/kgamma5-5.14.0/po/hi/kcmkgamma.po
--- old/kgamma5-5.13.5/po/hi/kcmkgamma.po       2018-09-04 12:08:10.000000000 
+0200
+++ new/kgamma5-5.14.0/po/hi/kcmkgamma.po       2018-10-05 18:45:06.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-12-27 16:41+0530\n"
 "Last-Translator: Ravishankar Shrivastava <[email protected]>\n"
 "Language-Team: Hindi <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/hne/kcmkgamma.po 
new/kgamma5-5.14.0/po/hne/kcmkgamma.po
--- old/kgamma5-5.13.5/po/hne/kcmkgamma.po      2018-09-04 12:08:10.000000000 
+0200
+++ new/kgamma5-5.14.0/po/hne/kcmkgamma.po      2018-10-05 18:45:06.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2009-02-26 15:24+0530\n"
 "Last-Translator: Ravishankar Shrivastava <[email protected]>\n"
 "Language-Team: Hindi <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/hr/kcmkgamma.po 
new/kgamma5-5.14.0/po/hr/kcmkgamma.po
--- old/kgamma5-5.13.5/po/hr/kcmkgamma.po       2018-09-04 12:08:10.000000000 
+0200
+++ new/kgamma5-5.14.0/po/hr/kcmkgamma.po       2018-10-05 18:45:07.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kgamma 0\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2010-01-09 14:07+0100\n"
 "Last-Translator: Andrej Dundović <[email protected]>\n"
 "Language-Team: Croatian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/hu/kcmkgamma.po 
new/kgamma5-5.14.0/po/hu/kcmkgamma.po
--- old/kgamma5-5.13.5/po/hu/kcmkgamma.po       2018-09-04 12:08:10.000000000 
+0200
+++ new/kgamma5-5.14.0/po/hu/kcmkgamma.po       2018-10-05 18:45:08.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: KDE 4.0\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2008-04-01 11:11+0100\n"
 "Last-Translator: Tamas Szanto <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/ia/kcmkgamma.po 
new/kgamma5-5.14.0/po/ia/kcmkgamma.po
--- old/kgamma5-5.13.5/po/ia/kcmkgamma.po       2018-09-04 12:08:11.000000000 
+0200
+++ new/kgamma5-5.14.0/po/ia/kcmkgamma.po       2018-10-05 18:45:08.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2013-02-07 10:22+0100\n"
 "Last-Translator: Giovanni Sora <[email protected]>\n"
 "Language-Team: Interlingua <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/id/kcmkgamma.po 
new/kgamma5-5.14.0/po/id/kcmkgamma.po
--- old/kgamma5-5.13.5/po/id/kcmkgamma.po       2018-09-04 12:08:11.000000000 
+0200
+++ new/kgamma5-5.14.0/po/id/kcmkgamma.po       2018-10-05 18:45:09.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2018-06-11 06:43+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/is/kcmkgamma.po 
new/kgamma5-5.14.0/po/is/kcmkgamma.po
--- old/kgamma5-5.13.5/po/is/kcmkgamma.po       2018-09-04 12:08:11.000000000 
+0200
+++ new/kgamma5-5.14.0/po/is/kcmkgamma.po       2018-10-05 18:45:09.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-06-20 20:32+0000\n"
 "Last-Translator: Sveinn í Felli <[email protected]>\n"
 "Language-Team: íslenska <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/it/kcmkgamma.po 
new/kgamma5-5.14.0/po/it/kcmkgamma.po
--- old/kgamma5-5.13.5/po/it/kcmkgamma.po       2018-09-04 12:08:11.000000000 
+0200
+++ new/kgamma5-5.14.0/po/it/kcmkgamma.po       2018-10-05 18:45:10.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kcmgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-12-26 23:18+0100\n"
 "Last-Translator: Nicola Ruggero <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/ja/kcmkgamma.po 
new/kgamma5-5.14.0/po/ja/kcmkgamma.po
--- old/kgamma5-5.13.5/po/ja/kcmkgamma.po       2018-09-04 12:08:12.000000000 
+0200
+++ new/kgamma5-5.14.0/po/ja/kcmkgamma.po       2018-10-05 18:45:10.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-07-08 17:00+0900\n"
 "Last-Translator: Yukiko Bando <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/kk/kcmkgamma.po 
new/kgamma5-5.14.0/po/kk/kcmkgamma.po
--- old/kgamma5-5.13.5/po/kk/kcmkgamma.po       2018-09-04 12:08:12.000000000 
+0200
+++ new/kgamma5-5.14.0/po/kk/kcmkgamma.po       2018-10-05 18:45:11.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2008-02-01 15:07+0600\n"
 "Last-Translator: Sairan Kikkarin <[email protected]>\n"
 "Language-Team: Kazakh\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/km/kcmkgamma.po 
new/kgamma5-5.14.0/po/km/kcmkgamma.po
--- old/kgamma5-5.13.5/po/km/kcmkgamma.po       2018-09-04 12:08:12.000000000 
+0200
+++ new/kgamma5-5.14.0/po/km/kcmkgamma.po       2018-10-05 18:45:11.000000000 
+0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2008-01-24 10:12+0700\n"
 "Last-Translator: Khoem Sokhem <[email protected]>\n"
 "Language-Team: Khmer <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/ko/kcmkgamma.po 
new/kgamma5-5.14.0/po/ko/kcmkgamma.po
--- old/kgamma5-5.13.5/po/ko/kcmkgamma.po       2018-09-04 12:08:13.000000000 
+0200
+++ new/kgamma5-5.14.0/po/ko/kcmkgamma.po       2018-10-05 18:45:12.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-09-08 10:50+0900\n"
 "Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/lt/kcmkgamma.po 
new/kgamma5-5.14.0/po/lt/kcmkgamma.po
--- old/kgamma5-5.13.5/po/lt/kcmkgamma.po       2018-09-04 12:08:13.000000000 
+0200
+++ new/kgamma5-5.14.0/po/lt/kcmkgamma.po       2018-10-05 18:45:13.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2015-12-29 20:05+0200\n"
 "Last-Translator: Mindaugas Baranauskas <[email protected]>\n"
 "Language-Team: lt <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/lv/kcmkgamma.po 
new/kgamma5-5.14.0/po/lv/kcmkgamma.po
--- old/kgamma5-5.13.5/po/lv/kcmkgamma.po       2018-09-04 12:08:13.000000000 
+0200
+++ new/kgamma5-5.14.0/po/lv/kcmkgamma.po       2018-10-05 18:45:14.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-12-17 22:28+0200\n"
 "Last-Translator: Viesturs Zarins <[email protected]>\n"
 "Language-Team: Latvian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/mk/kcmkgamma.po 
new/kgamma5-5.14.0/po/mk/kcmkgamma.po
--- old/kgamma5-5.13.5/po/mk/kcmkgamma.po       2018-09-04 12:08:13.000000000 
+0200
+++ new/kgamma5-5.14.0/po/mk/kcmkgamma.po       2018-10-05 18:45:14.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-11-30 19:03+0100\n"
 "Last-Translator: Bozidar Proevski <[email protected]>\n"
 "Language-Team: Macedonian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/mr/kcmkgamma.po 
new/kgamma5-5.14.0/po/mr/kcmkgamma.po
--- old/kgamma5-5.13.5/po/mr/kcmkgamma.po       2018-09-04 12:08:13.000000000 
+0200
+++ new/kgamma5-5.14.0/po/mr/kcmkgamma.po       2018-10-05 18:45:15.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2013-02-07 12:00+0530\n"
 "Last-Translator: Chetan Khona <[email protected]>\n"
 "Language-Team: American English <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/ms/kcmkgamma.po 
new/kgamma5-5.14.0/po/ms/kcmkgamma.po
--- old/kgamma5-5.13.5/po/ms/kcmkgamma.po       2018-09-04 12:08:13.000000000 
+0200
+++ new/kgamma5-5.14.0/po/ms/kcmkgamma.po       2018-10-05 18:45:16.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: Mimos\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2005-11-05 07:13+0800\n"
 "Last-Translator: MIMOS <[email protected]>\n"
 "Language-Team: Malay <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/nb/kcmkgamma.po 
new/kgamma5-5.14.0/po/nb/kcmkgamma.po
--- old/kgamma5-5.13.5/po/nb/kcmkgamma.po       2018-09-04 12:08:14.000000000 
+0200
+++ new/kgamma5-5.14.0/po/nb/kcmkgamma.po       2018-10-05 18:45:16.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2008-02-06 20:45+0100\n"
 "Last-Translator: MagicPO 0.3 (automated)\n"
 "Language-Team: Norwegian Bokmål <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/nds/kcmkgamma.po 
new/kgamma5-5.14.0/po/nds/kcmkgamma.po
--- old/kgamma5-5.13.5/po/nds/kcmkgamma.po      2018-09-04 12:08:14.000000000 
+0200
+++ new/kgamma5-5.14.0/po/nds/kcmkgamma.po      2018-10-05 18:45:16.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-11-07 21:07+0100\n"
 "Last-Translator: Manfred Wiese <[email protected]>\n"
 "Language-Team: Low Saxon <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/ne/kcmkgamma.po 
new/kgamma5-5.14.0/po/ne/kcmkgamma.po
--- old/kgamma5-5.13.5/po/ne/kcmkgamma.po       2018-09-04 12:08:14.000000000 
+0200
+++ new/kgamma5-5.14.0/po/ne/kcmkgamma.po       2018-10-05 18:45:17.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-08-20 12:28+0545\n"
 "Last-Translator: Nabin Gautam <[email protected]>\n"
 "Language-Team: Nepali <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/nl/kcmkgamma.po 
new/kgamma5-5.14.0/po/nl/kcmkgamma.po
--- old/kgamma5-5.13.5/po/nl/kcmkgamma.po       2018-09-04 12:08:14.000000000 
+0200
+++ new/kgamma5-5.14.0/po/nl/kcmkgamma.po       2018-10-05 18:45:18.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2018-08-08 16:22+0100\n"
 "Last-Translator: Freek de Kruijf <[email protected]>\n"
 "Language-Team: Dutch <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/nn/kcmkgamma.po 
new/kgamma5-5.14.0/po/nn/kcmkgamma.po
--- old/kgamma5-5.13.5/po/nn/kcmkgamma.po       2018-09-04 12:08:15.000000000 
+0200
+++ new/kgamma5-5.14.0/po/nn/kcmkgamma.po       2018-10-05 18:45:18.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2008-08-03 19:23+0200\n"
 "Last-Translator: Karl Ove Hufthammer <[email protected]>\n"
 "Language-Team: Norwegian Nynorsk <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/oc/kcmkgamma.po 
new/kgamma5-5.14.0/po/oc/kcmkgamma.po
--- old/kgamma5-5.13.5/po/oc/kcmkgamma.po       2018-09-04 12:08:15.000000000 
+0200
+++ new/kgamma5-5.14.0/po/oc/kcmkgamma.po       2018-10-05 18:45:18.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2008-08-05 22:27+0200\n"
 "Last-Translator: Yannig Marchegay (Kokoyaya) <[email protected]>\n"
 "Language-Team: Occitan (lengadocian) <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/pa/kcmkgamma.po 
new/kgamma5-5.14.0/po/pa/kcmkgamma.po
--- old/kgamma5-5.13.5/po/pa/kcmkgamma.po       2018-09-04 12:08:15.000000000 
+0200
+++ new/kgamma5-5.14.0/po/pa/kcmkgamma.po       2018-10-05 18:45:20.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-06-20 19:05+0530\n"
 "Last-Translator: A S Alam <[email protected]>\n"
 "Language-Team: Punjabi <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/pl/kcmkgamma.po 
new/kgamma5-5.14.0/po/pl/kcmkgamma.po
--- old/kgamma5-5.13.5/po/pl/kcmkgamma.po       2018-09-04 12:08:16.000000000 
+0200
+++ new/kgamma5-5.14.0/po/pl/kcmkgamma.po       2018-10-05 18:45:20.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2003-11-24 21:55+0100\n"
 "Last-Translator: Michal Rudolf <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/pt/kcmkgamma.po 
new/kgamma5-5.14.0/po/pt/kcmkgamma.po
--- old/kgamma5-5.13.5/po/pt/kcmkgamma.po       2018-09-04 12:08:16.000000000 
+0200
+++ new/kgamma5-5.14.0/po/pt/kcmkgamma.po       2018-10-05 18:45:20.000000000 
+0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-06-22 02:40+0100\n"
 "Last-Translator: Pedro Morais <[email protected]>\n"
 "Language-Team: pt <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/pt_BR/kcmkgamma.po 
new/kgamma5-5.14.0/po/pt_BR/kcmkgamma.po
--- old/kgamma5-5.13.5/po/pt_BR/kcmkgamma.po    2018-09-04 12:08:16.000000000 
+0200
+++ new/kgamma5-5.14.0/po/pt_BR/kcmkgamma.po    2018-10-05 18:45:22.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2009-01-03 01:23-0200\n"
 "Last-Translator: André Marcelo Alvarenga <[email protected]>\n"
 "Language-Team: Brazilian Portuguese <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/ro/kcmkgamma.po 
new/kgamma5-5.14.0/po/ro/kcmkgamma.po
--- old/kgamma5-5.13.5/po/ro/kcmkgamma.po       2018-09-04 12:08:16.000000000 
+0200
+++ new/kgamma5-5.14.0/po/ro/kcmkgamma.po       2018-10-05 18:45:22.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2008-12-29 22:17+0200\n"
 "Last-Translator: Sergiu Bivol <[email protected]>\n"
 "Language-Team: Romanian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/ru/kcmkgamma.po 
new/kgamma5-5.14.0/po/ru/kcmkgamma.po
--- old/kgamma5-5.13.5/po/ru/kcmkgamma.po       2018-09-04 12:08:16.000000000 
+0200
+++ new/kgamma5-5.14.0/po/ru/kcmkgamma.po       2018-10-05 18:45:22.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2010-12-24 23:16+0300\n"
 "Last-Translator: Alexander Potashev <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/se/kcmkgamma.po 
new/kgamma5-5.14.0/po/se/kcmkgamma.po
--- old/kgamma5-5.13.5/po/se/kcmkgamma.po       2018-09-04 12:08:16.000000000 
+0200
+++ new/kgamma5-5.14.0/po/se/kcmkgamma.po       2018-10-05 18:45:26.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2004-12-10 10:14+0100\n"
 "Last-Translator: Børre Gaup <[email protected]>\n"
 "Language-Team: Northern Sami <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/si/kcmkgamma.po 
new/kgamma5-5.14.0/po/si/kcmkgamma.po
--- old/kgamma5-5.13.5/po/si/kcmkgamma.po       2018-09-04 12:08:16.000000000 
+0200
+++ new/kgamma5-5.14.0/po/si/kcmkgamma.po       2018-10-05 18:45:26.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2011-09-04 13:02+0530\n"
 "Last-Translator: Danishka Navin <[email protected]>\n"
 "Language-Team: Sinhala <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/sk/kcmkgamma.po 
new/kgamma5-5.14.0/po/sk/kcmkgamma.po
--- old/kgamma5-5.13.5/po/sk/kcmkgamma.po       2018-09-04 12:08:16.000000000 
+0200
+++ new/kgamma5-5.14.0/po/sk/kcmkgamma.po       2018-10-05 18:45:27.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2009-11-21 11:31+0100\n"
 "Last-Translator: Michal Sulek <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/sl/kcmkgamma.po 
new/kgamma5-5.14.0/po/sl/kcmkgamma.po
--- old/kgamma5-5.13.5/po/sl/kcmkgamma.po       2018-09-04 12:08:17.000000000 
+0200
+++ new/kgamma5-5.14.0/po/sl/kcmkgamma.po       2018-10-05 18:45:27.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2013-07-22 11:08+0200\n"
 "Last-Translator: Andrej Mernik <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/sq/kcmkgamma.po 
new/kgamma5-5.14.0/po/sq/kcmkgamma.po
--- old/kgamma5-5.13.5/po/sq/kcmkgamma.po       2018-09-04 12:08:17.000000000 
+0200
+++ new/kgamma5-5.14.0/po/sq/kcmkgamma.po       2018-10-05 18:45:27.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdegraphics\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2010-02-06 14:26+0000\n"
 "Last-Translator: Vilson Gjeci <[email protected]>\n"
 "Language-Team: Albanian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/sr/kcmkgamma.po 
new/kgamma5-5.14.0/po/sr/kcmkgamma.po
--- old/kgamma5-5.13.5/po/sr/kcmkgamma.po       2018-09-04 12:08:17.000000000 
+0200
+++ new/kgamma5-5.14.0/po/sr/kcmkgamma.po       2018-10-05 18:45:28.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2015-08-01 14:25+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/sr@ijekavian/kcmkgamma.po 
new/kgamma5-5.14.0/po/sr@ijekavian/kcmkgamma.po
--- old/kgamma5-5.13.5/po/sr@ijekavian/kcmkgamma.po     2018-09-04 
12:08:17.000000000 +0200
+++ new/kgamma5-5.14.0/po/sr@ijekavian/kcmkgamma.po     2018-10-05 
18:45:28.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2015-08-01 14:25+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/sr@ijekavianlatin/kcmkgamma.po 
new/kgamma5-5.14.0/po/sr@ijekavianlatin/kcmkgamma.po
--- old/kgamma5-5.13.5/po/sr@ijekavianlatin/kcmkgamma.po        2018-09-04 
12:08:17.000000000 +0200
+++ new/kgamma5-5.14.0/po/sr@ijekavianlatin/kcmkgamma.po        2018-10-05 
18:45:29.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2015-08-01 14:25+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/sr@latin/kcmkgamma.po 
new/kgamma5-5.14.0/po/sr@latin/kcmkgamma.po
--- old/kgamma5-5.13.5/po/sr@latin/kcmkgamma.po 2018-09-04 12:08:18.000000000 
+0200
+++ new/kgamma5-5.14.0/po/sr@latin/kcmkgamma.po 2018-10-05 18:45:29.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2015-08-01 14:25+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/sv/kcmkgamma.po 
new/kgamma5-5.14.0/po/sv/kcmkgamma.po
--- old/kgamma5-5.13.5/po/sv/kcmkgamma.po       2018-09-04 12:08:18.000000000 
+0200
+++ new/kgamma5-5.14.0/po/sv/kcmkgamma.po       2018-10-05 18:45:29.000000000 
+0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-04-01 08:20+0200\n"
 "Last-Translator: Stefan Asserhäll <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/ta/kcmkgamma.po 
new/kgamma5-5.14.0/po/ta/kcmkgamma.po
--- old/kgamma5-5.13.5/po/ta/kcmkgamma.po       2018-09-04 12:08:18.000000000 
+0200
+++ new/kgamma5-5.14.0/po/ta/kcmkgamma.po       2018-10-05 18:45:30.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2004-08-14 12:34+0530\n"
 "Last-Translator: I. Felix <[email protected]>\n"
 "Language-Team:  <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/tg/kcmkgamma.po 
new/kgamma5-5.14.0/po/tg/kcmkgamma.po
--- old/kgamma5-5.13.5/po/tg/kcmkgamma.po       2018-09-04 12:08:18.000000000 
+0200
+++ new/kgamma5-5.14.0/po/tg/kcmkgamma.po       2018-10-05 18:45:31.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2004-08-04 15:07+0500\n"
 "Last-Translator: Victor Ibragimov <[email protected]>\n"
 "Language-Team:  Tajik\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/th/kcmkgamma.po 
new/kgamma5-5.14.0/po/th/kcmkgamma.po
--- old/kgamma5-5.13.5/po/th/kcmkgamma.po       2018-09-04 12:08:19.000000000 
+0200
+++ new/kgamma5-5.14.0/po/th/kcmkgamma.po       2018-10-05 18:45:31.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2008-02-04 15:27+0700\n"
 "Last-Translator: Thanomsub Noppaburana <[email protected]>\n"
 "Language-Team: Thai <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/tr/kcmkgamma.po 
new/kgamma5-5.14.0/po/tr/kcmkgamma.po
--- old/kgamma5-5.13.5/po/tr/kcmkgamma.po       2018-09-04 12:08:19.000000000 
+0200
+++ new/kgamma5-5.14.0/po/tr/kcmkgamma.po       2018-10-05 18:45:31.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kdegraphics-kde4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2017-04-13 15:00+0100\n"
 "Last-Translator: Volkan Gezer <[email protected]>\n"
 "Language-Team: Turkish <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/ug/kcmkgamma.po 
new/kgamma5-5.14.0/po/ug/kcmkgamma.po
--- old/kgamma5-5.13.5/po/ug/kcmkgamma.po       2018-09-04 12:08:19.000000000 
+0200
+++ new/kgamma5-5.14.0/po/ug/kcmkgamma.po       2018-10-05 18:45:32.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+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"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/uk/kcmkgamma.po 
new/kgamma5-5.14.0/po/uk/kcmkgamma.po
--- old/kgamma5-5.13.5/po/uk/kcmkgamma.po       2018-09-04 12:08:19.000000000 
+0200
+++ new/kgamma5-5.14.0/po/uk/kcmkgamma.po       2018-10-05 18:45:33.000000000 
+0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: kcmkgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2009-12-13 10:23+0200\n"
 "Last-Translator: Yuri Chornoivan <[email protected]>\n"
 "Language-Team: Ukrainian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/zh_CN/kcmkgamma.po 
new/kgamma5-5.14.0/po/zh_CN/kcmkgamma.po
--- old/kgamma5-5.13.5/po/zh_CN/kcmkgamma.po    2018-09-04 12:08:20.000000000 
+0200
+++ new/kgamma5-5.14.0/po/zh_CN/kcmkgamma.po    2018-10-05 18:45:35.000000000 
+0200
@@ -6,9 +6,9 @@
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
-"PO-Revision-Date: 2018-08-30 13:14\n"
-"Last-Translator: guoyunhebrave <[email protected]>\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
+"PO-Revision-Date: 2018-09-28 19:51\n"
+"Last-Translator: guoyunhe <[email protected]>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/zh_HK/kcmkgamma.po 
new/kgamma5-5.14.0/po/zh_HK/kcmkgamma.po
--- old/kgamma5-5.13.5/po/zh_HK/kcmkgamma.po    2018-09-04 12:08:20.000000000 
+0200
+++ new/kgamma5-5.14.0/po/zh_HK/kcmkgamma.po    2018-10-05 18:45:35.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2006-01-09 22:32+0800\n"
 "Last-Translator: Walter Cheuk <[email protected]>\n"
 "Language-Team: Chinese (Hong Kong) <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kgamma5-5.13.5/po/zh_TW/kcmkgamma.po 
new/kgamma5-5.14.0/po/zh_TW/kcmkgamma.po
--- old/kgamma5-5.13.5/po/zh_TW/kcmkgamma.po    2018-09-04 12:08:20.000000000 
+0200
+++ new/kgamma5-5.14.0/po/zh_TW/kcmkgamma.po    2018-10-05 18:45:36.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kgamma\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-17 03:42+0200\n"
+"POT-Creation-Date: 2018-09-14 06:47+0200\n"
 "PO-Revision-Date: 2007-05-21 17:52+0800\n"
 "Last-Translator: Franklin Weng <franklin at goodhorse dot idv dot tw>\n"
 "Language-Team: Chinese Traditional <[email protected]>\n"


Reply via email to