Hello community,

here is the log from the commit of package frameworkintegration for 
openSUSE:Factory checked in at 2015-10-19 22:21:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/frameworkintegration (Old)
 and      /work/SRC/openSUSE:Factory/.frameworkintegration.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "frameworkintegration"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/frameworkintegration/frameworkintegration.changes    
    2015-09-24 07:09:29.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.frameworkintegration.new/frameworkintegration.changes
   2015-10-19 22:21:34.000000000 +0200
@@ -1,0 +2,15 @@
+Mon Oct  5 17:36:58 UTC 2015 - [email protected]
+
+- Update to 5.15.0
+  * Fix random file dialog not showing up problem. (kde#350758)
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.15.0.php
+- Drop 0001-Fix-random-file-dialog-not-showing-up-problem.patch, upstreamed
+
+-------------------------------------------------------------------
+Fri Oct  2 19:22:20 UTC 2015 - [email protected]
+
+- Added 0001-Fix-random-file-dialog-not-showing-up-problem.patch
+  (kde#350758)
+
+-------------------------------------------------------------------

Old:
----
  frameworkintegration-5.14.0.tar.xz

New:
----
  frameworkintegration-5.15.0.tar.xz

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

Other differences:
------------------
++++++ frameworkintegration.spec ++++++
--- /var/tmp/diff_new_pack.UrTwYq/_old  2015-10-19 22:21:35.000000000 +0200
+++ /var/tmp/diff_new_pack.UrTwYq/_new  2015-10-19 22:21:35.000000000 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5Style5
-%define _tar_path 5.14
+%define _tar_path 5.15
 Name:           frameworkintegration
-Version:        5.14.0
+Version:        5.15.0
 Release:        0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++++++ frameworkintegration-5.14.0.tar.xz -> frameworkintegration-5.15.0.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/frameworkintegration-5.14.0/CMakeLists.txt 
new/frameworkintegration-5.15.0/CMakeLists.txt
--- old/frameworkintegration-5.14.0/CMakeLists.txt      2015-09-05 
10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/CMakeLists.txt      2015-10-05 
09:51:29.000000000 +0200
@@ -3,7 +3,7 @@
 project(FrameworkIntegration)
 
 include(FeatureSummary)
-find_package(ECM 5.14.0  NO_MODULE)
+find_package(ECM 5.15.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -23,8 +23,8 @@
 set(REQUIRED_QT_VERSION 5.3.0)
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets DBus)
 
-set(KF5_VERSION "5.14.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.14.0") # handled by release scripts
+set(KF5_VERSION "5.15.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.15.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX FRAMEWORKINTEGRATION
                   VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/frameworkintegration_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/autotests/kfiledialog_unittest.cpp 
new/frameworkintegration-5.15.0/autotests/kfiledialog_unittest.cpp
--- old/frameworkintegration-5.14.0/autotests/kfiledialog_unittest.cpp  
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/autotests/kfiledialog_unittest.cpp  
2015-10-05 09:51:29.000000000 +0200
@@ -34,6 +34,7 @@
 private Q_SLOTS:
     void initTestCase()
     {
+        qputenv("KDE_FORK_SLAVES", "yes");
     }
 
     void cleanupTestCase()
@@ -92,6 +93,8 @@
 
             KFileWidget *fw = findFileWidget();
             QVERIFY(fw);
+            // real show() is delayed to next event.
+            QTest::qWaitForWindowExposed(fw->window());
             KDirOperator *op = fw->dirOperator();
             QCOMPARE(fileViewToString(op->viewMode()), 
fileViewToString(KFile::Tree));
             fw->setViewMode(KFile::Simple);
@@ -120,6 +123,8 @@
 
             KFileWidget *fw = findFileWidget();
             QVERIFY(fw);
+            // real show() is delayed to next event.
+            QTest::qWaitForWindowExposed(fw->window());
             QCOMPARE(fw->isVisible(), true);
             fw->slotCancel();
         }
@@ -133,6 +138,8 @@
 
             KFileWidget *fw = findFileWidget();
             QVERIFY(fw);
+            // real show() is delayed to next event.
+            QTest::qWaitForWindowExposed(fw->window());
             QCOMPARE(fw->isVisible(), true);
             fw->slotCancel();
         }
@@ -147,6 +154,8 @@
 
             KFileWidget *fw = findFileWidget();
             QVERIFY(fw);
+            // real show() is delayed to next event.
+            QTest::qWaitForWindowExposed(fw->window());
             QCOMPARE(fw->isVisible(), true);
             fw->slotCancel();
         }
@@ -160,6 +169,8 @@
 
             KFileWidget *fw = findFileWidget();
             QVERIFY(fw);
+            // real show() is delayed to next event.
+            QTest::qWaitForWindowExposed(fw->window());
             QCOMPARE(fw->isVisible(), true);
             fw->slotCancel();
         }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/autotests/kfiledialogqml_unittest.cpp 
new/frameworkintegration-5.15.0/autotests/kfiledialogqml_unittest.cpp
--- old/frameworkintegration-5.14.0/autotests/kfiledialogqml_unittest.cpp       
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/autotests/kfiledialogqml_unittest.cpp       
2015-10-05 09:51:29.000000000 +0200
@@ -31,6 +31,7 @@
 private Q_SLOTS:
     void initTestCase()
     {
+        qputenv("KDE_FORK_SLAVES", "yes");
     }
 
     void cleanupTestCase()
@@ -48,6 +49,8 @@
 
             fw = findFileWidget();
             QVERIFY(fw);
+            // real show() is delayed to next event.
+            QTest::qWaitForWindowExposed(fw->window());
             QCOMPARE(fw->isVisible(), true);
             fw->slotCancel();
         }
@@ -65,6 +68,8 @@
 
             fw = findFileWidget();
             QVERIFY(fw);
+            // real show() is delayed to next event.
+            QTest::qWaitForWindowExposed(fw->window());
             QCOMPARE(fw->isVisible(), true);
             fw->slotCancel();
         }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/plasma_workspace.notifyrc 
new/frameworkintegration-5.15.0/plasma_workspace.notifyrc
--- old/frameworkintegration-5.14.0/plasma_workspace.notifyrc   2015-09-05 
10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/plasma_workspace.notifyrc   2015-10-05 
09:51:29.000000000 +0200
@@ -7,6 +7,7 @@
 Comment[cs]=Pracovní plocha Plasma
 Comment[da]=Plasma arbejdsområde
 Comment[de]=KDE-Plasma-Arbeitsbereich
+Comment[el]=Plasma Workspace
 Comment[en_GB]=Plasma Workspace
 Comment[es]=Espacio de trabajo Plasma
 Comment[fi]=Plasma-työtila
@@ -47,6 +48,7 @@
 Name[cs]=Koš: vyprázdněn
 Name[da]=Affald: Tømt
 Name[de]=Papierkorb: geleert
+Name[el]=Κάδος απορριμάτων: Άδειος
 Name[en_GB]=Wastebin: Emptied
 Name[es]=Papelera: vacía
 Name[fi]=Roskakori: Tyhjennetty
@@ -85,6 +87,7 @@
 Comment[cs]=Koš byl vyprázdněn
 Comment[da]=Affaldet er blevet tømt
 Comment[de]=Der Papierkorb ist geleert worden
+Comment[el]=Ο κάδος απορριμάτων έχει αδειάσει
 Comment[en_GB]=The wastebin has been emptied
 Comment[es]=Se ha vaciado la papelera
 Comment[fi]=Roskakori on tyhjennetty
@@ -127,6 +130,7 @@
 Name[cs]=Doplňování textu: rotace
 Name[da]=Tekstfuldførelse: Rotation
 Name[de]=Textvervollständigung: Drehung
+Name[el]=Textcompletion: Rotation
 Name[en_GB]=Textcompletion: Rotation
 Name[es]=Terminación de texto: rotación
 Name[fi]=Tekstin täydennys: kiertävä
@@ -164,6 +168,7 @@
 Comment[cs]=Bylo dosaženo konce seznamu shod
 Comment[da]=Afslutningen på listen over matches er blevet nået
 Comment[de]=Das Ende der Liste der Übereinstimmungen ist erreicht worden
+Comment[el]=Βρίσκεστε στο τέλος της λίστας με τα ταιριάσματα
 Comment[en_GB]=The end of the list of matches has been reached
 Comment[es]=Se ha alcanzado el final de la lista de coincidencias
 Comment[fi]=Sopivien sanojen luettelo on käyty läpi
@@ -205,6 +210,7 @@
 Name[cs]=Doplňování textu: žádná shoda
 Name[da]=Tekstfuldførelse: Ingen match
 Name[de]=Textvervollständigung: keine Übereinstimmung
+Name[el]=Textcompletion: No Match
 Name[en_GB]=Textcompletion: No Match
 Name[es]=Terminación de texto: ninguna coincidencia
 Name[fi]=Tekstin täydennys: Ei sopivia
@@ -242,6 +248,7 @@
 Comment[cs]=Nebyla nalezena žádná shoda
 Comment[da]=Ingen matchende fuldstændiggørelse blev fundet
 Comment[de]=Es ist keine mögliche Vervollständigung gefunden worden
+Comment[el]=Δεν βρέθηκε ταίριασμα
 Comment[en_GB]=No matching completion was found
 Comment[es]=No se ha encontrado ninguna coincidencia de terminación
 Comment[fi]=Sopivaa täydennystä ei löytynyt
@@ -283,6 +290,7 @@
 Name[cs]=Doplňování textu: částčná shoda 
 Name[da]=Tekstfuldførelse: Delvis match
 Name[de]=Textvervollständigung: teilweise Übereinstimmung
+Name[el]=Textcompletion: Partial Match
 Name[en_GB]=Textcompletion: Partial Match
 Name[es]=Terminación de texto: coincidencia parcial
 Name[fi]=Tekstin täydennys: Osittainen osuma
@@ -320,6 +328,7 @@
 Comment[cs]=Existuje více než jedna shoda
 Comment[da]=Der er mere end et mulig match
 Comment[de]=Es gibt mehr als eine mögliche Übereinstimmung
+Comment[el]=Υπάρχουν περισσότερα από ένα πιθανά ταιριάσματα
 Comment[en_GB]=There is more than one possible match
 Comment[es]=Existe más de una posible coincidencia
 Comment[fi]=Löytyi useampi kuin yksi mahdollinen osuma
@@ -361,6 +370,7 @@
 Name[cs]=Kritická chyba
 Name[da]=Fatal fejl
 Name[de]=Schwerer Fehler
+Name[el]=Μοιραίο σφάλμα
 Name[en_GB]=Fatal Error
 Name[es]=Error fatal
 Name[fi]=Vakava virhe
@@ -398,6 +408,7 @@
 Comment[cs]=Nastala závažná chyba, v důsledku které byl program ukončen
 Comment[da]=Der var en alvorlig fejl som forårsagede at programmet afsluttede
 Comment[de]=Es ist ein schwerer Fehler aufgetreten, woraufhin das Programm 
beendet wurde.
+Comment[el]=Υπήρξε ένα σοβαρό σφάλμα που προκάλεσε την έξοδο του προγράμματος
 Comment[en_GB]=There was a serious error causing the program to exit
 Comment[es]=Ha ocurrido un error serio que ha causado la salida del programa
 Comment[fi]=Vakava virhe aiheutti ohjelman päättymisen
@@ -440,6 +451,7 @@
 Name[cs]=Upozornění
 Name[da]=Bekendtgørelse
 Name[de]=Benachrichtigung
+Name[el]=Ειδοποίηση
 Name[en_GB]=Notification
 Name[es]=Notificación
 Name[fi]=Ilmoitus
@@ -478,6 +490,7 @@
 Comment[cs]=Něco zvláštního se stalo s programem
 Comment[da]=Noget specielt skete i programmet
 Comment[de]=Im Programm ist ein besonderes Ereignis eingetreten
+Comment[el]=Κάτι ιδιαίτερο συνέβη στο πρόγραμμα
 Comment[en_GB]=Something special happened in the program
 Comment[es]=Ha ocurrido algo especial en el programa
 Comment[fi]=Ohjelmassa tapahtui jotakin erikoista
@@ -519,6 +532,7 @@
 Name[cs]=Varování
 Name[da]=Advarsel
 Name[de]=Warnung
+Name[el]=Προειδοποίηση
 Name[en_GB]=Warning
 Name[es]=Advertencia
 Name[fi]=Varoitus
@@ -557,6 +571,7 @@
 Comment[cs]=V programu nastala chyba, která může způsobit problémy
 Comment[da]=Der var en fejl i program som kan volde problemer
 Comment[de]=Im Programm ist ein Fehler aufgetreten, der Probleme verursachen 
könnte
+Comment[el]=Υπήρξε σφάλμα στο πρόγραμμα που μπορεί να προκαλέσει προβλήματα
 Comment[en_GB]=There was an error in the program which may cause problems
 Comment[es]=Ha ocurrido un error en el programa que puede causar problemas
 Comment[fi]=Ohjelmassa oli virhe, joka voi aiheuttaa ongelmia
@@ -598,6 +613,7 @@
 Name[cs]=Katastrofa
 Name[da]=Katastrofe
 Name[de]=Katastrophe
+Name[el]=Καταστροφή
 Name[en_GB]=Catastrophe
 Name[es]=Catástrofe
 Name[fi]=Katastrofi
@@ -635,6 +651,7 @@
 Comment[cs]=Nastala velmi závažná chyba, která má za následek minimálně 
ukončení programu
 Comment[da]=En meget alvorlig fejl opstod, som mindst forårsagede at 
programmet afsluttede
 Comment[de]=Ein sehr schwerer Fehler ist aufgetreten, der wenigstens das 
Programm zum Beenden bringt
+Comment[el]=Συνέβη ένα πολύ σοβαρό σφάλμα, που προκάλεσε την έξοδο του 
προγράμματος
 Comment[en_GB]=A very serious error occurred, at least causing the program to 
exit
 Comment[es]=Ha ocurrido un error muy serio que ha causado, al menos, la salida 
del programa
 Comment[fi]=Tapahtui erittäin vakava virhe, joka aiheutti ainakin ohjelman 
päättymisen
@@ -677,6 +694,7 @@
 Name[cs]=Přihlášení
 Name[da]=Login
 Name[de]=Anmeldung
+Name[el]=Σύνδεση
 Name[en_GB]=Login
 Name[es]=Inicio de sesión
 Name[fi]=Kirjautuminen
@@ -715,6 +733,7 @@
 Comment[cs]=Spouští se nové sezení
 Comment[da]=En ny session er ved at starte
 Comment[de]=Eine neue Sitzung wurde gestartet
+Comment[el]=Μια νέα συνεδρία αρχίζει
 Comment[en_GB]=A new session is starting
 Comment[es]=Está iniciando una nueva sesión
 Comment[fi]=Uusi istunto alkaa
@@ -756,6 +775,7 @@
 Name[cs]=Odhlášení
 Name[da]=Log ud
 Name[de]=Abmeldung
+Name[el]=Αποσύνδεση
 Name[en_GB]=Logout
 Name[es]=Cierre de sesión
 Name[fi]=Uloskirjautuminen
@@ -794,6 +814,7 @@
 Comment[cs]=Sezení se ukončuje
 Comment[da]=Sessionen er ved at afslutte
 Comment[de]=Die Sitzung wird beendet
+Comment[el]=Γίνεται αποσύνδεση συνεδρίας
 Comment[en_GB]=Session is exiting
 Comment[es]=Está saliendo de la sesión
 Comment[fi]=Istunto päättyy
@@ -836,6 +857,7 @@
 Name[cs]=Odhlášení přerušeno
 Name[da]=Log ud annulleret
 Name[de]=Abmeldung abgebrochen
+Name[el]=Η αποσύνδεση ακυρώθηκε
 Name[en_GB]=Logout Cancelled
 Name[es]=Cierre de sesión cancelado
 Name[fi]=Uloskirjautuminen peruttu
@@ -874,6 +896,7 @@
 Comment[cs]=Odhlášení z Plazmy bylo zrušeno
 Comment[da]=Plasma log ud blev annulleret
 Comment[de]=Der Abmeldevorgang aus Plasma ist abgebrochen worden
+Comment[el]=Η αποσύνδεση από το Plasma ακυρώθηκε
 Comment[en_GB]=Plasma logout was cancelled
 Comment[es]=Se ha cancelado el cierre de sesión de Plasma
 Comment[fi]=Plasmasta uloskirjautuminen on peruttu
@@ -915,6 +938,7 @@
 Name[cs]=Chyba tisku
 Name[da]=Udskriftsfejl
 Name[de]=Druckfehler
+Name[el]=Σφάλμα εκτύπωσης
 Name[en_GB]=Print Error
 Name[es]=Error de impresión
 Name[fi]=Tulostusvirhe
@@ -953,6 +977,7 @@
 Comment[cs]=Nastala chyba v tisku
 Comment[da]=En udskriftsfejl opstod
 Comment[de]=Ein Fehler beim Drucken ist aufgetreten
+Comment[el]=Εμφανίστηκε σφάλμα εκτύπωσης
 Comment[en_GB]=A print error has occurred
 Comment[es]=Ha ocurrido un error de impresión
 Comment[fi]=Tapahtui tulostusvirhe
@@ -994,6 +1019,7 @@
 Name[cs]=Informační zpráva
 Name[da]=Informationsbesked
 Name[de]=Informationsmeldung
+Name[el]=Ενημερωτικό μήνυμα
 Name[en_GB]=Information Message
 Name[es]=Mensaje de información
 Name[fi]=Ilmoitus
@@ -1032,6 +1058,7 @@
 Comment[cs]=Je zobrazována informační zpráva
 Comment[da]=En informationsbesked vises
 Comment[de]=Eine Informationsmeldung wird angezeigt
+Comment[el]=Εμφανίζεται ενημερωτικό μήνυμα
 Comment[en_GB]=An information message is being shown
 Comment[es]=Se está mostrando un mensaje de información
 Comment[fi]=Ilmoitus näytetään
@@ -1073,6 +1100,7 @@
 Name[cs]=Varovná zpráva
 Name[da]=Advarselsbesked
 Name[de]=Warnmeldung
+Name[el]=Προειδοποιητικό μήνυμα
 Name[en_GB]=Warning Message
 Name[es]=Mensaje de advertencia
 Name[fi]=Varoitus
@@ -1111,6 +1139,7 @@
 Comment[cs]=Je zobrazována výstražná zpráva
 Comment[da]=En advarselsbesked vises
 Comment[de]=Eine Warnmeldung wird angezeigt
+Comment[el]=Εμφανίζεται μήνυμα προειδοποίησης
 Comment[en_GB]=A warning message is being shown
 Comment[es]=Se está mostrando un mensaje de advertencia
 Comment[fi]=Varoitus näytetään
@@ -1152,6 +1181,7 @@
 Name[cs]=Kritická zpráva
 Name[da]=Kritisk besked
 Name[de]=Kritische Meldung
+Name[el]=Κρίσιμο μήνυμα
 Name[en_GB]=Critical Message
 Name[es]=Mensaje crítico
 Name[fi]=Hälytys
@@ -1190,6 +1220,7 @@
 Comment[cs]=Je zobrazována kritická zpráva
 Comment[da]=En kritisk besked vises
 Comment[de]=Eine kritische Fehlermeldung wird angezeigt
+Comment[el]=Εμφανίζεται κρίσιμο μήνυμα
 Comment[en_GB]=A critical message is being shown
 Comment[es]=Se está mostrando un mensaje crítico
 Comment[fi]=Hälytys näytetään
@@ -1231,6 +1262,7 @@
 Name[cs]=Dotaz
 Name[da]=Spørgsmål
 Name[de]=Frage
+Name[el]=Ερώτηση
 Name[en_GB]=Question
 Name[es]=Pregunta
 Name[fi]=Kysymys
@@ -1269,6 +1301,7 @@
 Comment[cs]=Je položen dotaz
 Comment[da]=Et spørgsmål stilles
 Comment[de]=Eine Frage wird gestellt
+Comment[el]=Γίνεται ερώτηση
 Comment[en_GB]=A question is being asked
 Comment[es]=Se está haciendo una pregunta
 Comment[fi]=Esitetään kysymys
@@ -1311,6 +1344,7 @@
 Name[cs]=Pípnutí
 Name[da]=Bip
 Name[de]=Signalton
+Name[el]=Beep
 Name[en_GB]=Beep
 Name[es]=Pitido
 Name[fi]=Äänimerkki
@@ -1349,6 +1383,7 @@
 Comment[cs]=Zvonek
 Comment[da]=Lad klokke lyde
 Comment[de]=Signalton
+Comment[el]=Ήχος κουδουνιού
 Comment[en_GB]=Sound bell
 Comment[es]=Campana de sonido
 Comment[fi]=Äänimerkki
@@ -1389,11 +1424,13 @@
 Name[cs]=Widget byl smazán
 Name[da]=Widget slettet
 Name[de]=Miniprogramm wurde gelöscht
+Name[el]=Widget deleted
 Name[en_GB]=Widget deleted
 Name[es]=Elemento gráfico borrado
 Name[fi]=Sovelma poistettu
 Name[gl]=Eliminouse o trebello
 Name[he]=וידג'ט נמחק
+Name[hu]=Widget törölve
 Name[it]=Oggetto eliminato
 Name[ko]=위젯 삭제됨
 Name[nb]=Skjermelement slettet
@@ -1421,11 +1458,13 @@
 Comment[cs]=Widget byl smazán
 Comment[da]=En widget er blevet slettet
 Comment[de]=Ein Miniprogramm wurde gelöscht
+Comment[el]=Ένα γραφικό συστατικό έχει διαγραφεί
 Comment[en_GB]=A widget has been deleted
 Comment[es]=Se ha borrado un elemento gráfico
 Comment[fi]=Sovelma on poistettu
 Comment[gl]=Eliminouse un trebello.
 Comment[he]=וידג'ט נמחק
+Comment[hu]=Egy widgetet töröltek
 Comment[it]=Un oggetto è stato eliminato
 Comment[ko]=위젯이 삭제됨
 Comment[nb]=Et skjermelement er slettet
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/ar/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/ar/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/ar/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/ar/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-06-24 09:35+0300\n"
 "Last-Translator: Safa Alfulaij <[email protected]>\n"
 "Language-Team: Arabic <[email protected]>\n"
@@ -17,11 +17,11 @@
 "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "يفتح..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "يحفظ..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/ast/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/ast/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/ast/frameworkintegration5.po     
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/ast/frameworkintegration5.po     
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2015-07-11 16:23+0100\n"
 "Last-Translator: enolp <[email protected]>\n"
 "Language-Team: Asturian <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 2.0\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Abriendo..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Guardando..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/bs/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/bs/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/bs/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/bs/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kde5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2015-02-24 19:53+0100\n"
 "Last-Translator: Samir Ribić <[email protected]>\n"
 "Language-Team: Bosnian\n"
@@ -19,11 +19,11 @@
 "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Otvaram..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Snimam..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/ca/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/ca/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/ca/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/ca/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: frameworkintegration5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2015-05-10 19:43+0100\n"
 "Last-Translator: Antoni Bella Pérez <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -22,12 +22,12 @@
 "X-Generator: Lokalize 2.0\n"
 
 # Nota: «title:window»
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Obre..."
 
 # Nota: «title:window»
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Desa..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/cs/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/cs/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/cs/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/cs/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-12-05 13:22+0100\n"
 "Last-Translator: Vít Pelčák <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Otevírám..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Ukládám..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/da/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/da/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/da/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/da/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-12-29 20:00+0100\n"
 "Last-Translator: Martin Schlander <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Åbner..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Gemmer..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/de/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/de/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/de/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/de/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-15 18:42+0100\n"
 "Last-Translator: Burkhard Lück <[email protected]>\n"
 "Language-Team: German <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Öffnen ..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Speichern ..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/en_GB/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/en_GB/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/en_GB/frameworkintegration5.po   
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/en_GB/frameworkintegration5.po   
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-13 21:54+0000\n"
 "Last-Translator: Steve Allewell <[email protected]>\n"
 "Language-Team: British English <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Opening..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Saving..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/es/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/es/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/es/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/es/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-13 20:18+0100\n"
 "Last-Translator: Eloy Cuadra <[email protected]>\n"
 "Language-Team: Spanish <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Abriendo..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Guardando..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/fi/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/fi/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/fi/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/fi/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-17 16:38+0200\n"
 "Last-Translator: Lasse Liehu <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Avataan…"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Tallennetaan…"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/gd/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/gd/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/gd/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/gd/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: frameworkintegration5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-12-07 14:59+0100\n"
 "Last-Translator: GunChleoc <[email protected]>\n"
 "Language-Team: Fòram na Gàidhlig\n"
@@ -19,11 +19,11 @@
 "X-Generator: Virtaal 0.7.1\n"
 "X-Project-Style: kde\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "'Ga fhosgladh..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "'Ga shàbhaladh..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/gl/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/gl/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/gl/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/gl/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2015-03-13 08:39+0100\n"
 "Last-Translator: Adrián Chaves Fernández <[email protected]>\n"
 "Language-Team: Galician <[email protected]>\n"
@@ -18,11 +18,11 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Estase a abrir..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Estase a gardar..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/hu/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/hu/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/hu/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/hu/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-04-22 14:51+0200\n"
 "Last-Translator: Kristóf Kiszel <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Megnyitás…"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Mentés…"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/ia/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/ia/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/ia/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/ia/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-04-22 13:55+0200\n"
 "Last-Translator: G.Sora <[email protected]>\n"
 "Language-Team: Interlingua <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Aperiente  ..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Salveguardante..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/it/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/it/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/it/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/it/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: frameworkintegration5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-19 20:43+0100\n"
 "Last-Translator: Vincenzo Reale <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Apertura in corso..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Salvataggio in corso..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/ja/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/ja/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/ja/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/ja/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: frameworkintegration5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-05-01 01:02-0700\n"
 "Last-Translator: Japanese KDE translation team <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
@@ -14,11 +14,11 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr ""
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/ko/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/ko/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/ko/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/ko/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2015-01-02 03:23+0900\n"
 "Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "여는 중..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "저장 중..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/lt/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/lt/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/lt/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/lt/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: trunk-kf 5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2015-01-26 13:24+0200\n"
 "Last-Translator: Liudas Ališauskas <[email protected]>\n"
 "Language-Team: Lithuanian <[email protected]>\n"
@@ -20,11 +20,11 @@
 "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Atveriama..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Įrašoma..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/nb/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/nb/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/nb/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/nb/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -1,11 +1,9 @@
-# Translation of frameworkintegration5 to Norwegian Bokmål
-#
 # Bjørn Steensrud <[email protected]>, 2014, 2015.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2015-02-24 20:41+0100\n"
 "Last-Translator: Bjørn Steensrud <[email protected]>\n"
 "Language-Team: Norwegian Bokmål <[email protected]>\n"
@@ -19,11 +17,11 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Åpner …"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Lagrer …"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/nds/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/nds/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/nds/frameworkintegration5.po     
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/nds/frameworkintegration5.po     
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-04-22 22:24+0200\n"
 "Last-Translator: Sönke Dibbern <[email protected]>\n"
 "Language-Team: Low Saxon <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Bi to opmaken..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Bi to sekern..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/nl/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/nl/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/nl/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/nl/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-13 12:36+0100\n"
 "Last-Translator: Freek de Kruijf <[email protected]>\n"
 "Language-Team: Dutch <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Bezig met openen..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Bezig met opslaan..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/nn/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/nn/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/nn/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/nn/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2015-06-01 20:12+0100\n"
 "Last-Translator: Karl Ove Hufthammer <[email protected]>\n"
 "Language-Team: Norwegian Nynorsk <[email protected]>\n"
@@ -19,11 +19,11 @@
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Opnar …"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Lagrar …"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/pa/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/pa/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/pa/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/pa/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-12-23 18:20-0600\n"
 "Last-Translator: A S Alam <[email protected]>\n"
 "Language-Team: Punjabi/Panjabi <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "...ਖੋਲ੍ਹਿਆ ਜਾਂਦਾ ਹੈ"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/pl/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/pl/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/pl/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/pl/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-15 17:31+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
@@ -18,11 +18,11 @@
 "|| n%100>=20) ? 1 : 2);\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Otwieranie..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Zapisywanie..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/pt/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/pt/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/pt/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/pt/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: frameworkintegration5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-13 11:39+0000\n"
 "Last-Translator: José Nuno Coelho Pires <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\n"
@@ -12,11 +12,11 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "A abrir..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "A gravar..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/pt_BR/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/pt_BR/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/pt_BR/frameworkintegration5.po   
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/pt_BR/frameworkintegration5.po   
2015-10-05 09:51:29.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: frameworkintegration5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-15 08:22-0200\n"
 "Last-Translator: André Marcelo Alvarenga <[email protected]>\n"
 "Language-Team: Brazilian Portuguese <[email protected]>\n"
@@ -18,11 +18,11 @@
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Abrindo..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Salvando..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/ro/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/ro/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/ro/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/ro/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-05-02 12:07+0300\n"
 "Last-Translator: Sergiu Bivol <[email protected]>\n"
 "Language-Team: Romanian <[email protected]>\n"
@@ -18,11 +18,11 @@
 "20)) ? 1 : 2;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Se deschide..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Se salvează..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/ru/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/ru/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/ru/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/ru/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-12-07 01:08+0400\n"
 "Last-Translator: Alexander Potashev <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
@@ -19,12 +19,12 @@
 "X-Generator: Lokalize 1.5\n"
 
 # BUGME: "Выбор файла для открытия"? --aspotashev
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Открытие"
 
 # BUGME: "Выбор файла для сохранения"? --aspotashev
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Сохранение"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/sk/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/sk/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/sk/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/sk/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: frameworkintegration5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-13 15:09+0100\n"
 "Last-Translator: Roman Paholik <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
@@ -15,11 +15,11 @@
 "X-Generator: Lokalize 1.5\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Otvára sa..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Ukladám..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/sl/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/sl/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/sl/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/sl/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-30 12:12+0100\n"
 "Last-Translator: Andrej Mernik <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
@@ -18,11 +18,11 @@
 "%100==4 ? 3 : 0);\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Odpiranje ..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Shranjevanje ..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/sr/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/sr/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/sr/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/sr/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: frameworkintegration5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-15 18:31+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -18,11 +18,11 @@
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Отварам..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Уписујем..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/sr@ijekavian/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/sr@ijekavian/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/sr@ijekavian/frameworkintegration5.po    
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/sr@ijekavian/frameworkintegration5.po    
2015-10-05 09:51:29.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: frameworkintegration5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-15 18:31+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -18,11 +18,11 @@
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Отварам..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Уписујем..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/sr@ijekavianlatin/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/sr@ijekavianlatin/frameworkintegration5.po
--- 
old/frameworkintegration-5.14.0/po/sr@ijekavianlatin/frameworkintegration5.po   
    2015-09-05 10:48:41.000000000 +0200
+++ 
new/frameworkintegration-5.15.0/po/sr@ijekavianlatin/frameworkintegration5.po   
    2015-10-05 09:51:29.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: frameworkintegration5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-15 18:31+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -18,11 +18,11 @@
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Otvaram..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Upisujem..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/sr@latin/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/sr@latin/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/sr@latin/frameworkintegration5.po        
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/sr@latin/frameworkintegration5.po        
2015-10-05 09:51:29.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: frameworkintegration5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-15 18:31+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -18,11 +18,11 @@
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Otvaram..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Upisujem..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/sv/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/sv/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/sv/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/sv/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-12-30 09:12+0100\n"
 "Last-Translator: Stefan Asserhäll <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Öppnar..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Sparar..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/tr/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/tr/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/tr/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/tr/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-14 00:25+0200\n"
 "Last-Translator: Kaan Ozdincer <[email protected]>\n"
 "Language-Team: Turkish <[email protected]>\n"
@@ -18,11 +18,11 @@
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Generator: Lokalize 1.4\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Açılıyor..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Kaydediliyor..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/uk/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/uk/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/uk/frameworkintegration5.po      
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/uk/frameworkintegration5.po      
2015-10-05 09:51:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: frameworkintegration5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-11-13 17:35+0200\n"
 "Last-Translator: Yuri Chornoivan <[email protected]>\n"
 "Language-Team: Ukrainian <[email protected]>\n"
@@ -20,11 +20,11 @@
 "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "Відкриття…"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "Збереження…"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/zh_CN/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/zh_CN/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/zh_CN/frameworkintegration5.po   
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/zh_CN/frameworkintegration5.po   
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2014-12-04 02:15-0500\n"
 "Last-Translator: Weng Xuetian <[email protected]>\n"
 "Language-Team: Chinese Simplified <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "正在打开..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "正在保存..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/po/zh_TW/frameworkintegration5.po 
new/frameworkintegration-5.15.0/po/zh_TW/frameworkintegration5.po
--- old/frameworkintegration-5.14.0/po/zh_TW/frameworkintegration5.po   
2015-09-05 10:48:41.000000000 +0200
+++ new/frameworkintegration-5.15.0/po/zh_TW/frameworkintegration5.po   
2015-10-05 09:51:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-08-25 10:43+0000\n"
+"POT-Creation-Date: 2015-10-01 08:25+0000\n"
 "PO-Revision-Date: 2015-02-15 20:36+0800\n"
 "Last-Translator: Franklin Weng <[email protected]>\n"
 "Language-Team: Chinese Traditional <[email protected]>\n"
@@ -17,11 +17,11 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Opening..."
 msgstr "開啟中..."
 
-#: platformtheme/kdeplatformfiledialoghelper.cpp:241
+#: platformtheme/kdeplatformfiledialoghelper.cpp:240
 msgid "Saving..."
 msgstr "儲存中..."
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/src/platformtheme/kdeplatformfiledialogbase.cpp 
new/frameworkintegration-5.15.0/src/platformtheme/kdeplatformfiledialogbase.cpp
--- 
old/frameworkintegration-5.14.0/src/platformtheme/kdeplatformfiledialogbase.cpp 
    2015-09-05 10:48:41.000000000 +0200
+++ 
new/frameworkintegration-5.15.0/src/platformtheme/kdeplatformfiledialogbase.cpp 
    2015-10-05 09:51:29.000000000 +0200
@@ -22,6 +22,20 @@
 
 KDEPlatformFileDialogBase::KDEPlatformFileDialogBase()
 {
+    m_timer.setInterval(0);
+    m_timer.setSingleShot(true);
+    connect(&m_timer, &QTimer::timeout, this, 
&KDEPlatformFileDialogBase::show);
+}
+
+void KDEPlatformFileDialogBase::delayedShow()
+{
+    m_timer.start();
+}
+
+void KDEPlatformFileDialogBase::discardDelayedShow()
+{
+    // this is used when hide() is called before timer triggers.
+    m_timer.stop();
 }
 
 void KDEPlatformFileDialogBase::closeEvent(QCloseEvent *e)
@@ -30,4 +44,4 @@
     QDialog::closeEvent(e);
 }
 
-#include "moc_kdeplatformfiledialogbase_p.cpp"
\ No newline at end of file
+#include "moc_kdeplatformfiledialogbase_p.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/src/platformtheme/kdeplatformfiledialogbase_p.h 
new/frameworkintegration-5.15.0/src/platformtheme/kdeplatformfiledialogbase_p.h
--- 
old/frameworkintegration-5.14.0/src/platformtheme/kdeplatformfiledialogbase_p.h 
    2015-09-05 10:48:41.000000000 +0200
+++ 
new/frameworkintegration-5.15.0/src/platformtheme/kdeplatformfiledialogbase_p.h 
    2015-10-05 09:51:29.000000000 +0200
@@ -23,6 +23,7 @@
 
 #include <QDialog>
 #include <QUrl>
+#include <QTimer>
 
 class KFileWidget;
 class QDialogButtonBox;
@@ -40,6 +41,9 @@
     virtual QString selectedNameFilter() = 0;
     virtual QList<QUrl> selectedFiles() = 0;
 
+    void delayedShow();
+    void discardDelayedShow();
+
 Q_SIGNALS:
     void closed();
     void fileSelected(const QUrl &file);
@@ -51,6 +55,7 @@
 protected:
     void closeEvent(QCloseEvent *e) Q_DECL_OVERRIDE;
     QDialogButtonBox *m_buttons;
+    QTimer m_timer;
 };
 
 #endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/src/platformtheme/kdeplatformfiledialoghelper.cpp
 
new/frameworkintegration-5.15.0/src/platformtheme/kdeplatformfiledialoghelper.cpp
--- 
old/frameworkintegration-5.14.0/src/platformtheme/kdeplatformfiledialoghelper.cpp
   2015-09-05 10:48:41.000000000 +0200
+++ 
new/frameworkintegration-5.15.0/src/platformtheme/kdeplatformfiledialoghelper.cpp
   2015-10-05 09:51:29.000000000 +0200
@@ -37,7 +37,6 @@
 #include <QWindow>
 
 #include <QTextStream>
-#include <QEventLoop>
 
 namespace
 {
@@ -281,19 +280,17 @@
 
 void KDEPlatformFileDialogHelper::exec()
 {
-    m_dialog->hide(); // ensure dialog is not shown (exec would block input)
-    m_dialog->winId(); // ensure there's a window created
-    KSharedConfig::Ptr conf = KSharedConfig::openConfig();
-    KWindowConfig::restoreWindowSize(m_dialog->windowHandle(), 
conf->group("FileDialogSize"));
-    // NOTICE: QWindow::setGeometry() does NOT impact the backing QWidget 
geometry even if the platform
-    // window was created -> QTBUG-40584. We therefore copy the size here.
-    // TODO: remove once this was resolved in QWidget QPA
-    m_dialog->resize(m_dialog->windowHandle()->size());
+    restoreSize();
+    // KDEPlatformFileDialog::show() will always be called during 
QFileDialog::exec()
+    // discard the delayed show() it and use exec() and it will call show() 
for us.
+    // We can't hide and show it here because of 
https://bugreports.qt.io/browse/QTBUG-48248
+    m_dialog->discardDelayedShow();
     m_dialog->exec();
 }
 
 void KDEPlatformFileDialogHelper::hide()
 {
+    m_dialog->discardDelayedShow();
     m_dialog->hide();
 }
 
@@ -304,15 +301,29 @@
     KWindowConfig::saveWindowSize(m_dialog->windowHandle(), group);
 }
 
+void KDEPlatformFileDialogHelper::restoreSize()
+{
+    m_dialog->winId(); // ensure there's a window created
+    KSharedConfig::Ptr conf = KSharedConfig::openConfig();
+    KWindowConfig::restoreWindowSize(m_dialog->windowHandle(), 
conf->group("FileDialogSize"));
+    // NOTICE: QWindow::setGeometry() does NOT impact the backing QWidget 
geometry even if the platform
+    // window was created -> QTBUG-40584. We therefore copy the size here.
+    // TODO: remove once this was resolved in QWidget QPA
+    m_dialog->resize(m_dialog->windowHandle()->size());
+}
+
 bool KDEPlatformFileDialogHelper::show(Qt::WindowFlags windowFlags, 
Qt::WindowModality windowModality, QWindow *parent)
 {
     Q_UNUSED(parent)
     initializeDialog();
     m_dialog->setWindowFlags(windowFlags);
     m_dialog->setWindowModality(windowModality);
-    m_dialog->show();
-    KSharedConfig::Ptr conf = KSharedConfig::openConfig();
-    KWindowConfig::restoreWindowSize(m_dialog->windowHandle(), 
conf->group("FileDialogSize"));
+    restoreSize();
+    // Use a delayed show here to delay show() after the internal Qt invisible 
QDialog.
+    // The delayed call shouldn't matter, because for other "real" native 
QPlatformDialog
+    // implementation like Mac and Windows, the native dialog is not 
necessarily
+    // show up immediately.
+    m_dialog->delayedShow();
     return true;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/frameworkintegration-5.14.0/src/platformtheme/kdeplatformfiledialoghelper.h 
new/frameworkintegration-5.15.0/src/platformtheme/kdeplatformfiledialoghelper.h
--- 
old/frameworkintegration-5.14.0/src/platformtheme/kdeplatformfiledialoghelper.h 
    2015-09-05 10:48:41.000000000 +0200
+++ 
new/frameworkintegration-5.15.0/src/platformtheme/kdeplatformfiledialoghelper.h 
    2015-10-05 09:51:29.000000000 +0200
@@ -74,6 +74,7 @@
     void saveSize();
 
 private:
+    void restoreSize();
     KDEPlatformFileDialogBase *m_dialog;
 };
 


Reply via email to