Hello community,

here is the log from the commit of package purpose for openSUSE:Factory checked 
in at 2018-03-20 21:48:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/purpose (Old)
 and      /work/SRC/openSUSE:Factory/.purpose.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "purpose"

Tue Mar 20 21:48:44 2018 rev:6 rq:586869 version:5.44.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/purpose/purpose.changes  2018-02-16 
21:36:16.717257328 +0100
+++ /work/SRC/openSUSE:Factory/.purpose.new/purpose.changes     2018-03-20 
21:48:45.458748689 +0100
@@ -1,0 +2,12 @@
+Mon Mar 12 23:29:43 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.44.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.44.0.php
+- Changes since 5.43.0:
+  * forgot to commit it
+  * Generate debug categories and create file for it
+  * Fix tier, accommodate for KIO
+
+-------------------------------------------------------------------

Old:
----
  purpose-5.43.0.tar.xz

New:
----
  purpose-5.44.0.tar.xz

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

Other differences:
------------------
++++++ purpose.spec ++++++
--- /var/tmp/diff_new_pack.w1rOva/_old  2018-03-20 21:48:46.410714407 +0100
+++ /var/tmp/diff_new_pack.w1rOva/_new  2018-03-20 21:48:46.414714263 +0100
@@ -17,17 +17,17 @@
 
 
 %define lname   libKF5Purpose5
-%define _tar_path 5.43
+%define _tar_path 5.44
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:           purpose
-Version:        5.43.0
+Version:        5.44.0
 Release:        0
 Summary:        Framework to integrate services and actions in applications
-License:        LGPL-2.1+
+License:        LGPL-2.1-or-later
 Group:          System/GUI/KDE
 Url:            http://www.kde.org
 Source:         %{name}-%{version}.tar.xz
@@ -91,11 +91,11 @@
 %package devel
 Summary:        Framework to integrate services and actions - Build Environment
 Group:          Development/Libraries/KDE
-Requires:       %{name} = %{version}
 Requires:              %{lname} = %{version}
-Requires:              libKF5PurposeWidgets5 = %{version}
+Requires:       %{name} = %{version}
 Requires:       extra-cmake-modules
 Requires:       kcoreaddons-devel >=  %{_kf5_bugfix_version}
+Requires:       libKF5PurposeWidgets5 = %{version}
 
 %description devel
 This package contains development files needed to build applications which 
rely on the purpose framework.
@@ -141,6 +141,7 @@
 %files -n %{lname}
 %license COPYING*
 %{_kf5_libdir}/libKF5Purpose.so.*
+%{_kf5_debugdir}/*.categories
 
 %files -n libKF5PurposeWidgets5
 %{_kf5_libdir}/libKF5PurposeWidgets.so.*

++++++ purpose-5.43.0.tar.xz -> purpose-5.44.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/CMakeLists.txt 
new/purpose-5.44.0/CMakeLists.txt
--- old/purpose-5.43.0/CMakeLists.txt   2018-02-05 13:04:31.000000000 +0100
+++ new/purpose-5.44.0/CMakeLists.txt   2018-03-03 11:08:17.000000000 +0100
@@ -2,7 +2,7 @@
 
 project(Purpose)
 
-find_package(ECM 5.43.0 REQUIRED NO_MODULE)
+find_package(ECM 5.44.0 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -22,8 +22,8 @@
 include(ECMMarkNonGuiExecutable)
 include(ECMQtDeclareLoggingCategory)
 
-set(KF5_VERSION "5.43.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.43.0") # handled by release scripts
+set(KF5_VERSION "5.44.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.44.0") # handled by release scripts
 
 find_package(KF5 ${KF5_DEP_VERSION} REQUIRED COMPONENTS CoreAddons I18n Config)
 
@@ -76,6 +76,8 @@
 
 feature_summary(WHAT ALL   FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
+install( FILES purpose.categories DESTINATION ${KDE_INSTALL_CONFDIR} )
+
 #TODO: Remove somewhen in the future
 install(FILES
   "${CMAKE_CURRENT_SOURCE_DIR}/KDEExperimentalPurposeConfig.cmake"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/metainfo.yaml 
new/purpose-5.44.0/metainfo.yaml
--- old/purpose-5.43.0/metainfo.yaml    2018-02-05 13:04:31.000000000 +0100
+++ new/purpose-5.44.0/metainfo.yaml    2018-03-03 11:08:17.000000000 +0100
@@ -1,6 +1,6 @@
 maintainer: apol
 description: Offers available actions for a specific purpose
-tier: 2
+tier: 3
 type: integration
 platforms:
     - name: Linux
@@ -17,4 +17,4 @@
 
 public_lib: true
 group: Frameworks
-subgroup: Tier 1
+subgroup: Tier 3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fi/libpurpose_quick.po 
new/purpose-5.44.0/po/fi/libpurpose_quick.po
--- old/purpose-5.43.0/po/fi/libpurpose_quick.po        1970-01-01 
01:00:00.000000000 +0100
+++ new/purpose-5.44.0/po/fi/libpurpose_quick.po        2018-03-03 
11:08:17.000000000 +0100
@@ -0,0 +1,33 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# Tommi Nieminen <transla...@legisign.org>, 2018.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2017-03-10 04:11+0100\n"
+"PO-Revision-Date: 2018-02-20 12:56+0200\n"
+"Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
+"Language-Team: Finnish <kde-i18n-...@kde.org>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: AlternativesView.qml:42
+#, kde-format
+msgid "Use"
+msgstr "Käytä"
+
+#: AlternativesView.qml:130
+#, kde-format
+msgid "Run"
+msgstr "Suorita"
+
+#: AlternativesView.qml:138
+#, kde-format
+msgid "Back"
+msgstr "Takaisin"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fi/libpurpose_widgets.po 
new/purpose-5.44.0/po/fi/libpurpose_widgets.po
--- old/purpose-5.43.0/po/fi/libpurpose_widgets.po      1970-01-01 
01:00:00.000000000 +0100
+++ new/purpose-5.44.0/po/fi/libpurpose_widgets.po      2018-03-03 
11:08:17.000000000 +0100
@@ -0,0 +1,28 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# Tommi Nieminen <transla...@legisign.org>, 2018.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2016-11-19 20:19+0100\n"
+"PO-Revision-Date: 2018-02-20 12:57+0200\n"
+"Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
+"Language-Team: Finnish <kde-i18n-...@kde.org>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: JobDialog.qml:83
+#, kde-format
+msgid "Run"
+msgstr "Suorita"
+
+#: JobDialog.qml:91
+#, kde-format
+msgid "Cancel"
+msgstr "Peru"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fi/purpose_email.po 
new/purpose-5.44.0/po/fi/purpose_email.po
--- old/purpose-5.43.0/po/fi/purpose_email.po   1970-01-01 01:00:00.000000000 
+0100
+++ new/purpose-5.44.0/po/fi/purpose_email.po   2018-03-03 11:08:17.000000000 
+0100
@@ -0,0 +1,23 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# Tommi Nieminen <transla...@legisign.org>, 2018.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2017-10-11 07:02+0200\n"
+"PO-Revision-Date: 2018-02-20 12:57+0200\n"
+"Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
+"Language-Team: Finnish <kde-i18n-...@kde.org>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: emailplugin.cpp:94 emailplugin.cpp:118
+#, kde-format
+msgid "Failed to launch email client"
+msgstr "Sähköpostiohjelman käynnistys epäonnistui"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fi/purpose_imgur.po 
new/purpose-5.44.0/po/fi/purpose_imgur.po
--- old/purpose-5.43.0/po/fi/purpose_imgur.po   1970-01-01 01:00:00.000000000 
+0100
+++ new/purpose-5.44.0/po/fi/purpose_imgur.po   2018-03-03 11:08:17.000000000 
+0100
@@ -0,0 +1,28 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# Tommi Nieminen <transla...@legisign.org>, 2018.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2017-03-03 04:08+0100\n"
+"PO-Revision-Date: 2018-02-20 12:58+0200\n"
+"Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
+"Language-Team: Finnish <kde-i18n-...@kde.org>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: imgurplugin.cpp:77
+#, kde-format
+msgid "Error page returned"
+msgstr "Palautettiin virhesivu"
+
+#: imgurplugin.cpp:106
+#, kde-format
+msgid "Uploading files to imgur..."
+msgstr "Lähetetään tiedostoja Imguriin…"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fi/purpose_ktp-sendfile.po 
new/purpose-5.44.0/po/fi/purpose_ktp-sendfile.po
--- old/purpose-5.43.0/po/fi/purpose_ktp-sendfile.po    1970-01-01 
01:00:00.000000000 +0100
+++ new/purpose-5.44.0/po/fi/purpose_ktp-sendfile.po    2018-03-03 
11:08:17.000000000 +0100
@@ -0,0 +1,23 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# Tommi Nieminen <transla...@legisign.org>, 2018.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2016-11-19 20:19+0100\n"
+"PO-Revision-Date: 2018-02-20 12:58+0200\n"
+"Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
+"Language-Team: Finnish <kde-i18n-...@kde.org>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: ktpsendfileplugin.cpp:52
+#, kde-format
+msgid "Couldn't find 'ktp-send-file' executable."
+msgstr "”ktp-send-file”-ohjelmatiedostoa ei löytynyt."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fi/purpose_nextcloud.po 
new/purpose-5.44.0/po/fi/purpose_nextcloud.po
--- old/purpose-5.43.0/po/fi/purpose_nextcloud.po       1970-01-01 
01:00:00.000000000 +0100
+++ new/purpose-5.44.0/po/fi/purpose_nextcloud.po       2018-03-03 
11:08:17.000000000 +0100
@@ -0,0 +1,23 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# Tommi Nieminen <transla...@legisign.org>, 2018.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2017-04-20 02:55+0200\n"
+"PO-Revision-Date: 2018-02-20 12:58+0200\n"
+"Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
+"Language-Team: Finnish <kde-i18n-...@kde.org>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: nextcloudjob.cpp:80
+#, kde-format
+msgid "Invalid folder!"
+msgstr "Virheellinen kansio!"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fi/purpose_pastebin.po 
new/purpose-5.44.0/po/fi/purpose_pastebin.po
--- old/purpose-5.43.0/po/fi/purpose_pastebin.po        1970-01-01 
01:00:00.000000000 +0100
+++ new/purpose-5.44.0/po/fi/purpose_pastebin.po        2018-03-03 
11:08:17.000000000 +0100
@@ -0,0 +1,23 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# Tommi Nieminen <transla...@legisign.org>, 2018.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2016-11-19 20:19+0100\n"
+"PO-Revision-Date: 2018-02-20 12:59+0200\n"
+"Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
+"Language-Team: Finnish <kde-i18n-...@kde.org>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: pastebinplugin.cpp:86
+#, kde-format
+msgid "No information to send"
+msgstr "Ei lähetettävää tietoa"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fi/purpose_saveas.po 
new/purpose-5.44.0/po/fi/purpose_saveas.po
--- old/purpose-5.43.0/po/fi/purpose_saveas.po  1970-01-01 01:00:00.000000000 
+0100
+++ new/purpose-5.44.0/po/fi/purpose_saveas.po  2018-03-03 11:08:17.000000000 
+0100
@@ -0,0 +1,23 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# Tommi Nieminen <transla...@legisign.org>, 2018.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2017-05-31 06:53+0200\n"
+"PO-Revision-Date: 2018-02-20 12:59+0200\n"
+"Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
+"Language-Team: Finnish <kde-i18n-...@kde.org>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: saveasplugin.cpp:59
+#, kde-format
+msgid "No URLs to save"
+msgstr "Ei tallennettavia verkko-osoitteita"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fi/purpose_youtube.po 
new/purpose-5.44.0/po/fi/purpose_youtube.po
--- old/purpose-5.43.0/po/fi/purpose_youtube.po 1970-01-01 01:00:00.000000000 
+0100
+++ new/purpose-5.44.0/po/fi/purpose_youtube.po 2018-03-03 11:08:17.000000000 
+0100
@@ -0,0 +1,23 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# Tommi Nieminen <transla...@legisign.org>, 2018.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2016-11-19 20:19+0100\n"
+"PO-Revision-Date: 2018-02-20 12:59+0200\n"
+"Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
+"Language-Team: Finnish <kde-i18n-...@kde.org>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: youtubejobcomposite.cpp:52
+#, kde-format
+msgid "No YouTube account configured in your accounts."
+msgstr "Tileillesi ei ole määritetty YouTube-tilejä."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fr/purpose_email.po 
new/purpose-5.44.0/po/fr/purpose_email.po
--- old/purpose-5.43.0/po/fr/purpose_email.po   2018-02-05 13:04:31.000000000 
+0100
+++ new/purpose-5.44.0/po/fr/purpose_email.po   2018-03-03 11:08:17.000000000 
+0100
@@ -1,17 +1,18 @@
+# Simon Depiets <sdepi...@gmail.com>, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: purpose_email\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-10-11 07:02+0200\n"
-"PO-Revision-Date: 2017-10-12 02:57+0200\n"
-"Last-Translator: KDE Francophone <kde-francoph...@kde.org>\n"
-"Language-Team: KDE Francophone <kde-francoph...@kde.org>\n"
+"PO-Revision-Date: 2018-01-28 17:13+0800\n"
+"Last-Translator: Simon Depiets <sdepi...@gmail.com>\n"
+"Language-Team: French <kde-francoph...@kde.org>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -19,4 +20,4 @@
 #: emailplugin.cpp:94 emailplugin.cpp:118
 #, kde-format
 msgid "Failed to launch email client"
-msgstr ""
+msgstr "Impossible de lancer le client de messagerie"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fr/purpose_imgur.po 
new/purpose-5.44.0/po/fr/purpose_imgur.po
--- old/purpose-5.43.0/po/fr/purpose_imgur.po   2018-02-05 13:04:31.000000000 
+0100
+++ new/purpose-5.44.0/po/fr/purpose_imgur.po   2018-03-03 11:08:17.000000000 
+0100
@@ -1,17 +1,18 @@
+# Simon Depiets <sdepi...@gmail.com>, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: purpose_imgur\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-03-03 04:08+0100\n"
-"PO-Revision-Date: 2017-05-11 08:20+0200\n"
-"Last-Translator: KDE Francophone <kde-francoph...@kde.org>\n"
-"Language-Team: KDE Francophone <kde-francoph...@kde.org>\n"
+"PO-Revision-Date: 2018-01-28 17:14+0800\n"
+"Last-Translator: Simon Depiets <sdepi...@gmail.com>\n"
+"Language-Team: French <kde-francoph...@kde.org>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -19,9 +20,9 @@
 #: imgurplugin.cpp:77
 #, kde-format
 msgid "Error page returned"
-msgstr ""
+msgstr "Page d'erreur renvoyée"
 
 #: imgurplugin.cpp:106
 #, kde-format
 msgid "Uploading files to imgur..."
-msgstr ""
+msgstr "Envoi des fichiers vers imgur…"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fr/purpose_nextcloud.po 
new/purpose-5.44.0/po/fr/purpose_nextcloud.po
--- old/purpose-5.43.0/po/fr/purpose_nextcloud.po       2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/fr/purpose_nextcloud.po       2018-03-03 
11:08:17.000000000 +0100
@@ -1,17 +1,18 @@
+# Simon Depiets <sdepi...@gmail.com>, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: purpose_nextcloud\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-04-20 02:55+0200\n"
-"PO-Revision-Date: 2017-05-11 08:20+0200\n"
-"Last-Translator: KDE Francophone <kde-francoph...@kde.org>\n"
-"Language-Team: KDE Francophone <kde-francoph...@kde.org>\n"
+"PO-Revision-Date: 2018-01-28 17:14+0800\n"
+"Last-Translator: Simon Depiets <sdepi...@gmail.com>\n"
+"Language-Team: French <kde-francoph...@kde.org>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -19,4 +20,4 @@
 #: nextcloudjob.cpp:80
 #, kde-format
 msgid "Invalid folder!"
-msgstr ""
+msgstr "Dossier non valable !"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fr/purpose_pastebin.po 
new/purpose-5.44.0/po/fr/purpose_pastebin.po
--- old/purpose-5.43.0/po/fr/purpose_pastebin.po        2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/fr/purpose_pastebin.po        2018-03-03 
11:08:17.000000000 +0100
@@ -1,17 +1,18 @@
+# Simon Depiets <sdepi...@gmail.com>, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: purpose_pastebin\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:19+0100\n"
-"PO-Revision-Date: 2017-05-11 08:20+0200\n"
-"Last-Translator: KDE Francophone <kde-francoph...@kde.org>\n"
-"Language-Team: KDE Francophone <kde-francoph...@kde.org>\n"
+"PO-Revision-Date: 2018-01-28 17:14+0800\n"
+"Last-Translator: Simon Depiets <sdepi...@gmail.com>\n"
+"Language-Team: French <kde-francoph...@kde.org>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -19,4 +20,4 @@
 #: pastebinplugin.cpp:86
 #, kde-format
 msgid "No information to send"
-msgstr ""
+msgstr "Aucune information à envoyer"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fr/purpose_reviewboard.po 
new/purpose-5.44.0/po/fr/purpose_reviewboard.po
--- old/purpose-5.43.0/po/fr/purpose_reviewboard.po     2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/fr/purpose_reviewboard.po     2018-03-03 
11:08:17.000000000 +0100
@@ -4,21 +4,23 @@
 # Joëlle Cornavin <jc...@free.fr>, 2010, 2011, 2012, 2013.
 # xavier <xavier.besn...@neuf.fr>, 2013.
 # Vincent PINON <vpi...@april.org>, 2014.
+# Simon Depiets <sdepi...@gmail.com>, 2018.
+# Yoann Laissus <yoann.lais...@gmail.com>, 2018.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: kdevreviewboard\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:19+0100\n"
-"PO-Revision-Date: 2014-09-02 17:20+0200\n"
-"Last-Translator: Vincent PINON <vpi...@april.org>\n"
+"PO-Revision-Date: 2018-02-08 23:07+0100\n"
+"Last-Translator: Yoann Laissus <yoann.lais...@gmail.com>\n"
 "Language-Team: French <kde-francoph...@kde.org>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -26,7 +28,7 @@
 #: reviewboardjobs.cpp:174
 #, kde-format
 msgid "JSON error: %1"
-msgstr ""
+msgstr "Erreur JSON : %1"
 
 #: reviewboardjobs.cpp:179
 #, kde-format
@@ -48,24 +50,20 @@
 msgstr "Impossible d'envoyer le correctif"
 
 #: reviewboardjobs.cpp:327
-#, fuzzy, kde-format
-#| msgid "Could not get reviews list"
+#, kde-format
 msgid "Could not get reviews list"
-msgstr ""
-"Impossible de trouver la liste des analyses :\n"
-"%1"
+msgstr "Impossible d'obtenir la liste des revues"
 
 #: reviewboardjobs.cpp:361
 #, kde-format
 msgid "Could not set metadata"
-msgstr ""
+msgstr "Impossible de définir les métadonnées"
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: reviewboardplugin_config.qml:43 reviewpatch.ui:26
-#, fuzzy, kde-format
-#| msgid "Server"
+#, kde-format
 msgid "Server:"
-msgstr "Serveur"
+msgstr "Serveur :"
 
 #. i18n: ectx: property (text), widget (QLabel, label_3)
 #: reviewboardplugin_config.qml:49 reviewpatch.ui:65
@@ -80,16 +78,14 @@
 msgstr "Mot de passe :"
 
 #: reviewboardplugin_config.qml:61
-#, fuzzy, kde-format
-#| msgid "Repository"
+#, kde-format
 msgid "Repository:"
-msgstr "Dépôt"
+msgstr "Dépôt :"
 
 #: reviewboardplugin_config.qml:86
-#, fuzzy, kde-format
-#| msgid "Update review"
+#, kde-format
 msgid "Update Review:"
-msgstr "Mettre à jour l'analyse"
+msgstr "Mettre à jour la revue :"
 
 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
 #: reviewpatch.ui:17
@@ -137,4 +133,4 @@
 #: reviewpatch.ui:111
 #, kde-format
 msgid "Update review"
-msgstr "Mettre à jour l'analyse"
+msgstr "Mettre à jour la revue"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fr/purpose_saveas.po 
new/purpose-5.44.0/po/fr/purpose_saveas.po
--- old/purpose-5.43.0/po/fr/purpose_saveas.po  2018-02-05 13:04:31.000000000 
+0100
+++ new/purpose-5.44.0/po/fr/purpose_saveas.po  2018-03-03 11:08:17.000000000 
+0100
@@ -1,17 +1,18 @@
+# Simon Depiets <sdepi...@gmail.com>, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: purpose_saveas\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-05-31 06:53+0200\n"
-"PO-Revision-Date: 2017-05-11 08:20+0200\n"
-"Last-Translator: KDE Francophone <kde-francoph...@kde.org>\n"
-"Language-Team: KDE Francophone <kde-francoph...@kde.org>\n"
+"PO-Revision-Date: 2018-01-28 17:15+0800\n"
+"Last-Translator: Simon Depiets <sdepi...@gmail.com>\n"
+"Language-Team: French <kde-francoph...@kde.org>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -19,4 +20,4 @@
 #: saveasplugin.cpp:59
 #, kde-format
 msgid "No URLs to save"
-msgstr ""
+msgstr "Aucune URL à enregistrer"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/fr/purpose_youtube.po 
new/purpose-5.44.0/po/fr/purpose_youtube.po
--- old/purpose-5.43.0/po/fr/purpose_youtube.po 2018-02-05 13:04:31.000000000 
+0100
+++ new/purpose-5.44.0/po/fr/purpose_youtube.po 2018-03-03 11:08:17.000000000 
+0100
@@ -1,17 +1,18 @@
+# Simon Depiets <sdepi...@gmail.com>, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: purpose_youtube\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:19+0100\n"
-"PO-Revision-Date: 2017-05-11 08:20+0200\n"
-"Last-Translator: KDE Francophone <kde-francoph...@kde.org>\n"
-"Language-Team: KDE Francophone <kde-francoph...@kde.org>\n"
+"PO-Revision-Date: 2018-01-28 17:15+0800\n"
+"Last-Translator: Simon Depiets <sdepi...@gmail.com>\n"
+"Language-Team: French <kde-francoph...@kde.org>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -19,4 +20,4 @@
 #: youtubejobcomposite.cpp:52
 #, kde-format
 msgid "No YouTube account configured in your accounts."
-msgstr ""
+msgstr "Aucun compte YouTube n'est configuré au sein de vos comptes."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/id/libpurpose_quick.po 
new/purpose-5.44.0/po/id/libpurpose_quick.po
--- old/purpose-5.43.0/po/id/libpurpose_quick.po        2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/id/libpurpose_quick.po        2018-03-03 
11:08:17.000000000 +0100
@@ -15,7 +15,6 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 2.0\n"
 
 #: AlternativesView.qml:42
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/id/libpurpose_widgets.po 
new/purpose-5.44.0/po/id/libpurpose_widgets.po
--- old/purpose-5.43.0/po/id/libpurpose_widgets.po      2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/id/libpurpose_widgets.po      2018-03-03 
11:08:17.000000000 +0100
@@ -15,7 +15,6 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 2.0\n"
 
 #: JobDialog.qml:83
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/id/purpose_email.po 
new/purpose-5.44.0/po/id/purpose_email.po
--- old/purpose-5.43.0/po/id/purpose_email.po   2018-02-05 13:04:31.000000000 
+0100
+++ new/purpose-5.44.0/po/id/purpose_email.po   2018-03-03 11:08:17.000000000 
+0100
@@ -15,7 +15,6 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 2.0\n"
 
 #: emailplugin.cpp:94 emailplugin.cpp:118
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/id/purpose_imgur.po 
new/purpose-5.44.0/po/id/purpose_imgur.po
--- old/purpose-5.43.0/po/id/purpose_imgur.po   2018-02-05 13:04:31.000000000 
+0100
+++ new/purpose-5.44.0/po/id/purpose_imgur.po   2018-03-03 11:08:17.000000000 
+0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-03-03 04:08+0100\n"
-"PO-Revision-Date: 2018-01-31 21:25+0700\n"
+"PO-Revision-Date: 2018-03-03 08:13+0700\n"
 "Last-Translator: Wantoyo <wanto...@gmail.com>\n"
 "Language-Team: Indonesian <kde-i18n-...@kde.org>\n"
 "Language: id\n"
@@ -25,4 +25,4 @@
 #: imgurplugin.cpp:106
 #, kde-format
 msgid "Uploading files to imgur..."
-msgstr "Pengunggahan file ke imgur..."
+msgstr "Pengunggahan fail ke imgur..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/id/purpose_ktp-sendfile.po 
new/purpose-5.44.0/po/id/purpose_ktp-sendfile.po
--- old/purpose-5.43.0/po/id/purpose_ktp-sendfile.po    2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/id/purpose_ktp-sendfile.po    2018-03-03 
11:08:17.000000000 +0100
@@ -15,7 +15,6 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 2.0\n"
 
 #: ktpsendfileplugin.cpp:52
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/id/purpose_nextcloud.po 
new/purpose-5.44.0/po/id/purpose_nextcloud.po
--- old/purpose-5.43.0/po/id/purpose_nextcloud.po       2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/id/purpose_nextcloud.po       2018-03-03 
11:08:17.000000000 +0100
@@ -15,7 +15,6 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 2.0\n"
 
 #: nextcloudjob.cpp:80
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/id/purpose_pastebin.po 
new/purpose-5.44.0/po/id/purpose_pastebin.po
--- old/purpose-5.43.0/po/id/purpose_pastebin.po        2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/id/purpose_pastebin.po        2018-03-03 
11:08:17.000000000 +0100
@@ -15,7 +15,6 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 2.0\n"
 
 #: pastebinplugin.cpp:86
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/id/purpose_reviewboard.po 
new/purpose-5.44.0/po/id/purpose_reviewboard.po
--- old/purpose-5.43.0/po/id/purpose_reviewboard.po     2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/id/purpose_reviewboard.po     2018-03-03 
11:08:17.000000000 +0100
@@ -15,7 +15,6 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 2.0\n"
 
 #: reviewboardjobs.cpp:174
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/id/purpose_saveas.po 
new/purpose-5.44.0/po/id/purpose_saveas.po
--- old/purpose-5.43.0/po/id/purpose_saveas.po  2018-02-05 13:04:31.000000000 
+0100
+++ new/purpose-5.44.0/po/id/purpose_saveas.po  2018-03-03 11:08:17.000000000 
+0100
@@ -15,7 +15,6 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 2.0\n"
 
 #: saveasplugin.cpp:59
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/id/purpose_youtube.po 
new/purpose-5.44.0/po/id/purpose_youtube.po
--- old/purpose-5.43.0/po/id/purpose_youtube.po 2018-02-05 13:04:31.000000000 
+0100
+++ new/purpose-5.44.0/po/id/purpose_youtube.po 2018-03-03 11:08:17.000000000 
+0100
@@ -15,7 +15,6 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 2.0\n"
 
 #: youtubejobcomposite.cpp:52
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/nn/libpurpose_quick.po 
new/purpose-5.44.0/po/nn/libpurpose_quick.po
--- old/purpose-5.43.0/po/nn/libpurpose_quick.po        1970-01-01 
01:00:00.000000000 +0100
+++ new/purpose-5.44.0/po/nn/libpurpose_quick.po        2018-03-03 
11:08:17.000000000 +0100
@@ -0,0 +1,32 @@
+# Translation of libpurpose_quick to Norwegian Nynorsk
+#
+# Karl Ove Hufthammer <k...@huftis.org>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2017-03-10 04:11+0100\n"
+"PO-Revision-Date: 2018-02-12 20:32+0100\n"
+"Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
+"Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
+"Language: nn\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: AlternativesView.qml:42
+#, kde-format
+msgid "Use"
+msgstr "Bruk"
+
+#: AlternativesView.qml:130
+#, kde-format
+msgid "Run"
+msgstr "Køyr"
+
+#: AlternativesView.qml:138
+#, kde-format
+msgid "Back"
+msgstr "Tilbake"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/nn/libpurpose_widgets.po 
new/purpose-5.44.0/po/nn/libpurpose_widgets.po
--- old/purpose-5.43.0/po/nn/libpurpose_widgets.po      1970-01-01 
01:00:00.000000000 +0100
+++ new/purpose-5.44.0/po/nn/libpurpose_widgets.po      2018-03-03 
11:08:17.000000000 +0100
@@ -0,0 +1,27 @@
+# Translation of libpurpose_widgets to Norwegian Nynorsk
+#
+# Karl Ove Hufthammer <k...@huftis.org>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2016-11-19 20:19+0100\n"
+"PO-Revision-Date: 2018-02-12 20:33+0100\n"
+"Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
+"Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
+"Language: nn\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: JobDialog.qml:83
+#, kde-format
+msgid "Run"
+msgstr "Køyr"
+
+#: JobDialog.qml:91
+#, kde-format
+msgid "Cancel"
+msgstr "Avbryt"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/nn/purpose_email.po 
new/purpose-5.44.0/po/nn/purpose_email.po
--- old/purpose-5.43.0/po/nn/purpose_email.po   1970-01-01 01:00:00.000000000 
+0100
+++ new/purpose-5.44.0/po/nn/purpose_email.po   2018-03-03 11:08:17.000000000 
+0100
@@ -0,0 +1,22 @@
+# Translation of purpose_email to Norwegian Nynorsk
+#
+# Karl Ove Hufthammer <k...@huftis.org>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2017-10-11 07:02+0200\n"
+"PO-Revision-Date: 2018-02-12 20:34+0100\n"
+"Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
+"Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
+"Language: nn\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: emailplugin.cpp:94 emailplugin.cpp:118
+#, kde-format
+msgid "Failed to launch email client"
+msgstr "Klarte ikkje starta e-postprogram"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/nn/purpose_imgur.po 
new/purpose-5.44.0/po/nn/purpose_imgur.po
--- old/purpose-5.43.0/po/nn/purpose_imgur.po   1970-01-01 01:00:00.000000000 
+0100
+++ new/purpose-5.44.0/po/nn/purpose_imgur.po   2018-03-03 11:08:17.000000000 
+0100
@@ -0,0 +1,27 @@
+# Translation of purpose_imgur to Norwegian Nynorsk
+#
+# Karl Ove Hufthammer <k...@huftis.org>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2017-03-03 04:08+0100\n"
+"PO-Revision-Date: 2018-02-12 20:38+0100\n"
+"Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
+"Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
+"Language: nn\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: imgurplugin.cpp:77
+#, kde-format
+msgid "Error page returned"
+msgstr "Fekk feilmeldingsside"
+
+#: imgurplugin.cpp:106
+#, kde-format
+msgid "Uploading files to imgur..."
+msgstr "Lastar opp filer til Imgur"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/nn/purpose_nextcloud.po 
new/purpose-5.44.0/po/nn/purpose_nextcloud.po
--- old/purpose-5.43.0/po/nn/purpose_nextcloud.po       1970-01-01 
01:00:00.000000000 +0100
+++ new/purpose-5.44.0/po/nn/purpose_nextcloud.po       2018-03-03 
11:08:17.000000000 +0100
@@ -0,0 +1,22 @@
+# Translation of purpose_nextcloud to Norwegian Nynorsk
+#
+# Karl Ove Hufthammer <k...@huftis.org>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2017-04-20 02:55+0200\n"
+"PO-Revision-Date: 2018-02-12 20:38+0100\n"
+"Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
+"Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
+"Language: nn\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: nextcloudjob.cpp:80
+#, kde-format
+msgid "Invalid folder!"
+msgstr "Ugyldig mappe"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/nn/purpose_pastebin.po 
new/purpose-5.44.0/po/nn/purpose_pastebin.po
--- old/purpose-5.43.0/po/nn/purpose_pastebin.po        1970-01-01 
01:00:00.000000000 +0100
+++ new/purpose-5.44.0/po/nn/purpose_pastebin.po        2018-03-03 
11:08:17.000000000 +0100
@@ -0,0 +1,22 @@
+# Translation of purpose_pastebin to Norwegian Nynorsk
+#
+# Karl Ove Hufthammer <k...@huftis.org>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2016-11-19 20:19+0100\n"
+"PO-Revision-Date: 2018-02-12 20:37+0100\n"
+"Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
+"Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
+"Language: nn\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: pastebinplugin.cpp:86
+#, kde-format
+msgid "No information to send"
+msgstr "Ingen informasjon å senda"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/nn/purpose_saveas.po 
new/purpose-5.44.0/po/nn/purpose_saveas.po
--- old/purpose-5.43.0/po/nn/purpose_saveas.po  1970-01-01 01:00:00.000000000 
+0100
+++ new/purpose-5.44.0/po/nn/purpose_saveas.po  2018-03-03 11:08:17.000000000 
+0100
@@ -0,0 +1,22 @@
+# Translation of purpose_saveas to Norwegian Nynorsk
+#
+# Karl Ove Hufthammer <k...@huftis.org>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2017-05-31 06:53+0200\n"
+"PO-Revision-Date: 2018-02-12 20:37+0100\n"
+"Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
+"Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
+"Language: nn\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: saveasplugin.cpp:59
+#, kde-format
+msgid "No URLs to save"
+msgstr "Ingen adresser å lagra"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/nn/purpose_youtube.po 
new/purpose-5.44.0/po/nn/purpose_youtube.po
--- old/purpose-5.43.0/po/nn/purpose_youtube.po 1970-01-01 01:00:00.000000000 
+0100
+++ new/purpose-5.44.0/po/nn/purpose_youtube.po 2018-03-03 11:08:17.000000000 
+0100
@@ -0,0 +1,22 @@
+# Translation of purpose_youtube to Norwegian Nynorsk
+#
+# Karl Ove Hufthammer <k...@huftis.org>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2016-11-19 20:19+0100\n"
+"PO-Revision-Date: 2018-02-12 20:37+0100\n"
+"Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
+"Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
+"Language: nn\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: youtubejobcomposite.cpp:52
+#, kde-format
+msgid "No YouTube account configured in your accounts."
+msgstr "Du har ikkje sett opp nokon YouTube-konto i kontooppsettet."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/zh_CN/libpurpose_quick.po 
new/purpose-5.44.0/po/zh_CN/libpurpose_quick.po
--- old/purpose-5.43.0/po/zh_CN/libpurpose_quick.po     2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/zh_CN/libpurpose_quick.po     2018-03-03 
11:08:17.000000000 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-03-10 04:11+0100\n"
-"PO-Revision-Date: 2018-02-01 07:11-0500\n"
+"PO-Revision-Date: 2018-02-28 02:23-0500\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/zh_CN/libpurpose_widgets.po 
new/purpose-5.44.0/po/zh_CN/libpurpose_widgets.po
--- old/purpose-5.43.0/po/zh_CN/libpurpose_widgets.po   2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/zh_CN/libpurpose_widgets.po   2018-03-03 
11:08:17.000000000 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:19+0100\n"
-"PO-Revision-Date: 2018-02-01 07:11-0500\n"
+"PO-Revision-Date: 2018-02-28 02:23-0500\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/zh_CN/purpose_email.po 
new/purpose-5.44.0/po/zh_CN/purpose_email.po
--- old/purpose-5.43.0/po/zh_CN/purpose_email.po        2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/zh_CN/purpose_email.po        2018-03-03 
11:08:17.000000000 +0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-10-11 07:02+0200\n"
-"PO-Revision-Date: 2018-02-01 07:11-0500\n"
+"PO-Revision-Date: 2018-02-28 02:23-0500\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/zh_CN/purpose_imgur.po 
new/purpose-5.44.0/po/zh_CN/purpose_imgur.po
--- old/purpose-5.43.0/po/zh_CN/purpose_imgur.po        2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/zh_CN/purpose_imgur.po        2018-03-03 
11:08:17.000000000 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-03-03 04:08+0100\n"
-"PO-Revision-Date: 2018-02-01 07:11-0500\n"
+"PO-Revision-Date: 2018-02-28 02:23-0500\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/zh_CN/purpose_ktp-sendfile.po 
new/purpose-5.44.0/po/zh_CN/purpose_ktp-sendfile.po
--- old/purpose-5.43.0/po/zh_CN/purpose_ktp-sendfile.po 2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/zh_CN/purpose_ktp-sendfile.po 2018-03-03 
11:08:17.000000000 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:19+0100\n"
-"PO-Revision-Date: 2018-02-01 07:11-0500\n"
+"PO-Revision-Date: 2018-02-28 02:23-0500\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/zh_CN/purpose_nextcloud.po 
new/purpose-5.44.0/po/zh_CN/purpose_nextcloud.po
--- old/purpose-5.43.0/po/zh_CN/purpose_nextcloud.po    2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/zh_CN/purpose_nextcloud.po    2018-03-03 
11:08:17.000000000 +0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-04-20 02:55+0200\n"
-"PO-Revision-Date: 2018-02-01 07:11-0500\n"
+"PO-Revision-Date: 2018-02-28 02:23-0500\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/zh_CN/purpose_pastebin.po 
new/purpose-5.44.0/po/zh_CN/purpose_pastebin.po
--- old/purpose-5.43.0/po/zh_CN/purpose_pastebin.po     2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/zh_CN/purpose_pastebin.po     2018-03-03 
11:08:17.000000000 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:19+0100\n"
-"PO-Revision-Date: 2018-02-01 07:11-0500\n"
+"PO-Revision-Date: 2018-02-28 02:23-0500\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/zh_CN/purpose_reviewboard.po 
new/purpose-5.44.0/po/zh_CN/purpose_reviewboard.po
--- old/purpose-5.43.0/po/zh_CN/purpose_reviewboard.po  2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/zh_CN/purpose_reviewboard.po  2018-03-03 
11:08:17.000000000 +0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:19+0100\n"
-"PO-Revision-Date: 2018-02-01 07:11-0500\n"
+"PO-Revision-Date: 2018-02-28 02:23-0500\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/zh_CN/purpose_saveas.po 
new/purpose-5.44.0/po/zh_CN/purpose_saveas.po
--- old/purpose-5.43.0/po/zh_CN/purpose_saveas.po       2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/zh_CN/purpose_saveas.po       2018-03-03 
11:08:17.000000000 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-05-31 06:53+0200\n"
-"PO-Revision-Date: 2018-02-01 07:11-0500\n"
+"PO-Revision-Date: 2018-02-28 02:23-0500\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/zh_CN/purpose_youtube.po 
new/purpose-5.44.0/po/zh_CN/purpose_youtube.po
--- old/purpose-5.43.0/po/zh_CN/purpose_youtube.po      2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/zh_CN/purpose_youtube.po      2018-03-03 
11:08:17.000000000 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-11-19 20:19+0100\n"
-"PO-Revision-Date: 2018-02-01 07:11-0500\n"
+"PO-Revision-Date: 2018-02-28 02:23-0500\n"
 "Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/po/zh_TW/purpose_imgur.po 
new/purpose-5.44.0/po/zh_TW/purpose_imgur.po
--- old/purpose-5.43.0/po/zh_TW/purpose_imgur.po        2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/po/zh_TW/purpose_imgur.po        2018-03-03 
11:08:17.000000000 +0100
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Jeff Huang <s8321...@gmail.com>, 2016.
+# Jeff Huang <s8321...@gmail.com>, 2016, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: purpose_imgur\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2017-03-03 04:08+0100\n"
-"PO-Revision-Date: 2016-12-14 16:16+0800\n"
+"PO-Revision-Date: 2018-02-21 21:34+0800\n"
 "Last-Translator: Jeff Huang <s8321...@gmail.com>\n"
 "Language-Team: Chinese <kde-i18n-...@kde.org>\n"
 "Language: Traditional Chinese\n"
@@ -25,4 +25,4 @@
 #: imgurplugin.cpp:106
 #, kde-format
 msgid "Uploading files to imgur..."
-msgstr ""
+msgstr "正在上傳檔案至 imgur……"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/purpose.categories 
new/purpose-5.44.0/purpose.categories
--- old/purpose-5.43.0/purpose.categories       1970-01-01 01:00:00.000000000 
+0100
+++ new/purpose-5.44.0/purpose.categories       2018-03-03 11:08:17.000000000 
+0100
@@ -0,0 +1,2 @@
+kdevplatform.plugins.phabricator purpose (phabricator plugin)
+kdevplatform.plugins.reviewboard purpose (reviewboard plugin)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/src/plugins/ExportPluginType.json 
new/purpose-5.44.0/src/plugins/ExportPluginType.json
--- old/purpose-5.43.0/src/plugins/ExportPluginType.json        2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/ExportPluginType.json        2018-03-03 
11:08:17.000000000 +0100
@@ -11,11 +11,12 @@
         "Name[el]": "Αποστολή...",
         "Name[es]": "Enviar...",
         "Name[fi]": "Lähetä…",
-        "Name[fr]": "Téléversement…",
+        "Name[fr]": "Envoyer…",
         "Name[gl]": "Enviar…",
         "Name[hu]": "Feltöltés…",
         "Name[id]": "Uggah...",
         "Name[nl]": "Uploaden...",
+        "Name[nn]": "Last opp …",
         "Name[pl]": "Wyślij...",
         "Name[pt]": "Enviar...",
         "Name[pt_BR]": "Enviar...",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/src/plugins/email/emailplugin.json 
new/purpose-5.44.0/src/plugins/email/emailplugin.json
--- old/purpose-5.43.0/src/plugins/email/emailplugin.json       2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/email/emailplugin.json       2018-03-03 
11:08:17.000000000 +0100
@@ -14,9 +14,12 @@
         "Description[da]": "Send via e-mail",
         "Description[de]": "Als E-Mail senden",
         "Description[es]": "Enviar por correo electrónico",
+        "Description[fi]": "Lähetä sähköpostitse",
+        "Description[fr]": "Envoyer par courriel",
         "Description[gl]": "Enviar por correo electrónico",
         "Description[id]": "Mengirim via Email",
         "Description[nl]": "Verzenden via e-mail",
+        "Description[nn]": "Send via e-post",
         "Description[pl]": "Wyślij pocztą",
         "Description[pt]": "Enviar por E-mail",
         "Description[sv]": "Skicka med e-post",
@@ -24,6 +27,7 @@
         "Description[uk]": "Надсилання електронною поштою",
         "Description[x-test]": "xxSend via Emailxx",
         "Description[zh_CN]": "通过电子邮件发送",
+        "Description[zh_TW]": "透過電子郵件傳送",
         "Icon": "mail-message",
         "License": "GPL",
         "Name": "Send via Email...",
@@ -33,16 +37,20 @@
         "Name[da]": "Send via e-mail...",
         "Name[de]": "Als E-Mail senden ...",
         "Name[es]": "Enviar por correo electrónico...",
+        "Name[fi]": "Lähetä sähköpostitse…",
+        "Name[fr]": "Envoyer par courriel...",
         "Name[gl]": "Enviar por correo electrónico…",
         "Name[id]": "Kirim via Email...",
         "Name[nl]": "Verzenden via e-mail...",
+        "Name[nn]": "Send via e-post …",
         "Name[pl]": "Wyślij pocztą...",
         "Name[pt]": "Enviar por E-mail...",
         "Name[sv]": "Skicka med e-post...",
         "Name[tr]": "Eposta olarak gönder...",
         "Name[uk]": "Надіслати електронною поштою…",
         "Name[x-test]": "xxSend via Email...xx",
-        "Name[zh_CN]": "通过电子邮件发送..."
+        "Name[zh_CN]": "通过电子邮件发送...",
+        "Name[zh_TW]": "透過電子郵件傳送……"
     },
     "X-Purpose-Configuration": [],
     "X-Purpose-Constraints": [],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/src/plugins/imgur/imgurplugin.json 
new/purpose-5.44.0/src/plugins/imgur/imgurplugin.json
--- old/purpose-5.43.0/src/plugins/imgur/imgurplugin.json       2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/imgur/imgurplugin.json       2018-03-03 
11:08:17.000000000 +0100
@@ -17,10 +17,12 @@
         "Description[el]": "Αποστολή εικόνων στο Imgur",
         "Description[es]": "Enviar imágenes a imgur",
         "Description[fi]": "Lähetä kuvia Imguriin",
+        "Description[fr]": "Envoyer des images vers Imgur",
         "Description[gl]": "Enviar imaxes a Imgur.",
         "Description[hu]": "Képek feltöltése az Imgurre",
         "Description[id]": "Mengunggah gambar ke Imgur",
         "Description[nl]": "Afbeeldingen uploaden naar Imgur",
+        "Description[nn]": "Last opp bilete til Imgur",
         "Description[pl]": "Wyślij zdjęcia na imgur",
         "Description[pt]": "Enviar as imagens para o Imgur",
         "Description[pt_BR]": "Envia imagens para Imgur",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/purpose-5.43.0/src/plugins/kdeconnect/kdeconnectplugin.json 
new/purpose-5.44.0/src/plugins/kdeconnect/kdeconnectplugin.json
--- old/purpose-5.43.0/src/plugins/kdeconnect/kdeconnectplugin.json     
2018-02-05 13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/kdeconnect/kdeconnectplugin.json     
2018-03-03 11:08:17.000000000 +0100
@@ -17,10 +17,12 @@
         "Description[el]": "Αποστολή μέσω KDE Connect",
         "Description[es]": "Enviar a través de KDE Connect",
         "Description[fi]": "Lähetä KDE Connectin välityksellä",
+        "Description[fr]": "Envoyer via KDE Connect",
         "Description[gl]": "Enviar mediante KDE Connect.",
         "Description[hu]": "Küldés a KDE Connecttel",
         "Description[id]": "Pengiriman melalui KDE Connect",
         "Description[nl]": "Via KDE Connect verzenden",
+        "Description[nn]": "Send via KDE Connect",
         "Description[pl]": "Wyślij przez KDE Connect",
         "Description[pt]": "Enviar pelo KDE Connect",
         "Description[pt_BR]": "Enviar através do KDE Connect",
@@ -44,10 +46,12 @@
         "Name[el]": "Αποστολή σε συσκευή...",
         "Name[es]": "Enviar a dispositivo...",
         "Name[fi]": "Lähetä laitteeseen…",
+        "Name[fr]": "Envoyer vers un périphérique...",
         "Name[gl]": "Enviar a un dispositivo…",
         "Name[hu]": "Küldés eszközre…",
         "Name[id]": "Kirim Ke Peranti...",
         "Name[nl]": "Naar apparaat verzenden...",
+        "Name[nn]": "Send til eining …",
         "Name[pl]": "Wyślij na urządzenie...",
         "Name[pt]": "Enviar para o Dispositivo...",
         "Name[pt_BR]": "Enviar para o dispositivo...",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/purpose-5.43.0/src/plugins/ktp-sendfile/ktpsendfileplugin.json 
new/purpose-5.44.0/src/plugins/ktp-sendfile/ktpsendfileplugin.json
--- old/purpose-5.43.0/src/plugins/ktp-sendfile/ktpsendfileplugin.json  
2018-02-05 13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/ktp-sendfile/ktpsendfileplugin.json  
2018-03-03 11:08:17.000000000 +0100
@@ -17,10 +17,12 @@
         "Description[el]": "Αποστολή με στιγμιαίο μήνυμα",
         "Description[es]": "Enviar por mensajería instantánea",
         "Description[fi]": "Lähetä pikaviestinnän välityksellä",
+        "Description[fr]": "Envoyer via messagerie instantanée",
         "Description[gl]": "Enviar por mensaxaría instantánea.",
         "Description[hu]": "Küldés azonnali üzenetküldéssel",
         "Description[id]": "Pengiriman melalui Instant Messaging",
         "Description[nl]": "Via Instant Messaging verzenden",
+        "Description[nn]": "Send via lynmelding",
         "Description[pl]": "Wyślij przez komunikatora internetowego",
         "Description[pt]": "Enviar pelas Mensagens Instantâneas",
         "Description[pt_BR]": "Envia por mensagem instantânea",
@@ -45,10 +47,12 @@
         "Name[el]": "Αποστολή σε επαφή...",
         "Name[es]": "Enviar a contacto...",
         "Name[fi]": "Lähetä yhteystiedolle…",
+        "Name[fr]": "Envoyer au contact...",
         "Name[gl]": "Enviar a un contacto…",
         "Name[hu]": "Küldés névjegynek…",
         "Name[id]": "Kirim Ke Kontak...",
         "Name[nl]": "Naar contactpersoon verzenden...",
+        "Name[nn]": "Send til kontakt …",
         "Name[pl]": "Wyślij do kontaktu...",
         "Name[pt]": "Enviar para o Contacto...",
         "Name[pt_BR]": "Enviar para o contato...",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/purpose-5.43.0/src/plugins/nextcloud/nextcloudplugin.json 
new/purpose-5.44.0/src/plugins/nextcloud/nextcloudplugin.json
--- old/purpose-5.43.0/src/plugins/nextcloud/nextcloudplugin.json       
2018-02-05 13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/nextcloud/nextcloudplugin.json       
2018-03-03 11:08:17.000000000 +0100
@@ -15,9 +15,12 @@
         "Description[da]": "Upload filer til Nextcloud",
         "Description[de]": "Dateien auf Nextcloud hochladen",
         "Description[es]": "Enviar archivos a Nextcloud",
+        "Description[fi]": "Lähetä tiedostoja Nextcloudiin",
+        "Description[fr]": "Envoyer des fichiers vers Nextcloud",
         "Description[gl]": "Enviar ficheiros a NextCloud.",
-        "Description[id]": "Unggah file ke Nextcloud",
+        "Description[id]": "Unggah fail ke Nextcloud",
         "Description[nl]": "Bestanden naar Nextcloud uploaden",
+        "Description[nn]": "Last opp filer til Nextcloud",
         "Description[pl]": "Wyślij pliki na Nextcloud",
         "Description[pt]": "Enviar os vídeos para o NextCloud",
         "Description[sk]": "Nahrať súbory na Nextcloud",
@@ -26,6 +29,7 @@
         "Description[uk]": "Вивантаження відео на Nextcloud",
         "Description[x-test]": "xxUpload files to Nextcloudxx",
         "Description[zh_CN]": "将文件上传到 Nextcloud",
+        "Description[zh_TW]": "上傳檔案到 Nextcloud",
         "Icon": "edit-paste",
         "License": "GPL",
         "Name": "NextCloud",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/purpose-5.43.0/src/plugins/pastebin/pastebinplugin.json 
new/purpose-5.44.0/src/plugins/pastebin/pastebinplugin.json
--- old/purpose-5.43.0/src/plugins/pastebin/pastebinplugin.json 2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/pastebin/pastebinplugin.json 2018-03-03 
11:08:17.000000000 +0100
@@ -16,10 +16,12 @@
         "Description[el]": "Αποστολή κειμένου στο Pastebin",
         "Description[es]": "Enviar texto a Pastebin",
         "Description[fi]": "Lähetä tekstiä Pastebiniin",
+        "Description[fr]": "Envoyer du texte vers Pastebin",
         "Description[gl]": "Enviar texto a Pastebin.",
         "Description[hu]": "Szöveg feltöltése a Pastebinre",
         "Description[id]": "Unggah teks ke Pastebin",
         "Description[nl]": "Tekst uploaden naar Pastebin",
+        "Description[nn]": "Last opp tekst til Pastebin",
         "Description[pl]": "Wyślij tekst na Pastebin",
         "Description[pt]": "Enviar o texto para o Pastebin",
         "Description[pt_BR]": "Enviar o texto para o Pastebin",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/purpose-5.43.0/src/plugins/phabricator/phabricatorplugin.json 
new/purpose-5.44.0/src/plugins/phabricator/phabricatorplugin.json
--- old/purpose-5.43.0/src/plugins/phabricator/phabricatorplugin.json   
2018-02-05 13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/phabricator/phabricatorplugin.json   
2018-03-03 11:08:17.000000000 +0100
@@ -15,10 +15,13 @@
         "Description[da]": "Upload rettelser til Phabricator",
         "Description[de]": "Patch auf Phabricator hochladen",
         "Description[es]": "Enviar parches a Phabricator",
+        "Description[fi]": "Lähetä paikkauksia Phabricatoriin",
+        "Description[fr]": "Envoyer des correctifs vers Phabricator",
         "Description[gl]": "Enviar parches a Phabricator.",
         "Description[hu]": "Patchek feltöltése a Phabricatorra",
         "Description[id]": "Unggah tambalan ke Phabricator",
         "Description[nl]": "Patches uploaden naar Phabricator",
+        "Description[nn]": "Last opp patch-filer til Phabricator",
         "Description[pl]": "Wyślij łatę na Phabricator",
         "Description[pt]": "Enviar as modificações para o Phabricator",
         "Description[sk]": "Nahrať záplaty na Phabricator",
@@ -27,6 +30,7 @@
         "Description[uk]": "Вивантажити латки на Phabricator",
         "Description[x-test]": "xxUpload patches to Phabricatorxx",
         "Description[zh_CN]": "将补丁上传到 Phabricator",
+        "Description[zh_TW]": "上傳修補程式到 Phabricator",
         "Icon": "Phabricator-purpose",
         "License": "GPL",
         "Name": "Phabricator",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/purpose-5.43.0/src/plugins/reviewboard/CMakeLists.txt 
new/purpose-5.44.0/src/plugins/reviewboard/CMakeLists.txt
--- old/purpose-5.43.0/src/plugins/reviewboard/CMakeLists.txt   2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/reviewboard/CMakeLists.txt   2018-03-03 
11:08:17.000000000 +0100
@@ -1,7 +1,9 @@
 add_definitions(-DTRANSLATION_DOMAIN=\"purpose_reviewboard\")
 add_subdirectory(icons)
 
-add_library(ReviewboardHelpers reviewboardjobs.cpp debug.cpp)
+ecm_qt_declare_logging_category(ReviewboardHelpers_SRCS HEADER debug.h 
IDENTIFIER PLUGIN_REVIEWBOARD CATEGORY_NAME kdevplatform.plugins.reviewboard)
+
+add_library(ReviewboardHelpers reviewboardjobs.cpp ${ReviewboardHelpers_SRCS})
 generate_export_header(ReviewboardHelpers EXPORT_FILE_NAME 
reviewboardhelpers_export.h)
 target_link_libraries(ReviewboardHelpers KF5::CoreAddons KF5::I18n 
Qt5::Network)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/src/plugins/reviewboard/debug.cpp 
new/purpose-5.44.0/src/plugins/reviewboard/debug.cpp
--- old/purpose-5.43.0/src/plugins/reviewboard/debug.cpp        2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/reviewboard/debug.cpp        1970-01-01 
01:00:00.000000000 +0100
@@ -1,22 +0,0 @@
-/*
- * This file is part of KDevelop
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Library General Public License as
- * published by the Free Software Foundation; either version 2 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the
- * Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-
-#include "debug.h"
-
-Q_LOGGING_CATEGORY(PLUGIN_REVIEWBOARD, "kdevplatform.plugins.reviewboard")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/src/plugins/reviewboard/debug.h 
new/purpose-5.44.0/src/plugins/reviewboard/debug.h
--- old/purpose-5.43.0/src/plugins/reviewboard/debug.h  2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/reviewboard/debug.h  1970-01-01 
01:00:00.000000000 +0100
@@ -1,26 +0,0 @@
-/*
- * This file is part of KDevelop
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Library General Public License as
- * published by the Free Software Foundation; either version 2 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the
- * Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-
-#ifndef KDEVPLATFORM_REVIEWBOARD_DEBUG_H
-#define KDEVPLATFORM_REVIEWBOARD_DEBUG_H
-
-#include <QLoggingCategory>
-Q_DECLARE_LOGGING_CATEGORY(PLUGIN_REVIEWBOARD)
-
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/purpose-5.43.0/src/plugins/reviewboard/reviewboardplugin.json 
new/purpose-5.44.0/src/plugins/reviewboard/reviewboardplugin.json
--- old/purpose-5.43.0/src/plugins/reviewboard/reviewboardplugin.json   
2018-02-05 13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/reviewboard/reviewboardplugin.json   
2018-03-03 11:08:17.000000000 +0100
@@ -16,10 +16,12 @@
         "Description[el]": "Αποστολή διορθώσεων κώδικα στο reviewboard",
         "Description[es]": "Enviar imágenes a reviewboard",
         "Description[fi]": "Lähetä paikkauksia Review Boardiin",
+        "Description[fr]": "Envoyer des correctifs vers reviewboard",
         "Description[gl]": "Enviar parches a reviewboard.",
         "Description[hu]": "Patchek feltöltése a Review Boardra",
         "Description[id]": "Unggah tambalan/patches ke reviewboard",
         "Description[nl]": "Patches uploaden naar reviewboard",
+        "Description[nn]": "Last opp patch-filer til Review Board",
         "Description[pl]": "Wyślij łaty do rady opiniującej",
         "Description[pt]": "Enviar as modificações para o grupo de revisão",
         "Description[pt_BR]": "Enviar modificações para o painel de revisão",
@@ -35,7 +37,6 @@
         "License": "GPL",
         "Name": "Review Board",
         "Name[ast]": "Xunta revisora",
-        "Name[fr]": "Tableau de bord de révision",
         "Name[nl]": "Reviewboard",
         "Name[pl]": "Rada opiniująca",
         "Name[pt]": "Painel de Revisão",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/src/plugins/saveas/saveasplugin.json 
new/purpose-5.44.0/src/plugins/saveas/saveasplugin.json
--- old/purpose-5.43.0/src/plugins/saveas/saveasplugin.json     2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/saveas/saveasplugin.json     2018-03-03 
11:08:17.000000000 +0100
@@ -16,10 +16,12 @@
         "Description[el]": "Αποθήκευση του διαμοιρασμένου στην επιλεγμένη 
τοποθεσία.",
         "Description[es]": "Guarda el recurso compartido en la ubicación 
elegida.",
         "Description[fi]": "Tallentaa jaettavan asian valittuun sijaintiin.",
+        "Description[fr]": "Enregistre le partage à l'emplacement choisi.",
         "Description[gl]": "Garda a compartición no lugar escollido.",
         "Description[hu]": "Megosztás mentése a kiválasztott helyre.",
         "Description[id]": "Simpanan berbagi ke dalam lokasi yang dipilih",
         "Description[nl]": "Slaat de share op in de gekozen locatie.",
+        "Description[nn]": "Lagra til valt plassering.",
         "Description[pl]": "Zapisuje plik udostępniony w wybranym miejscu.",
         "Description[pt]": "Grava a partilha na localização indicada.",
         "Description[pt_BR]": "Salva o compartilhamento na localização 
indicada.",
@@ -42,10 +44,12 @@
         "Name[el]": "Αποθήκευση ως...",
         "Name[es]": "Guardar como...",
         "Name[fi]": "Tallenna nimellä…",
+        "Name[fr]": "Enregistrer sous...",
         "Name[gl]": "Gardar como…",
         "Name[hu]": "Mentés másként…",
         "Name[id]": "Simpan Sebagai...",
         "Name[nl]": "Opslaan als...",
+        "Name[nn]": "Lagra som …",
         "Name[pl]": "Zapisz jako...",
         "Name[pt]": "Gravar como...",
         "Name[pt_BR]": "Salvar como...",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/purpose-5.43.0/src/plugins/twitter/metadata.json 
new/purpose-5.44.0/src/plugins/twitter/metadata.json
--- old/purpose-5.43.0/src/plugins/twitter/metadata.json        2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/twitter/metadata.json        2018-03-03 
11:08:17.000000000 +0100
@@ -17,10 +17,12 @@
         "Description[el]": "Διαμοιρασμός πολυμέσων στο Twitter.",
         "Description[es]": "Comparte el medio en Twitter.",
         "Description[fi]": "Jakaa mediaa Twitteriin.",
+        "Description[fr]": "Partager le contenu sur Twitter.",
         "Description[gl]": "Comparte contido en Twitter.",
         "Description[hu]": "Média megosztása Twitteren.",
         "Description[id]": "Media berbagi pada Twitter.",
         "Description[nl]": "Deelt media op Twitter.",
+        "Description[nn]": "Del mediefil på Twitter.",
         "Description[pl]": "Udostępnia multimedia na Twitterze.",
         "Description[pt]": "Partilha conteúdos no Twitter.",
         "Description[pt_BR]": "Compartilha mídias no Twitter.",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/purpose-5.43.0/src/plugins/youtube/youtubeplugin.json 
new/purpose-5.44.0/src/plugins/youtube/youtubeplugin.json
--- old/purpose-5.43.0/src/plugins/youtube/youtubeplugin.json   2018-02-05 
13:04:31.000000000 +0100
+++ new/purpose-5.44.0/src/plugins/youtube/youtubeplugin.json   2018-03-03 
11:08:17.000000000 +0100
@@ -17,10 +17,12 @@
         "Description[el]": "Αποστολή βίντεο στο YouTube",
         "Description[es]": "Enviar vídeos a YouTube",
         "Description[fi]": "Lähetä videoita YouTubeen",
+        "Description[fr]": "Envoyer des vidéos vers YouTube",
         "Description[gl]": "Enviar vídeos a YouTube.",
         "Description[hu]": "Videók feltöltése YouTube-ra",
         "Description[id]": "Unggah video ke YouTube",
         "Description[nl]": "Video's naar YouTube uploaden",
+        "Description[nn]": "Last opp videoar til YouTube",
         "Description[pl]": "Wyślij film na YouTube",
         "Description[pt]": "Enviar os vídeos para o YouTube",
         "Description[pt_BR]": "Envia vídeos para o YouTube",


Reply via email to