Hello community,

here is the log from the commit of package kamera for openSUSE:Factory checked 
in at 2018-11-12 09:26:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kamera (Old)
 and      /work/SRC/openSUSE:Factory/.kamera.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kamera"

Mon Nov 12 09:26:38 2018 rev:98 rq:647987 version:18.08.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/kamera/kamera.changes    2018-10-15 
09:23:08.436500262 +0200
+++ /work/SRC/openSUSE:Factory/.kamera.new/kamera.changes       2018-11-12 
09:26:40.330351345 +0100
@@ -1,0 +2,13 @@
+Thu Nov 08 20:43:31 UTC 2018 - [email protected]
+
+- Update to 18.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.08.3.php
+- Changes since 18.08.2:
+  * Set mime type for special text files
+  * Fix opening special text files
+  * Add Messages.sh
+  * Add QCoreApplication
+
+-------------------------------------------------------------------

Old:
----
  kamera-18.08.2.tar.xz

New:
----
  kamera-18.08.3.tar.xz

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

Other differences:
------------------
++++++ kamera.spec ++++++
--- /var/tmp/diff_new_pack.q30qOL/_old  2018-11-12 09:26:40.862350681 +0100
+++ /var/tmp/diff_new_pack.q30qOL/_new  2018-11-12 09:26:40.862350681 +0100
@@ -19,7 +19,7 @@
 %bcond_without lang
 
 Name:           kamera
-Version:        18.08.2
+Version:        18.08.3
 Release:        0
 %define kf5_version 5.26.0
 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)

++++++ kamera-18.08.2.tar.xz -> kamera-18.08.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/CMakeLists.txt 
new/kamera-18.08.3/CMakeLists.txt
--- old/kamera-18.08.2/CMakeLists.txt   2018-10-09 02:15:29.000000000 +0200
+++ new/kamera-18.08.3/CMakeLists.txt   2018-11-06 01:12:42.000000000 +0100
@@ -4,7 +4,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "18")
 set (KDE_APPLICATIONS_VERSION_MINOR "08")
-set (KDE_APPLICATIONS_VERSION_MICRO "2")
+set (KDE_APPLICATIONS_VERSION_MICRO "3")
 set(KDE_APPLICATIONS_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 set(PROJECT_VERSION ${KDE_APPLICATIONS_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/kioslave/CMakeLists.txt 
new/kamera-18.08.3/kioslave/CMakeLists.txt
--- old/kamera-18.08.2/kioslave/CMakeLists.txt  2018-10-03 19:02:17.000000000 
+0200
+++ new/kamera-18.08.3/kioslave/CMakeLists.txt  2018-11-02 16:10:42.000000000 
+0100
@@ -1,6 +1,8 @@
 
 ########### next target ###############
 
+add_definitions(-DTRANSLATION_DOMAIN=\"kio5_kamera\")
+
 set(kio_kamera_PART_SRCS kamera.cpp )
 
 add_library(kio_kamera MODULE ${kio_kamera_PART_SRCS})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/kioslave/Messages.sh 
new/kamera-18.08.3/kioslave/Messages.sh
--- old/kamera-18.08.2/kioslave/Messages.sh     1970-01-01 01:00:00.000000000 
+0100
+++ new/kamera-18.08.3/kioslave/Messages.sh     2018-11-02 16:10:42.000000000 
+0100
@@ -0,0 +1,2 @@
+#! /usr/bin/env bash
+$XGETTEXT *.cpp -o $podir/kio5_kamera.pot
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/kioslave/kamera.cpp 
new/kamera-18.08.3/kioslave/kamera.cpp
--- old/kamera-18.08.2/kioslave/kamera.cpp      2018-10-03 19:02:17.000000000 
+0200
+++ new/kamera-18.08.3/kioslave/kamera.cpp      2018-11-02 16:10:42.000000000 
+0100
@@ -84,6 +84,8 @@
 
 int kdemain(int argc, char **argv)
 {
+    QCoreApplication app(argc, argv);
+
     QCoreApplication::setApplicationName("kio_kamera");
     KLocalizedString::setApplicationDomain("kio_kamera");
 
@@ -496,6 +498,24 @@
     if (directory == "/") {
         KIO::UDSEntry entry;
 
+#define GPHOTO_TEXT_FILE(xx) \
+        if (!file.compare(#xx".txt")) { \
+            CameraText xx; \
+            gpr = gp_camera_get_about(m_camera,  &xx, m_context); \
+            if (gpr != GP_OK) { \
+                error(KIO::ERR_DOES_NOT_EXIST, xurl.fileName()); \
+                return; \
+            } \
+            translateTextToUDS(entry,#xx".txt",xx.text); \
+            statEntry(entry); \
+            finished(); \
+            return; \
+        }
+        GPHOTO_TEXT_FILE(about);
+        GPHOTO_TEXT_FILE(manual);
+        GPHOTO_TEXT_FILE(summary);
+#undef GPHOTO_TEXT_FILE
+
         QString xname = current_camera + "@" + current_port;
         entry.insert( KIO::UDSEntry::UDS_NAME, path_quote(xname));
         entry.insert( KIO::UDSEntry::UDS_DISPLAY_NAME, current_camera);
@@ -528,24 +548,6 @@
         return;
     }
 
-#define GPHOTO_TEXT_FILE(xx) \
-    if (!directory.compare("/") && !file.compare(#xx".txt")) { \
-        CameraText xx; \
-        gpr = gp_camera_get_about(m_camera,  &xx, m_context); \
-        if (gpr != GP_OK) { \
-            error(KIO::ERR_DOES_NOT_EXIST, xurl.fileName()); \
-            return; \
-        } \
-        translateTextToUDS(entry,#xx".txt",xx.text); \
-        statEntry(entry); \
-        finished(); \
-        return; \
-    }
-    GPHOTO_TEXT_FILE(about);
-    GPHOTO_TEXT_FILE(manual);
-    GPHOTO_TEXT_FILE(summary);
-#undef GPHOTO_TEXT_FILE
-
     const char *name;
     for(int i = 0; i < gp_list_count(dirList); i++) {
         gp_list_get_name(dirList, i, &name);
@@ -970,6 +972,7 @@
     udsEntry.insert(KIO::UDSEntry::UDS_DISPLAY_NAME,fn);
     udsEntry.insert(KIO::UDSEntry::UDS_SIZE,strlen(text));
     udsEntry.insert(KIO::UDSEntry::UDS_ACCESS,(S_IRUSR | S_IRGRP | S_IROTH));
+    udsEntry.insert(KIO::UDSEntry::UDS_MIME_TYPE, QString("text/plain"));
 }
 
 // translate a CameraFileInfo to a UDSFieldType
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/ca/kio5_kamera.po 
new/kamera-18.08.3/po/ca/kio5_kamera.po
--- old/kamera-18.08.2/po/ca/kio5_kamera.po     1970-01-01 01:00:00.000000000 
+0100
+++ new/kamera-18.08.3/po/ca/kio5_kamera.po     2018-11-06 01:12:41.000000000 
+0100
@@ -0,0 +1,25 @@
+# Translation of kio5_kamera.po to Catalan
+# Copyright (C) 2018 This_file_is_part_of_KDE
+# This file is distributed under the license LGPL version 2.1 or
+# version 3 or later versions approved by the membership of KDE e.V.
+#
+# Josep Ma. Ferrer <[email protected]>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: kio5_kamera\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-10-13 06:38+0200\n"
+"PO-Revision-Date: 2018-10-13 20:17+0100\n"
+"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Language-Team: Catalan <[email protected]>\n"
+"Language: ca\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"
+
+#: kamera.cpp:798
+#, kde-format
+msgid "Could not read. Reason: %1"
+msgstr "No s'ha pogut llegir. Motiu: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/ca@valencia/kio5_kamera.po 
new/kamera-18.08.3/po/ca@valencia/kio5_kamera.po
--- old/kamera-18.08.2/po/ca@valencia/kio5_kamera.po    1970-01-01 
01:00:00.000000000 +0100
+++ new/kamera-18.08.3/po/ca@valencia/kio5_kamera.po    2018-11-06 
01:12:41.000000000 +0100
@@ -0,0 +1,25 @@
+# Translation of kio5_kamera.po to Catalan (Valencian)
+# Copyright (C) 2018 This_file_is_part_of_KDE
+# This file is distributed under the license LGPL version 2.1 or
+# version 3 or later versions approved by the membership of KDE e.V.
+#
+# Josep Ma. Ferrer <[email protected]>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: kio5_kamera\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-10-13 06:38+0200\n"
+"PO-Revision-Date: 2018-10-13 20:17+0100\n"
+"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Language-Team: Catalan <[email protected]>\n"
+"Language: ca@valencia\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"
+
+#: kamera.cpp:798
+#, kde-format
+msgid "Could not read. Reason: %1"
+msgstr "No s'ha pogut llegir. Motiu: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/cs/kio5_kamera.po 
new/kamera-18.08.3/po/cs/kio5_kamera.po
--- old/kamera-18.08.2/po/cs/kio5_kamera.po     1970-01-01 01:00:00.000000000 
+0100
+++ new/kamera-18.08.3/po/cs/kio5_kamera.po     2018-11-06 01:12:41.000000000 
+0100
@@ -0,0 +1,23 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the kamera package.
+# Vit Pelcak <[email protected]>, 2018.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: kamera\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-10-13 06:38+0200\n"
+"PO-Revision-Date: 2018-10-15 08:18+0100\n"
+"Last-Translator: Vit Pelcak <[email protected]>\n"
+"Language-Team: Czech <[email protected]>\n"
+"Language: cs\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: kamera.cpp:798
+#, kde-format
+msgid "Could not read. Reason: %1"
+msgstr "Nelze přečíst. Důvod: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/de/kio5_kamera.po 
new/kamera-18.08.3/po/de/kio5_kamera.po
--- old/kamera-18.08.2/po/de/kio5_kamera.po     1970-01-01 01:00:00.000000000 
+0100
+++ new/kamera-18.08.3/po/de/kio5_kamera.po     2018-11-06 01:12:41.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.
+#
+# Burkhard Lück <[email protected]>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-10-13 06:38+0200\n"
+"PO-Revision-Date: 2018-10-15 11:25+0100\n"
+"Last-Translator: Burkhard Lück <[email protected]>\n"
+"Language-Team: German <[email protected]>\n"
+"Language: de\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"
+
+#: kamera.cpp:798
+#, kde-format
+msgid "Could not read. Reason: %1"
+msgstr "Lesen nicht möglich. Grund : %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/en_GB/kio5_kamera.po 
new/kamera-18.08.3/po/en_GB/kio5_kamera.po
--- old/kamera-18.08.2/po/en_GB/kio5_kamera.po  1970-01-01 01:00:00.000000000 
+0100
+++ new/kamera-18.08.3/po/en_GB/kio5_kamera.po  2018-11-06 01:12:41.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.
+#
+# Steve Allewell <[email protected]>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-10-13 06:38+0200\n"
+"PO-Revision-Date: 2018-10-27 20:39+0100\n"
+"Last-Translator: Steve Allewell <[email protected]>\n"
+"Language-Team: British English <[email protected]>\n"
+"Language: en_GB\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"
+
+#: kamera.cpp:798
+#, kde-format
+msgid "Could not read. Reason: %1"
+msgstr "Could not read. Reason: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/es/kio5_kamera.po 
new/kamera-18.08.3/po/es/kio5_kamera.po
--- old/kamera-18.08.2/po/es/kio5_kamera.po     1970-01-01 01:00:00.000000000 
+0100
+++ new/kamera-18.08.3/po/es/kio5_kamera.po     2018-11-06 01:12:41.000000000 
+0100
@@ -0,0 +1,25 @@
+# Spanish translations for kio5_kamera.po package.
+# Copyright (C) 2018 This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Automatically generated, 2018.
+# Eloy Cuadra <[email protected]>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: kio5_kamera\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-10-13 06:38+0200\n"
+"PO-Revision-Date: 2018-10-15 17:16+0100\n"
+"Last-Translator: Eloy Cuadra <[email protected]>\n"
+"Language-Team: Spanish <[email protected]>\n"
+"Language: es\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"
+
+#: kamera.cpp:798
+#, kde-format
+msgid "Could not read. Reason: %1"
+msgstr "No se puede leer. Motivo: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/nl/kio5_kamera.po 
new/kamera-18.08.3/po/nl/kio5_kamera.po
--- old/kamera-18.08.2/po/nl/kio5_kamera.po     1970-01-01 01:00:00.000000000 
+0100
+++ new/kamera-18.08.3/po/nl/kio5_kamera.po     2018-11-06 01:12:42.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.
+#
+# Freek de Kruijf <[email protected]>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-10-13 06:38+0200\n"
+"PO-Revision-Date: 2018-10-13 11:39+0100\n"
+"Last-Translator: Freek de Kruijf <[email protected]>\n"
+"Language-Team: Dutch <[email protected]>\n"
+"Language: nl\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"
+
+#: kamera.cpp:798
+#, kde-format
+msgid "Could not read. Reason: %1"
+msgstr "Kon niet lezen. Reden: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/pl/kio5_kamera.po 
new/kamera-18.08.3/po/pl/kio5_kamera.po
--- old/kamera-18.08.2/po/pl/kio5_kamera.po     1970-01-01 01:00:00.000000000 
+0100
+++ new/kamera-18.08.3/po/pl/kio5_kamera.po     2018-11-06 01:12:42.000000000 
+0100
@@ -0,0 +1,24 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Łukasz Wojniłowicz <[email protected]>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-10-13 06:38+0200\n"
+"PO-Revision-Date: 2018-10-13 11:42+0100\n"
+"Last-Translator: Łukasz Wojniłowicz <[email protected]>\n"
+"Language-Team: Polish <[email protected]>\n"
+"Language: pl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
+"|| n%100>=20) ? 1 : 2);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: kamera.cpp:798
+#, kde-format
+msgid "Could not read. Reason: %1"
+msgstr "Nie można odczytać. Powód: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/pt/kio5_kamera.po 
new/kamera-18.08.3/po/pt/kio5_kamera.po
--- old/kamera-18.08.2/po/pt/kio5_kamera.po     1970-01-01 01:00:00.000000000 
+0100
+++ new/kamera-18.08.3/po/pt/kio5_kamera.po     2018-11-06 01:12:42.000000000 
+0100
@@ -0,0 +1,18 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: kamera\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-10-13 06:38+0200\n"
+"PO-Revision-Date: 2018-10-13 11:21+0100\n"
+"Last-Translator: José Nuno Coelho Pires <[email protected]>\n"
+"Language-Team: Portuguese <[email protected]>\n"
+"Language: \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"
+
+#: kamera.cpp:798
+#, kde-format
+msgid "Could not read. Reason: %1"
+msgstr "Não foi possível ler. Razão: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/pt_BR/kio5_kamera.po 
new/kamera-18.08.3/po/pt_BR/kio5_kamera.po
--- old/kamera-18.08.2/po/pt_BR/kio5_kamera.po  1970-01-01 01:00:00.000000000 
+0100
+++ new/kamera-18.08.3/po/pt_BR/kio5_kamera.po  2018-11-06 01:12:42.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.
+#
+# Luiz Fernando Ranghetti <[email protected]>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-10-13 06:38+0200\n"
+"PO-Revision-Date: 2018-10-21 16:39-0300\n"
+"Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n"
+"Language-Team: Portuguese <[email protected]>\n"
+"Language: pt_BR\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"
+
+#: kamera.cpp:798
+#, kde-format
+msgid "Could not read. Reason: %1"
+msgstr "Não foi possível ler. Motivo: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/sk/kio5_kamera.po 
new/kamera-18.08.3/po/sk/kio5_kamera.po
--- old/kamera-18.08.2/po/sk/kio5_kamera.po     1970-01-01 01:00:00.000000000 
+0100
+++ new/kamera-18.08.3/po/sk/kio5_kamera.po     2018-11-06 01:12:42.000000000 
+0100
@@ -0,0 +1,21 @@
+# translation of kio5_kamera.po to Slovak
+# Roman Paholik <[email protected]>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: kio5_kamera\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-10-13 06:38+0200\n"
+"PO-Revision-Date: 2018-10-20 14:22+0100\n"
+"Last-Translator: Roman Paholik <[email protected]>\n"
+"Language-Team: Slovak <[email protected]>\n"
+"Language: sk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 2.0\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+
+#: kamera.cpp:798
+#, kde-format
+msgid "Could not read. Reason: %1"
+msgstr "Nemôžem čítať. Dôvod: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/sv/kio5_kamera.po 
new/kamera-18.08.3/po/sv/kio5_kamera.po
--- old/kamera-18.08.2/po/sv/kio5_kamera.po     1970-01-01 01:00:00.000000000 
+0100
+++ new/kamera-18.08.3/po/sv/kio5_kamera.po     2018-11-06 01:12:42.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.
+#
+# Stefan Asserhäll <[email protected]>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-10-13 06:38+0200\n"
+"PO-Revision-Date: 2018-10-13 14:48+0100\n"
+"Last-Translator: Stefan Asserhäll <[email protected]>\n"
+"Language-Team: Swedish <[email protected]>\n"
+"Language: sv_SE\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"
+
+#: kamera.cpp:798
+#, kde-format
+msgid "Could not read. Reason: %1"
+msgstr "Kunde inte läsa. Orsak: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/uk/kio5_kamera.po 
new/kamera-18.08.3/po/uk/kio5_kamera.po
--- old/kamera-18.08.2/po/uk/kio5_kamera.po     1970-01-01 01:00:00.000000000 
+0100
+++ new/kamera-18.08.3/po/uk/kio5_kamera.po     2018-11-06 01:12:42.000000000 
+0100
@@ -0,0 +1,26 @@
+# Translation of kio5_kamera.po to Ukrainian
+# Copyright (C) 2018 This_file_is_part_of_KDE
+# This file is distributed under the license LGPL version 2.1 or
+# version 3 or later versions approved by the membership of KDE e.V.
+#
+# Yuri Chornoivan <[email protected]>, 2018.
+msgid ""
+msgstr ""
+"Project-Id-Version: kio5_kamera\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-10-13 06:38+0200\n"
+"PO-Revision-Date: 2018-10-13 08:31+0300\n"
+"Last-Translator: Yuri Chornoivan <[email protected]>\n"
+"Language-Team: Ukrainian <[email protected]>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n"
+"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: kamera.cpp:798
+#, kde-format
+msgid "Could not read. Reason: %1"
+msgstr "Не вдалося прочитати. Причина: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/zh_CN/kcmkamera.po 
new/kamera-18.08.3/po/zh_CN/kcmkamera.po
--- old/kamera-18.08.2/po/zh_CN/kcmkamera.po    2018-10-09 02:15:28.000000000 
+0200
+++ new/kamera-18.08.3/po/zh_CN/kcmkamera.po    2018-11-06 01:12:42.000000000 
+0100
@@ -12,8 +12,8 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-03-23 03:27+0100\n"
-"PO-Revision-Date: 2018-09-28 19:53\n"
-"Last-Translator: guoyunhe <[email protected]>\n"
+"PO-Revision-Date: 2018-11-01 23:21\n"
+"Last-Translator: guoyunhe <[email protected]>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kamera-18.08.2/po/zh_CN/kio5_kamera.po 
new/kamera-18.08.3/po/zh_CN/kio5_kamera.po
--- old/kamera-18.08.2/po/zh_CN/kio5_kamera.po  1970-01-01 01:00:00.000000000 
+0100
+++ new/kamera-18.08.3/po/zh_CN/kio5_kamera.po  2018-11-06 01:12:42.000000000 
+0100
@@ -0,0 +1,27 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: kdeorg\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-10-13 06:38+0200\n"
+"PO-Revision-Date: 2018-11-01 23:22\n"
+"Last-Translator: guoyunhe <[email protected]>\n"
+"Language-Team: Chinese Simplified\n"
+"Language: zh_CN\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: crowdin.com\n"
+"X-Crowdin-Project: kdeorg\n"
+"X-Crowdin-Language: zh-CN\n"
+"X-Crowdin-File: /kf5-stable/messages/kdegraphics/kio5_kamera.pot\n"
+
+#: kamera.cpp:798
+#, kde-format
+msgid "Could not read. Reason: %1"
+msgstr "无法读取。原因:%1"


Reply via email to