Hello community, here is the log from the commit of package plasma5-integration for openSUSE:Factory checked in at 2018-09-13 23:52:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/plasma5-integration (Old) and /work/SRC/openSUSE:Factory/.plasma5-integration.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma5-integration" Thu Sep 13 23:52:35 2018 rev:49 rq:633162 version:5.13.5 Changes: -------- --- /work/SRC/openSUSE:Factory/plasma5-integration/plasma5-integration.changes 2018-08-03 12:34:11.247292725 +0200 +++ /work/SRC/openSUSE:Factory/.plasma5-integration.new/plasma5-integration.changes 2018-09-13 23:52:37.658355205 +0200 @@ -1,0 +2,11 @@ +Tue Sep 4 10:58:42 UTC 2018 - fab...@ritter-vogt.de + +- Update to 5.13.5 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.13.5.php +- Changes since 5.13.4: + * Fix QFileDialog not remembering the last visited directory. + * File Dialog: fix testSelectUrl() again, i.e. selectUrl() should set the directory too + +------------------------------------------------------------------- Old: ---- plasma-integration-5.13.4.tar.xz New: ---- plasma-integration-5.13.5.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ plasma5-integration.spec ++++++ --- /var/tmp/diff_new_pack.5swOol/_old 2018-09-13 23:52:38.046354934 +0200 +++ /var/tmp/diff_new_pack.5swOol/_new 2018-09-13 23:52:38.050354931 +0200 @@ -18,7 +18,7 @@ %bcond_without lang Name: plasma5-integration -Version: 5.13.4 +Version: 5.13.5 Release: 0 # Full Plasma 5 version (e.g. 5.8.95) %{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}} ++++++ plasma-integration-5.13.4.tar.xz -> plasma-integration-5.13.5.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/CMakeLists.txt new/plasma-integration-5.13.5/CMakeLists.txt --- old/plasma-integration-5.13.4/CMakeLists.txt 2018-07-31 14:53:29.000000000 +0200 +++ new/plasma-integration-5.13.5/CMakeLists.txt 2018-09-04 12:18:40.000000000 +0200 @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.0) project(PlasmaIntegration) -set(PROJECT_VERSION "5.13.4") +set(PROJECT_VERSION "5.13.5") set(PROJECT_VERSION_MAJOR 5) set(QT_MIN_VERSION "5.9.0") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/autotests/kfiledialog_unittest.cpp new/plasma-integration-5.13.5/autotests/kfiledialog_unittest.cpp --- old/plasma-integration-5.13.4/autotests/kfiledialog_unittest.cpp 2018-07-31 14:53:29.000000000 +0200 +++ new/plasma-integration-5.13.5/autotests/kfiledialog_unittest.cpp 2018-09-04 12:18:40.000000000 +0200 @@ -347,6 +347,37 @@ QTRY_VERIFY(timerRun); } + void testRememberLastDirectory() + { + const QUrl dir = QUrl::fromLocalFile(QDir::tempPath()).adjusted(QUrl::StripTrailingSlash); + // Open and navigate + { + QFileDialog dialog; + dialog.open(); + + KFileWidget *fw = findFileWidget(); + QVERIFY(fw); + // real show() is delayed to next event. + QVERIFY(QTest::qWaitForWindowExposed(fw->window())); + QCOMPARE(fw->isVisible(), true); + fw->setUrl(dir); + fw->slotCancel(); + } + // Open another filedialog, check that the default directory is the one from above + { + QFileDialog dialog; + dialog.open(); + + KFileWidget *fw = findFileWidget(); + QVERIFY(fw); + // real show() is delayed to next event. + QVERIFY(QTest::qWaitForWindowExposed(fw->window())); + QCOMPARE(fw->isVisible(), true); + QCOMPARE(dialog.directoryUrl().adjusted(QUrl::StripTrailingSlash), dir); + fw->slotCancel(); + } + } + private: QTemporaryDir m_tempDir; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/ar/plasmaintegration5.po new/plasma-integration-5.13.5/po/ar/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/ar/plasmaintegration5.po 2018-07-31 14:53:41.000000000 +0200 +++ new/plasma-integration-5.13.5/po/ar/plasmaintegration5.po 2018-09-04 12:18:48.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: ٢٠١٦-٠٢-٠٨ ٠٨:١٩+0300\n" "Last-Translator: Safa Alfulaij <safa1996alful...@gmail.com>\n" "Language-Team: Arabic <d...@arabeyes.org>\n" @@ -18,13 +18,13 @@ "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, fuzzy, kde-format #| msgctxt "@action:button" #| msgid "Save All" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/ast/plasmaintegration5.po new/plasma-integration-5.13.5/po/ast/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/ast/plasmaintegration5.po 2018-07-31 14:53:41.000000000 +0200 +++ new/plasma-integration-5.13.5/po/ast/plasmaintegration5.po 2018-09-04 12:18:48.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-12-19 03:55+0100\n" "Last-Translator: enolp <en...@softastur.org>\n" "Language-Team: Asturian <alministrado...@softastur.org>\n" @@ -17,13 +17,13 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/ca/plasmaintegration5.po new/plasma-integration-5.13.5/po/ca/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/ca/plasmaintegration5.po 2018-07-31 14:53:43.000000000 +0200 +++ new/plasma-integration-5.13.5/po/ca/plasmaintegration5.po 2018-09-04 12:18:49.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: plasmaintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2017-12-17 23:21+0100\n" "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n" "Language-Team: Catalan <kde-i18n...@kde.org>\n" @@ -20,13 +20,13 @@ "X-Accelerator-Marker: &\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Obre un fitxer" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/ca@valencia/plasmaintegration5.po new/plasma-integration-5.13.5/po/ca@valencia/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/ca@valencia/plasmaintegration5.po 2018-07-31 14:53:43.000000000 +0200 +++ new/plasma-integration-5.13.5/po/ca@valencia/plasmaintegration5.po 2018-09-04 12:18:49.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: plasmaintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2017-12-17 23:21+0100\n" "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n" "Language-Team: Catalan <kde-i18n...@kde.org>\n" @@ -20,13 +20,13 @@ "X-Accelerator-Marker: &\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Obri un fitxer" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/cs/plasmaintegration5.po new/plasma-integration-5.13.5/po/cs/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/cs/plasmaintegration5.po 2018-07-31 14:53:43.000000000 +0200 +++ new/plasma-integration-5.13.5/po/cs/plasmaintegration5.po 2018-09-04 12:18:49.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2014-12-05 13:22+0100\n" "Last-Translator: Vít Pelčák <v...@pelcak.org>\n" "Language-Team: Czech <kde-i18n-...@kde.org>\n" @@ -17,13 +17,13 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Lokalize 1.5\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Otevřít soubor" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/da/plasmaintegration5.po new/plasma-integration-5.13.5/po/da/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/da/plasmaintegration5.po 2018-07-31 14:53:44.000000000 +0200 +++ new/plasma-integration-5.13.5/po/da/plasmaintegration5.po 2018-09-04 12:18:50.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-06-18 14:51+0100\n" "Last-Translator: Martin Schlander <mschlan...@opensuse.org>\n" "Language-Team: Danish <kde-i18n-...@kde.org>\n" @@ -17,13 +17,13 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Åbn fil" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/de/plasmaintegration5.po new/plasma-integration-5.13.5/po/de/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/de/plasmaintegration5.po 2018-07-31 14:53:44.000000000 +0200 +++ new/plasma-integration-5.13.5/po/de/plasmaintegration5.po 2018-09-04 12:18:50.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-04-10 19:54+0100\n" "Last-Translator: Frederik Schwarzer <schwar...@kde.org>\n" "Language-Team: German <kde-i18n...@kde.org>\n" @@ -18,13 +18,13 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Datei öffnen" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/el/plasmaintegration5.po new/plasma-integration-5.13.5/po/el/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/el/plasmaintegration5.po 2018-07-31 14:53:44.000000000 +0200 +++ new/plasma-integration-5.13.5/po/el/plasmaintegration5.po 2018-09-04 12:18:50.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-07-29 20:02+0200\n" "Last-Translator: Dimitris Kardarakos <dimk...@gmail.com>\n" "Language-Team: Greek <kde-i18n...@kde.org>\n" @@ -17,13 +17,13 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Άνοιγμα αρχείου" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/en_GB/plasmaintegration5.po new/plasma-integration-5.13.5/po/en_GB/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/en_GB/plasmaintegration5.po 2018-07-31 14:53:45.000000000 +0200 +++ new/plasma-integration-5.13.5/po/en_GB/plasmaintegration5.po 2018-09-04 12:18:51.000000000 +0200 @@ -6,10 +6,10 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-09-18 15:46+0000\n" "Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n" -"Language-Team: English <kde-l10n-en...@kde.org>\n" +"Language-Team: British English <kde-l10n-en...@kde.org>\n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,13 +17,13 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Open File" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/es/plasmaintegration5.po new/plasma-integration-5.13.5/po/es/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/es/plasmaintegration5.po 2018-07-31 14:53:45.000000000 +0200 +++ new/plasma-integration-5.13.5/po/es/plasmaintegration5.po 2018-09-04 12:18:51.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: frameworkintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-04-09 13:34+0200\n" "Last-Translator: Eloy Cuadra <ecua...@eloihr.net>\n" "Language-Team: Spanish <kde-l10n...@kde.org>\n" @@ -19,13 +19,13 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.5\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Abrir archivo" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/et/plasmaintegration5.po new/plasma-integration-5.13.5/po/et/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/et/plasmaintegration5.po 2018-07-31 14:53:45.000000000 +0200 +++ new/plasma-integration-5.13.5/po/et/plasmaintegration5.po 2018-09-04 12:18:51.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-08-18 19:28+0300\n" "Last-Translator: Marek Laane <qiila...@gmail.com>\n" "Language-Team: Estonian <kde-i18n-...@kde.org>\n" @@ -17,13 +17,13 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.5\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Faili avamine" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/eu/plasmaintegration5.po new/plasma-integration-5.13.5/po/eu/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/eu/plasmaintegration5.po 2018-07-31 14:53:45.000000000 +0200 +++ new/plasma-integration-5.13.5/po/eu/plasmaintegration5.po 2018-09-04 12:18:51.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: plasmaintegrtion5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2018-02-24 22:54+0100\n" "Last-Translator: Iñigo Salvador Azurmendi <xa...@euskalnet.net>\n" "Language-Team: Basque <kde-i18n-...@kde.org>\n" @@ -20,13 +20,13 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Ireki fitxategia" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/fi/plasmaintegration5.po new/plasma-integration-5.13.5/po/fi/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/fi/plasmaintegration5.po 2018-07-31 14:53:46.000000000 +0200 +++ new/plasma-integration-5.13.5/po/fi/plasmaintegration5.po 2018-09-04 12:18: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-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-04-30 23:40+0200\n" "Last-Translator: Lasse Liehu <lasse.li...@gmail.com>\n" "Language-Team: Finnish <kde-i18n-...@kde.org>\n" @@ -17,13 +17,13 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Avaa tiedosto" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/fr/plasmaintegration5.po new/plasma-integration-5.13.5/po/fr/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/fr/plasmaintegration5.po 2018-07-31 14:53:46.000000000 +0200 +++ new/plasma-integration-5.13.5/po/fr/plasmaintegration5.po 2018-09-04 12:18:52.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-11-23 18:17+0100\n" "Last-Translator: Vincent Pinon <vpi...@kde.org>\n" "Language-Team: French <kde-i18n-...@kde.org>\n" @@ -21,13 +21,13 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Ouvrir un fichier" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/gl/plasmaintegration5.po new/plasma-integration-5.13.5/po/gl/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/gl/plasmaintegration5.po 2018-07-31 14:53:47.000000000 +0200 +++ new/plasma-integration-5.13.5/po/gl/plasmaintegration5.po 2018-09-04 12:18:53.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-04-21 07:00+0100\n" "Last-Translator: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail." "com>\n" @@ -18,13 +18,13 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Abrir un ficheiro" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/he/plasmaintegration5.po new/plasma-integration-5.13.5/po/he/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/he/plasmaintegration5.po 2018-07-31 14:53:47.000000000 +0200 +++ new/plasma-integration-5.13.5/po/he/plasmaintegration5.po 2018-09-04 12:18:53.000000000 +0200 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plasmaintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2017-05-22 05:11-0400\n" "Last-Translator: Elkana Bardugo <ttv...@gmail.com>\n" "Language-Team: Hebrew\n" @@ -14,13 +14,13 @@ "X-Generator: Zanata 3.9.6\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "פתח קובץ" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/hu/plasmaintegration5.po new/plasma-integration-5.13.5/po/hu/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/hu/plasmaintegration5.po 2018-07-31 14:53:48.000000000 +0200 +++ new/plasma-integration-5.13.5/po/hu/plasmaintegration5.po 2018-09-04 12:18:53.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2017-02-24 22:49+0100\n" "Last-Translator: Kiszel Kristóf <kiszel.kris...@gmail.com>\n" "Language-Team: Hungarian <kde-l10n...@kde.org>\n" @@ -17,13 +17,13 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Fájl megnyitása" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/ia/plasmaintegration5.po new/plasma-integration-5.13.5/po/ia/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/ia/plasmaintegration5.po 2018-07-31 14:53:49.000000000 +0200 +++ new/plasma-integration-5.13.5/po/ia/plasmaintegration5.po 2018-09-04 12:18:54.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2017-02-02 22:57+0100\n" "Last-Translator: giovanni <g.s...@tiscali.it>\n" "Language-Team: Interlingua <kde-i18n...@kde.org>\n" @@ -17,13 +17,13 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Aperi file" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/it/plasmaintegration5.po new/plasma-integration-5.13.5/po/it/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/it/plasmaintegration5.po 2018-07-31 14:53:49.000000000 +0200 +++ new/plasma-integration-5.13.5/po/it/plasmaintegration5.po 2018-09-04 12:18:54.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: frameworkintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-04-11 21:00+0200\n" "Last-Translator: Vincenzo Reale <smart2...@baslug.org>\n" "Language-Team: Italian <kde-i18n...@kde.org>\n" @@ -17,13 +17,13 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Apri file" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/ja/plasmaintegration5.po new/plasma-integration-5.13.5/po/ja/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/ja/plasmaintegration5.po 2018-07-31 14:53:50.000000000 +0200 +++ new/plasma-integration-5.13.5/po/ja/plasmaintegration5.po 2018-09-04 12:18:55.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: frameworkintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2014-05-01 01:02-0700\n" "Last-Translator: Japanese KDE translation team <kde...@kde.org>\n" "Language-Team: Japanese <kde...@kde.org>\n" @@ -14,13 +14,13 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/ko/plasmaintegration5.po new/plasma-integration-5.13.5/po/ko/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/ko/plasmaintegration5.po 2018-07-31 14:53:51.000000000 +0200 +++ new/plasma-integration-5.13.5/po/ko/plasmaintegration5.po 2018-09-04 12:18:56.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-10-20 22:52+0100\n" "Last-Translator: Shinjo Park <k...@peremen.name>\n" "Language-Team: Korean <k...@peremen.name>\n" @@ -17,13 +17,13 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "파일 열기" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/nb/plasmaintegration5.po new/plasma-integration-5.13.5/po/nb/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/nb/plasmaintegration5.po 2018-07-31 14:53:52.000000000 +0200 +++ new/plasma-integration-5.13.5/po/nb/plasmaintegration5.po 2018-09-04 12:18:57.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2015-02-24 20:41+0100\n" "Last-Translator: Bjørn Steensrud <bjor...@skogkatt.homelinux.org>\n" "Language-Team: Norwegian Bokmål <i18n...@lister.ping.uio.no>\n" @@ -19,13 +19,13 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Åpne fil" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/nl/plasmaintegration5.po new/plasma-integration-5.13.5/po/nl/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/nl/plasmaintegration5.po 2018-07-31 14:53:52.000000000 +0200 +++ new/plasma-integration-5.13.5/po/nl/plasmaintegration5.po 2018-09-04 12:18:57.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-04-09 17:04+0200\n" "Last-Translator: Freek de Kruijf <freekdekru...@kde.nl>\n" "Language-Team: Dutch <kde-i18n...@kde.org>\n" @@ -17,13 +17,13 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.5\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Bestand openen" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/nn/plasmaintegration5.po new/plasma-integration-5.13.5/po/nn/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/nn/plasmaintegration5.po 2018-07-31 14:53:53.000000000 +0200 +++ new/plasma-integration-5.13.5/po/nn/plasmaintegration5.po 2018-09-04 12:18:58.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-04-24 21:22+0100\n" "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n" "Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n" @@ -19,13 +19,13 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Opna fil" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/pa/plasmaintegration5.po new/plasma-integration-5.13.5/po/pa/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/pa/plasmaintegration5.po 2018-07-31 14:53:53.000000000 +0200 +++ new/plasma-integration-5.13.5/po/pa/plasmaintegration5.po 2018-09-04 12:18:58.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-06-09 17:13-0600\n" "Last-Translator: A S Alam <aa...@users.sf.net>\n" "Language-Team: Punjabi <kde-i18n-...@kde.org>\n" @@ -17,13 +17,13 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "ਫਾਇਲ ਨੂੰ ਖੋਲ੍ਹੋ" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/pl/plasmaintegration5.po new/plasma-integration-5.13.5/po/pl/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/pl/plasmaintegration5.po 2018-07-31 14:53:54.000000000 +0200 +++ new/plasma-integration-5.13.5/po/pl/plasmaintegration5.po 2018-09-04 12:18:59.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-04-16 06:28+0100\n" "Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilow...@gmail.com>\n" "Language-Team: Polish <kde-i18n-...@kde.org>\n" @@ -18,13 +18,13 @@ "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Otwórz plik" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/pt/plasmaintegration5.po new/plasma-integration-5.13.5/po/pt/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/pt/plasmaintegration5.po 2018-07-31 14:53:54.000000000 +0200 +++ new/plasma-integration-5.13.5/po/pt/plasmaintegration5.po 2018-09-04 12:18:59.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: plasmaintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-01-12 11:24+0000\n" "Last-Translator: José Nuno Coelho Pires <zepi...@gmail.com>\n" "Language-Team: Portuguese <kde-i18n...@kde.org>\n" @@ -17,13 +17,13 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Abrir um Ficheiro" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/pt_BR/plasmaintegration5.po new/plasma-integration-5.13.5/po/pt_BR/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/pt_BR/plasmaintegration5.po 2018-07-31 14:53:54.000000000 +0200 +++ new/plasma-integration-5.13.5/po/pt_BR/plasmaintegration5.po 2018-09-04 12:18:59.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: plasmaintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-04-09 10:40-0300\n" "Last-Translator: André Marcelo Alvarenga <alvare...@kde.org>\n" "Language-Team: Brazilian Portuguese <kde-i18n-pt...@kde.org>\n" @@ -18,13 +18,13 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Abrir arquivo" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/ru/plasmaintegration5.po new/plasma-integration-5.13.5/po/ru/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/ru/plasmaintegration5.po 2018-07-31 14:53:55.000000000 +0200 +++ new/plasma-integration-5.13.5/po/ru/plasmaintegration5.po 2018-09-04 12:19:00.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-09-29 04:54+0300\n" "Last-Translator: Alexander Potashev <aspotas...@gmail.com>\n" "Language-Team: Russian <kde-russ...@lists.kde.ru>\n" @@ -18,13 +18,13 @@ "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Открытие файла" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/sk/plasmaintegration5.po new/plasma-integration-5.13.5/po/sk/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/sk/plasmaintegration5.po 2018-07-31 14:53:55.000000000 +0200 +++ new/plasma-integration-5.13.5/po/sk/plasmaintegration5.po 2018-09-04 12:19:00.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: frameworkintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-04-09 13:33+0100\n" "Last-Translator: Roman Paholik <wizzar...@gmail.com>\n" "Language-Team: Slovak <kde...@linux.sk>\n" @@ -15,13 +15,13 @@ "X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Otvoriť súbor" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/sl/plasmaintegration5.po new/plasma-integration-5.13.5/po/sl/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/sl/plasmaintegration5.po 2018-07-31 14:53:56.000000000 +0200 +++ new/plasma-integration-5.13.5/po/sl/plasmaintegration5.po 2018-09-04 12:19:00.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-05-15 10:32+0200\n" "Last-Translator: Andrej Mernik <andr...@ubuntu.si>\n" "Language-Team: Slovenian <lugos-...@lugos.si>\n" @@ -18,13 +18,13 @@ "%100==4 ? 3 : 0);\n" "X-Generator: Lokalize 1.5\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Odpri datoteko" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/sr/plasmaintegration5.po new/plasma-integration-5.13.5/po/sr/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/sr/plasmaintegration5.po 2018-07-31 14:53:56.000000000 +0200 +++ new/plasma-integration-5.13.5/po/sr/plasmaintegration5.po 2018-09-04 12:19:00.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: plasmaintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich <caslav.i...@gmx.net>\n" "Language-Team: Serbian <kde-i18n...@kde.org>\n" @@ -18,13 +18,13 @@ "X-Text-Markup: kde4\n" "X-Environment: kde\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Отварање фајла" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/sr@ijekavian/plasmaintegration5.po new/plasma-integration-5.13.5/po/sr@ijekavian/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/sr@ijekavian/plasmaintegration5.po 2018-07-31 14:53:56.000000000 +0200 +++ new/plasma-integration-5.13.5/po/sr@ijekavian/plasmaintegration5.po 2018-09-04 12:19:00.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: plasmaintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich <caslav.i...@gmx.net>\n" "Language-Team: Serbian <kde-i18n...@kde.org>\n" @@ -18,13 +18,13 @@ "X-Text-Markup: kde4\n" "X-Environment: kde\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Отварање фајла" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/sr@ijekavianlatin/plasmaintegration5.po new/plasma-integration-5.13.5/po/sr@ijekavianlatin/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/sr@ijekavianlatin/plasmaintegration5.po 2018-07-31 14:53:56.000000000 +0200 +++ new/plasma-integration-5.13.5/po/sr@ijekavianlatin/plasmaintegration5.po 2018-09-04 12:19:00.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: plasmaintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich <caslav.i...@gmx.net>\n" "Language-Team: Serbian <kde-i18n...@kde.org>\n" @@ -18,13 +18,13 @@ "X-Text-Markup: kde4\n" "X-Environment: kde\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Otvaranje fajla" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/sr@latin/plasmaintegration5.po new/plasma-integration-5.13.5/po/sr@latin/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/sr@latin/plasmaintegration5.po 2018-07-31 14:53:57.000000000 +0200 +++ new/plasma-integration-5.13.5/po/sr@latin/plasmaintegration5.po 2018-09-04 12:19:01.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: plasmaintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2017-09-28 17:58+0200\n" "Last-Translator: Chusslove Illich <caslav.i...@gmx.net>\n" "Language-Team: Serbian <kde-i18n...@kde.org>\n" @@ -18,13 +18,13 @@ "X-Text-Markup: kde4\n" "X-Environment: kde\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Otvaranje fajla" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/sv/plasmaintegration5.po new/plasma-integration-5.13.5/po/sv/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/sv/plasmaintegration5.po 2018-07-31 14:53:57.000000000 +0200 +++ new/plasma-integration-5.13.5/po/sv/plasmaintegration5.po 2018-09-04 12:19:01.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-04-10 08:12+0100\n" "Last-Translator: Stefan Asserhäll <stefan.asserh...@bredband.net>\n" "Language-Team: Swedish <kde-i18n-...@kde.org>\n" @@ -17,13 +17,13 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Öppna fil" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/tr/plasmaintegration5.po new/plasma-integration-5.13.5/po/tr/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/tr/plasmaintegration5.po 2018-07-31 14:53:58.000000000 +0200 +++ new/plasma-integration-5.13.5/po/tr/plasmaintegration5.po 2018-09-04 12:19:02.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: plasmaintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2017-10-23 11:16+0000\n" "Last-Translator: Kaan <kaanozdin...@gmail.com>\n" "Language-Team: Turkish <kde-i18n-...@kde.org>\n" @@ -17,13 +17,13 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Dosya Aç" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/uk/plasmaintegration5.po new/plasma-integration-5.13.5/po/uk/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/uk/plasmaintegration5.po 2018-07-31 14:53:58.000000000 +0200 +++ new/plasma-integration-5.13.5/po/uk/plasmaintegration5.po 2018-09-04 12:19:02.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: plasmaintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-04-09 18:05+0300\n" "Last-Translator: Yuri Chornoivan <yurc...@ukr.net>\n" "Language-Team: Ukrainian <kde-i18n...@kde.org>\n" @@ -20,13 +20,13 @@ "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Lokalize 1.5\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "Відкриття файла" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/zh_CN/plasmaintegration5.po new/plasma-integration-5.13.5/po/zh_CN/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/zh_CN/plasmaintegration5.po 2018-07-31 14:54:00.000000000 +0200 +++ new/plasma-integration-5.13.5/po/zh_CN/plasmaintegration5.po 2018-09-04 12:19:03.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-04-18 03:46+0200\n" -"PO-Revision-Date: 2018-07-24 08:45\n" -"Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" +"PO-Revision-Date: 2018-08-30 13:14\n" +"Last-Translator: guoyunhebrave <yunhe....@protonmail.com>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -20,13 +20,13 @@ "X-Crowdin-Language: zh-CN\n" "X-Crowdin-File: /kf5-stable/messages/kde-workspace/plasmaintegration5.pot\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "打开文件" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/po/zh_TW/plasmaintegration5.po new/plasma-integration-5.13.5/po/zh_TW/plasmaintegration5.po --- old/plasma-integration-5.13.4/po/zh_TW/plasmaintegration5.po 2018-07-31 14:54:00.000000000 +0200 +++ new/plasma-integration-5.13.5/po/zh_TW/plasmaintegration5.po 2018-09-04 12:19:03.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: plasmaintegration5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-04-18 03:46+0200\n" +"POT-Creation-Date: 2018-08-21 06:39+0200\n" "PO-Revision-Date: 2016-09-23 10:55+0800\n" "Last-Translator: Jeff Huang <s8321...@gmail.com>\n" "Language-Team: Chinese <kde-i18n-...@kde.org>\n" @@ -17,13 +17,13 @@ "X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Open File" msgstr "開啟檔案" -#: platformtheme/kdeplatformfiledialoghelper.cpp:285 +#: platformtheme/kdeplatformfiledialoghelper.cpp:287 #, kde-format msgctxt "@title:window" msgid "Save File" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/src/platformtheme/kdeplatformfiledialoghelper.cpp new/plasma-integration-5.13.5/src/platformtheme/kdeplatformfiledialoghelper.cpp --- old/plasma-integration-5.13.4/src/platformtheme/kdeplatformfiledialoghelper.cpp 2018-07-31 14:53:29.000000000 +0200 +++ new/plasma-integration-5.13.5/src/platformtheme/kdeplatformfiledialoghelper.cpp 2018-09-04 12:18:40.000000000 +0200 @@ -114,6 +114,7 @@ connect(m_fileWidget, SIGNAL(accepted()), m_fileWidget, SLOT(accept())); connect(m_fileWidget, SIGNAL(accepted()), SLOT(accept())); connect(m_fileWidget->cancelButton(), SIGNAL(clicked(bool)), SLOT(reject())); + connect(m_fileWidget->dirOperator(), &KDirOperator::urlEntered, this, &KDEPlatformFileDialogBase::directoryEntered); layout()->addWidget(m_buttons); } @@ -270,6 +271,7 @@ void KDEPlatformFileDialogHelper::initializeDialog() { + m_dialogInitialized = true; if (options()->testOption(QFileDialogOptions::ShowDirsOnly)) { m_dialog->deleteLater(); m_dialog = new KDirSelectDialog(options()->initialDirectory()); @@ -286,7 +288,9 @@ } else { dialog->setWindowTitle(options()->windowTitle()); } - setDirectory(options()->initialDirectory()); + if (!m_directorySet) { + setDirectory(options()->initialDirectory()); + } //dialog->setViewMode(options()->viewMode()); // don't override our options, fixes remembering the chosen view mode and sizes! dialog->setFileMode(options()->fileMode()); @@ -412,13 +416,21 @@ void KDEPlatformFileDialogHelper::selectFile(const QUrl &filename) { + // This is called once by QFileDialogPrivate::init -> QFileDialog::selectUrl -> QFileDialogPrivate::selectFile_sys + // and then again by selectFile in the QFileDialog constructor, with a wrong value for remote URLs, until the Qt 5.12.0 fix. +#if QT_VERSION < QT_VERSION_CHECK(5, 12, 0) + if (m_fileSelected && !m_dialogInitialized) + return; +#endif m_dialog->selectFile(filename); + m_fileSelected = true; } void KDEPlatformFileDialogHelper::setDirectory(const QUrl &directory) { if (!directory.isEmpty()) { m_dialog->setDirectory(directory); + m_directorySet = true; } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-integration-5.13.4/src/platformtheme/kdeplatformfiledialoghelper.h new/plasma-integration-5.13.5/src/platformtheme/kdeplatformfiledialoghelper.h --- old/plasma-integration-5.13.4/src/platformtheme/kdeplatformfiledialoghelper.h 2018-07-31 14:53:29.000000000 +0200 +++ new/plasma-integration-5.13.5/src/platformtheme/kdeplatformfiledialoghelper.h 2018-09-04 12:18:40.000000000 +0200 @@ -80,6 +80,9 @@ private: void restoreSize(); KDEPlatformFileDialogBase *m_dialog; + bool m_directorySet = false; + bool m_fileSelected = false; + bool m_dialogInitialized = false; }; #endif // KDEPLATFORMFILEDIALOGHELPER_H