Hello community,

here is the log from the commit of package plasma5-addons for openSUSE:Factory 
checked in at 2016-11-04 20:56:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasma5-addons (Old)
 and      /work/SRC/openSUSE:Factory/.plasma5-addons.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "plasma5-addons"

Changes:
--------
--- /work/SRC/openSUSE:Factory/plasma5-addons/plasma5-addons.changes    
2016-10-22 13:09:16.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.plasma5-addons.new/plasma5-addons.changes       
2016-11-04 20:56:41.000000000 +0100
@@ -1,0 +2,8 @@
+Tue Nov  1 10:36:40 UTC 2016 - [email protected]
+
+- Update to 5.8.3
+  * New bugfix release
+  * For more details please see:
+    https://www.kde.org/announcements/plasma-5.8.3.php
+
+-------------------------------------------------------------------

Old:
----
  kdeplasma-addons-5.8.2.tar.xz

New:
----
  kdeplasma-addons-5.8.3.tar.xz

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

Other differences:
------------------
++++++ plasma5-addons.spec ++++++
--- /var/tmp/diff_new_pack.KhCpmy/_old  2016-11-04 20:56:42.000000000 +0100
+++ /var/tmp/diff_new_pack.KhCpmy/_new  2016-11-04 20:56:42.000000000 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:           plasma5-addons
-Version:        5.8.2
+Version:        5.8.3
 Release:        0
 %{!?_plasma5_version: %global _plasma5_version %{version}}
 Summary:        Additional Plasma5 Widgets

++++++ kdeplasma-addons-5.8.2.tar.xz -> kdeplasma-addons-5.8.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeplasma-addons-5.8.2/CMakeLists.txt 
new/kdeplasma-addons-5.8.3/CMakeLists.txt
--- old/kdeplasma-addons-5.8.2/CMakeLists.txt   2016-10-18 13:30:53.000000000 
+0200
+++ new/kdeplasma-addons-5.8.3/CMakeLists.txt   2016-11-01 13:06:21.000000000 
+0100
@@ -1,5 +1,5 @@
 project(kdeplasma-addons)
-set(PROJECT_VERSION "5.8.2")
+set(PROJECT_VERSION "5.8.3")
 set(PROJECT_VERSION_MAJOR 5)
 
 cmake_minimum_required(VERSION 2.8.12)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeplasma-addons-5.8.2/applets/comic/comic.cpp 
new/kdeplasma-addons-5.8.3/applets/comic/comic.cpp
--- old/kdeplasma-addons-5.8.2/applets/comic/comic.cpp  2016-10-18 
13:29:53.000000000 +0200
+++ new/kdeplasma-addons-5.8.3/applets/comic/comic.cpp  2016-11-01 
13:05:28.000000000 +0100
@@ -92,7 +92,9 @@
     //set maximum number of cached strips per comic, -1 means that there is no 
limit
     KConfigGroup global = globalConfig();
     const int maxComicLimit = global.readEntry( "maxComicLimit", CACHE_LIMIT );
-    mEngine->connectSource( QLatin1String( "setting_maxComicLimit:" ) + 
QString::number( maxComicLimit ), this );
+    if (mEngine) {
+        mEngine->connectSource( QLatin1String( "setting_maxComicLimit:" ) + 
QString::number( maxComicLimit ), this );
+    }
 
     mCurrentDay = QDate::currentDate();
     mDateChangedTimer = new QTimer( this );
@@ -166,7 +168,7 @@
     setBusy(false);
 
     //disconnect prefetched comic strips
-    if ( source != mOldSource ) {
+    if (mEngine && source != mOldSource ) {
         mEngine->disconnectSource( source, this );
         return;
     }
@@ -178,7 +180,7 @@
     const bool errorAutoFixable = data[ "Error automatically fixable" 
].toBool();
     if ( hasError ) {
         const QString previousIdentifierSuffix = data[ "Previous identifier 
suffix" ].toString();
-        if ( !mShowErrorPicture && !previousIdentifierSuffix.isEmpty() ) {
+        if (mEngine && !mShowErrorPicture && 
!previousIdentifierSuffix.isEmpty() ) {
             mEngine->disconnectSource( source, this );
             updateComic( previousIdentifierSuffix );
             return;
@@ -199,19 +201,21 @@
     //call the slot to check if the position needs to be saved
     slotStorePosition();
 
-    //disconnect if there is either no error, or an error that can not be 
fixed automatically
-    if ( !errorAutoFixable ) {
-        mEngine->disconnectSource( source, this );
-    }
+    if (mEngine) {
+        //disconnect if there is either no error, or an error that can not be 
fixed automatically
+        if ( !errorAutoFixable ) {
+            mEngine->disconnectSource( source, this );
+        }
 
-    //prefetch the previous and following comic for faster navigation
-    if (mCurrent.hasNext()) {
-        const QString prefetch = mCurrent.id() + ':' + mCurrent.next();
-        mEngine->connectSource( prefetch, this );
-    }
-    if ( mCurrent.hasPrev()) {
-        const QString prefetch = mCurrent.id() + ':' + mCurrent.prev();
-        mEngine->connectSource( prefetch, this );
+        //prefetch the previous and following comic for faster navigation
+        if (mCurrent.hasNext()) {
+            const QString prefetch = mCurrent.id() + ':' + mCurrent.next();
+            mEngine->connectSource( prefetch, this );
+        }
+        if ( mCurrent.hasPrev()) {
+            const QString prefetch = mCurrent.id() + ':' + mCurrent.prev();
+            mEngine->connectSource( prefetch, this );
+        }
     }
 
     updateView();
@@ -226,7 +230,7 @@
 
 void ComicApplet::getNewComics()
 {
-    if (!m_newStuffDialog) {
+    if (mEngine && !m_newStuffDialog) {
         m_newStuffDialog = new KNS3::DownloadDialog( 
QString::fromLatin1("comic.knsrc") );
         KNS3::DownloadDialog *strong = m_newStuffDialog.data();
         strong->setTitle(i18n("Download Comics"));
@@ -304,7 +308,7 @@
 
     delete mCheckNewStrips;
     mCheckNewStrips = 0;
-    if ( mCheckNewComicStripsInterval ) {
+    if (mEngine && mCheckNewComicStripsInterval ) {
         mCheckNewStrips = new CheckNewStrips( mTabIdentifier, mEngine, 
mCheckNewComicStripsInterval, this );
         connect( mCheckNewStrips, &CheckNewStrips::lastStrip, this, 
&ComicApplet::slotFoundLastStrip );
     }
@@ -434,6 +438,10 @@
 
 void ComicApplet::slotArchive( int archiveType, const QUrl &dest, const 
QString &fromIdentifier, const QString &toIdentifier )
 {
+    if (!mEngine) {
+        return;
+    }
+
     mSavingDir->setDir(dest.path());
 
     const QString id = mCurrent.id();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeplasma-addons-5.8.2/applets/comic/comicmodel.cpp 
new/kdeplasma-addons-5.8.3/applets/comic/comicmodel.cpp
--- old/kdeplasma-addons-5.8.2/applets/comic/comicmodel.cpp     2016-10-18 
13:29:53.000000000 +0200
+++ new/kdeplasma-addons-5.8.3/applets/comic/comicmodel.cpp     2016-11-01 
13:05:28.000000000 +0100
@@ -27,7 +27,9 @@
 ComicModel::ComicModel( Plasma::DataEngine *engine, const QString &source, 
const QStringList &usedComics, QObject *parent )
   : QAbstractTableModel( parent ), mUsedComics(usedComics)
 {
-    engine->connectSource( source, this );
+    if (engine) {
+        engine->connectSource( source, this );
+    }
 }
 
 void ComicModel::dataUpdated( const QString &/*source*/, const 
Plasma::DataEngine::Data &data )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeplasma-addons-5.8.2/applets/mediaframe/package/metadata.desktop 
new/kdeplasma-addons-5.8.3/applets/mediaframe/package/metadata.desktop
--- old/kdeplasma-addons-5.8.2/applets/mediaframe/package/metadata.desktop      
2016-10-18 13:29:53.000000000 +0200
+++ new/kdeplasma-addons-5.8.3/applets/mediaframe/package/metadata.desktop      
2016-11-01 13:05:28.000000000 +0100
@@ -2,7 +2,7 @@
 Name=Media frame
 Name[ca]=Marc multimèdia
 Name[ca@valencia]=Marc multimèdia
-Name[cs]=Rámešek médií
+Name[cs]=Rámec médií
 Name[da]=Medieramme
 Name[de]=Medien-Rahmen
 Name[el]=Πλαίσιο μέσου
@@ -10,8 +10,10 @@
 Name[es]=Marco multimedia
 Name[et]=Meediaraam
 Name[fi]=Mediakehys
+Name[fr]=Cadre du lecteur de média
 Name[gl]=Marco de contido
 Name[it]=Cornice media
+Name[ko]=미디어 프레임
 Name[lt]=Paveikslėlių rėmelis
 Name[nl]=Mediaframe
 Name[nn]=Medieramme
@@ -41,8 +43,10 @@
 Comment[es]=Marco (de retrato)
 Comment[et]=(Pildi)raam
 Comment[fi]=Kehys kuville ja muulle
+Comment[fr]=Cadre de photos
 Comment[gl]=Portarretratos
 Comment[it]=(Immagine) Cornice
+Comment[ko]=(사진) 프레임
 Comment[lt]=Paveikslėlių rėmelis
 Comment[nl]=(Afbeelding) frame
 Comment[nn]=Biletramme
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeplasma-addons-5.8.2/applets/minimizeall/package/metadata.desktop 
new/kdeplasma-addons-5.8.3/applets/minimizeall/package/metadata.desktop
--- old/kdeplasma-addons-5.8.2/applets/minimizeall/package/metadata.desktop     
2016-10-18 13:29:53.000000000 +0200
+++ new/kdeplasma-addons-5.8.3/applets/minimizeall/package/metadata.desktop     
2016-11-01 13:05:28.000000000 +0100
@@ -11,6 +11,7 @@
 Name[et]=Kõigi akende minimeerimine
 Name[fi]=Pienennä kaikki ikkunat
 Name[it]=Minimizza tutte le finestre
+Name[ko]=모든 창 최소화
 Name[lt]=Visų langų sumažinimas
 Name[nl]=Alle vensters minimaliseren
 Name[nn]=Minimer alle vindauge
@@ -37,6 +38,7 @@
 Comment[et]=Töölaua näitamine kõiki aknaid minimeerides
 Comment[fi]=Näyttää työpöydän pienentämällä kaikki ikkunat
 Comment[it]=Mostra il desktop minimizzando tutte le finestre
+Comment[ko]=모든 창을 최소화해서 데스크톱 보이기
 Comment[lt]=Sumažina visus langus ir parodo darbalaukį
 Comment[nl]=Toont het bureaublad door alle vensters te minimaliseren
 Comment[nn]=Vis skrivebordet ved å minimera alle vindauga
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeplasma-addons-5.8.2/applets/systemloadviewer/package/contents/ui/SystemLoadViewer.qml
 
new/kdeplasma-addons-5.8.3/applets/systemloadviewer/package/contents/ui/SystemLoadViewer.qml
--- 
old/kdeplasma-addons-5.8.2/applets/systemloadviewer/package/contents/ui/SystemLoadViewer.qml
        2016-10-18 13:29:53.000000000 +0200
+++ 
new/kdeplasma-addons-5.8.3/applets/systemloadviewer/package/contents/ui/SystemLoadViewer.qml
        2016-11-01 13:05:28.000000000 +0100
@@ -222,7 +222,7 @@
         var memFree = parseFloat(dataSource.data[dataSource.memFree] ? 
dataSource.data[dataSource.memFree].value : 0) / 1024
         var memUsed = parseFloat(dataSource.data[dataSource.memUsed] ? 
dataSource.data[dataSource.memUsed].value : 0) / 1024
         var memTotal = memFree + memUsed
-        var memoryPart = i18n("Memory: %1/%2 MiB", Math.round(memUsed), 
Math.round(memTotal))
+        var memoryPart = i18n("Memory: %1/%2 MiB", Math.round(memApplication), 
Math.round(memTotal))
 
         var swapFree = parseFloat(dataSource.data[dataSource.swapFree] ? 
dataSource.data[dataSource.swapFree].value : 0) / 1024
         var swapUsed = parseFloat(dataSource.data[dataSource.swapUsed] ? 
dataSource.data[dataSource.swapUsed].value : 0) / 1024
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeplasma-addons-5.8.2/po/fr/plasma_applet_org.kde.plasma.quicklaunch.po 
new/kdeplasma-addons-5.8.3/po/fr/plasma_applet_org.kde.plasma.quicklaunch.po
--- 
old/kdeplasma-addons-5.8.2/po/fr/plasma_applet_org.kde.plasma.quicklaunch.po    
    2016-10-18 13:30:07.000000000 +0200
+++ 
new/kdeplasma-addons-5.8.3/po/fr/plasma_applet_org.kde.plasma.quicklaunch.po    
    2016-11-01 13:05:41.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.
-# Yoann Laissus <[email protected]>, 2015.
+# Yoann Laissus <[email protected]>, 2015, 2016.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-10-11 11:53+0000\n"
-"PO-Revision-Date: 2015-11-22 18:39+0100\n"
+"PO-Revision-Date: 2016-08-31 19:53+0100\n"
 "Last-Translator: Yoann Laissus <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
 "Language: fr\n"
@@ -50,15 +50,15 @@
 
 #: package/contents/ui/ConfigGeneral.qml:79
 msgid "Title"
-msgstr ""
+msgstr "Titre"
 
 #: package/contents/ui/ConfigGeneral.qml:86
 msgid "Show title"
-msgstr ""
+msgstr "Afficher le titre"
 
 #: package/contents/ui/ConfigGeneral.qml:100
 msgid "Enter title"
-msgstr ""
+msgstr "Saisir le titre"
 
 #: package/contents/ui/IconItem.qml:128 package/contents/ui/main.qml:271
 msgid "Add Launcher..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeplasma-addons-5.8.2/po/fr/plasma_applet_org.kde.plasma.userswitcher.po 
new/kdeplasma-addons-5.8.3/po/fr/plasma_applet_org.kde.plasma.userswitcher.po
--- 
old/kdeplasma-addons-5.8.2/po/fr/plasma_applet_org.kde.plasma.userswitcher.po   
    2016-10-18 13:30:07.000000000 +0200
+++ 
new/kdeplasma-addons-5.8.3/po/fr/plasma_applet_org.kde.plasma.userswitcher.po   
    2016-11-01 13:05:41.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.
-# Yoann Laissus <[email protected]>, 2015.
+# Yoann Laissus <[email protected]>, 2015, 2016.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-07-27 07:31+0000\n"
-"PO-Revision-Date: 2015-11-22 18:43+0100\n"
+"PO-Revision-Date: 2016-08-31 19:38+0100\n"
 "Last-Translator: Yoann Laissus <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
 "Language: fr\n"
@@ -91,8 +91,6 @@
 msgstr "Verrouiller l'écran"
 
 #: package/contents/ui/main.qml:245
-#, fuzzy
-#| msgid "Leave..."
 msgctxt "Show a dialog with options to logout/shutdown/restart"
 msgid "Leave..."
 msgstr "Quitter..."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeplasma-addons-5.8.2/po/ko/plasma_applet_org.kde.plasma.mediaframe.po 
new/kdeplasma-addons-5.8.3/po/ko/plasma_applet_org.kde.plasma.mediaframe.po
--- old/kdeplasma-addons-5.8.2/po/ko/plasma_applet_org.kde.plasma.mediaframe.po 
1970-01-01 01:00:00.000000000 +0100
+++ new/kdeplasma-addons-5.8.3/po/ko/plasma_applet_org.kde.plasma.mediaframe.po 
2016-11-01 13:05:50.000000000 +0100
@@ -0,0 +1,132 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# Shinjo Park <[email protected]>, 2016.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2016-09-23 10:51+0000\n"
+"PO-Revision-Date: 2016-10-20 22:35+0100\n"
+"Last-Translator: Shinjo Park <[email protected]>\n"
+"Language-Team: Korean <[email protected]>\n"
+"Language: ko\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: Lokalize 2.0\n"
+
+#: package/contents/config/config.qml:25
+msgid "General"
+msgstr "일반"
+
+#: package/contents/config/config.qml:30
+#: package/contents/ui/ConfigPaths.qml:137
+msgid "Paths"
+msgstr "경로"
+
+#: package/contents/ui/ConfigGeneral.qml:62
+msgid "Change picture every"
+msgstr "그림 변경 주기"
+
+#: package/contents/ui/ConfigGeneral.qml:69
+msgid "s"
+msgstr "초"
+
+#: package/contents/ui/ConfigGeneral.qml:82
+msgid "Fill mode"
+msgstr "채우기 모드"
+
+#: package/contents/ui/ConfigGeneral.qml:91
+msgid "Stretch"
+msgstr "늘이기"
+
+#: package/contents/ui/ConfigGeneral.qml:93
+msgid "The image is scaled to fit"
+msgstr "그림 크기를 조정하여 늘입니다"
+
+#: package/contents/ui/ConfigGeneral.qml:96
+msgid "Preserve aspect fit"
+msgstr "비율 유지하면서 늘이기"
+
+#: package/contents/ui/ConfigGeneral.qml:98
+#: package/contents/ui/ConfigGeneral.qml:151
+msgid "The image is scaled uniformly to fit without cropping"
+msgstr "그림을 자르지 않고 맞도록 크기 조정"
+
+#: package/contents/ui/ConfigGeneral.qml:101
+msgid "Preserve aspect crop"
+msgstr "비율 유지하면서 자르기"
+
+#: package/contents/ui/ConfigGeneral.qml:103
+msgid "The image is scaled uniformly to fill, cropping if necessary"
+msgstr "필요한 경우 그림을 잘라내는 형태로 크기 조정"
+
+#: package/contents/ui/ConfigGeneral.qml:106
+msgid "Tile"
+msgstr "바둑판식 배열"
+
+#: package/contents/ui/ConfigGeneral.qml:108
+msgid "The image is duplicated horizontally and vertically"
+msgstr "그림을 수평 및 수직으로 반복 배열"
+
+#: package/contents/ui/ConfigGeneral.qml:111
+msgid "Tile vertically"
+msgstr "수직 바둑판식 배열"
+
+#: package/contents/ui/ConfigGeneral.qml:113
+msgid "The image is stretched horizontally and tiled vertically"
+msgstr "그림을 수평으로 늘이고 수직으로 반복 배열"
+
+#: package/contents/ui/ConfigGeneral.qml:116
+msgid "Tile horizontally"
+msgstr "수평 바둑판식 배열"
+
+#: package/contents/ui/ConfigGeneral.qml:118
+msgid "The image is stretched vertically and tiled horizontally"
+msgstr "그림을 수직으로 늘이고 수평으로 반복 배열"
+
+#: package/contents/ui/ConfigGeneral.qml:121
+msgid "Pad"
+msgstr "둘러싸기"
+
+#: package/contents/ui/ConfigGeneral.qml:123
+msgid "The image is not transformed"
+msgstr "그림 크기를 조정하지 않음"
+
+#: package/contents/ui/ConfigGeneral.qml:157
+msgid "Randomize items"
+msgstr "무작위 순서 사용"
+
+#: package/contents/ui/ConfigGeneral.qml:162
+msgid "Pause on mouseover"
+msgstr "마우스가 지나갈 때 일시 정지"
+
+#: package/contents/ui/ConfigGeneral.qml:167
+msgid "Background frame"
+msgstr "배경 프레임"
+
+#: package/contents/ui/ConfigGeneral.qml:172
+msgid "Left click image opens in external viewer"
+msgstr "왼쪽 단추로 눌러서 외부 뷰어로 열기"
+
+#: package/contents/ui/ConfigPaths.qml:63
+msgid "Choose files"
+msgstr "파일 선택"
+
+#: package/contents/ui/ConfigPaths.qml:92
+msgid "Choose a folder"
+msgstr "폴더 선택"
+
+#: package/contents/ui/ConfigPaths.qml:124
+msgid "Add folder..."
+msgstr "폴더 추가..."
+
+#: package/contents/ui/ConfigPaths.qml:130
+msgid "Add files..."
+msgstr "파일 추가..."
+
+#: package/contents/ui/main.qml:423
+msgid "Configure plasmoid..."
+msgstr "Plasmoid 설정..."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeplasma-addons-5.8.2/po/ko/plasma_applet_org.kde.plasma.minimizeall.po 
new/kdeplasma-addons-5.8.3/po/ko/plasma_applet_org.kde.plasma.minimizeall.po
--- 
old/kdeplasma-addons-5.8.2/po/ko/plasma_applet_org.kde.plasma.minimizeall.po    
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/kdeplasma-addons-5.8.3/po/ko/plasma_applet_org.kde.plasma.minimizeall.po    
    2016-11-01 13:05:50.000000000 +0100
@@ -0,0 +1,26 @@
+# Copyright (C) YEAR This_file_is_part_of_KDE
+# This file is distributed under the same license as the PACKAGE package.
+# Shinjo Park <[email protected]>, 2016.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2016-08-06 07:49+0000\n"
+"PO-Revision-Date: 2016-10-20 22:35+0100\n"
+"Last-Translator: Shinjo Park <[email protected]>\n"
+"Language-Team: Korean <[email protected]>\n"
+"Language: ko\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: Lokalize 2.0\n"
+
+#: package/contents/ui/main.qml:93
+msgid "Minimize Windows"
+msgstr "창 최소화"
+
+#: package/contents/ui/main.qml:94
+msgid "Show the desktop by minimizing all windows"
+msgstr "모든 창을 최소화해서 데스크톱 보이기"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeplasma-addons-5.8.2/po/ko/plasma_applet_org.kde.plasma.showdesktop.po 
new/kdeplasma-addons-5.8.3/po/ko/plasma_applet_org.kde.plasma.showdesktop.po
--- 
old/kdeplasma-addons-5.8.2/po/ko/plasma_applet_org.kde.plasma.showdesktop.po    
    2016-10-18 13:30:18.000000000 +0200
+++ 
new/kdeplasma-addons-5.8.3/po/ko/plasma_applet_org.kde.plasma.showdesktop.po    
    2016-11-01 13:05:50.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.
-# Shinjo Park <[email protected]>, 2015.
+# Shinjo Park <[email protected]>, 2015, 2016.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-03-10 07:55+0000\n"
-"PO-Revision-Date: 2015-04-26 16:41+0200\n"
+"PO-Revision-Date: 2016-10-20 22:37+0100\n"
 "Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
 "Language: ko\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: package/contents/ui/main.qml:36
 msgid "Show Desktop"
@@ -27,4 +27,4 @@
 
 #: package/contents/ui/main.qml:43
 msgid "Minimize All Windows"
-msgstr ""
\ No newline at end of file
+msgstr "모든 창 최소화"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeplasma-addons-5.8.2/po/ko/plasma_applet_org.kde.plasma.userswitcher.po 
new/kdeplasma-addons-5.8.3/po/ko/plasma_applet_org.kde.plasma.userswitcher.po
--- 
old/kdeplasma-addons-5.8.2/po/ko/plasma_applet_org.kde.plasma.userswitcher.po   
    2016-10-18 13:30:18.000000000 +0200
+++ 
new/kdeplasma-addons-5.8.3/po/ko/plasma_applet_org.kde.plasma.userswitcher.po   
    2016-11-01 13:05:50.000000000 +0100
@@ -1,14 +1,14 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-# Shinjo Park <[email protected]>, 2015.
+# Shinjo Park <[email protected]>, 2015, 2016.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-07-27 07:31+0000\n"
-"PO-Revision-Date: 2015-11-10 22:10+0100\n"
-"Last-Translator: Shinjo Park <[email protected]>\n"
+"PO-Revision-Date: 2016-10-20 22:41+0100\n"
+"Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
 "Language: ko\n"
 "MIME-Version: 1.0\n"
@@ -88,8 +88,6 @@
 msgstr "화면 잠그기"
 
 #: package/contents/ui/main.qml:245
-#, fuzzy
-#| msgid "Leave..."
 msgctxt "Show a dialog with options to logout/shutdown/restart"
 msgid "Leave..."
 msgstr "떠나기..."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeplasma-addons-5.8.2/po/ko/plasma_applet_org.kde.plasma.weather.po 
new/kdeplasma-addons-5.8.3/po/ko/plasma_applet_org.kde.plasma.weather.po
--- old/kdeplasma-addons-5.8.2/po/ko/plasma_applet_org.kde.plasma.weather.po    
2016-10-18 13:30:18.000000000 +0200
+++ new/kdeplasma-addons-5.8.3/po/ko/plasma_applet_org.kde.plasma.weather.po    
2016-11-01 13:05:50.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.
-# Shinjo Park <[email protected]>, 2015.
+# Shinjo Park <[email protected]>, 2015, 2016.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-09-13 08:15+0000\n"
-"PO-Revision-Date: 2011-07-09 23:57+0900\n"
+"PO-Revision-Date: 2016-10-20 22:44+0100\n"
 "Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
 "Language: ko\n"
@@ -15,97 +15,94 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: i18n.dat:1
 msgctxt "wind direction"
 msgid "N"
-msgstr ""
+msgstr "북"
 
 #: i18n.dat:2
 msgctxt "wind direction"
 msgid "NNE"
-msgstr ""
+msgstr "북북동"
 
 #: i18n.dat:3
 msgctxt "wind direction"
 msgid "NE"
-msgstr ""
+msgstr "북동"
 
 #: i18n.dat:4
 msgctxt "wind direction"
 msgid "ENE"
-msgstr ""
+msgstr "동북동"
 
 #: i18n.dat:5
 msgctxt "wind direction"
 msgid "E"
-msgstr ""
+msgstr "동"
 
 #: i18n.dat:6
 msgctxt "wind direction"
 msgid "SSE"
-msgstr ""
+msgstr "남남동"
 
 #: i18n.dat:7
 msgctxt "wind direction"
 msgid "SE"
-msgstr ""
+msgstr "남동"
 
 #: i18n.dat:8
 msgctxt "wind direction"
 msgid "ESE"
-msgstr ""
+msgstr "동남동"
 
 #: i18n.dat:9
 msgctxt "wind direction"
 msgid "S"
-msgstr ""
+msgstr "남"
 
 #: i18n.dat:10
 msgctxt "wind direction"
 msgid "NNW"
-msgstr ""
+msgstr "북북서"
 
 #: i18n.dat:11
 msgctxt "wind direction"
 msgid "NW"
-msgstr ""
+msgstr "북서"
 
 #: i18n.dat:12
 msgctxt "wind direction"
 msgid "WNW"
-msgstr ""
+msgstr "서북서"
 
 #: i18n.dat:13
 msgctxt "wind direction"
 msgid "W"
-msgstr ""
+msgstr "서"
 
 #: i18n.dat:14
 msgctxt "wind direction"
 msgid "SSW"
-msgstr ""
+msgstr "남남서"
 
 #: i18n.dat:15
 msgctxt "wind direction"
 msgid "SW"
-msgstr ""
+msgstr "남서"
 
 #: i18n.dat:16
 msgctxt "wind direction"
 msgid "WSW"
-msgstr ""
+msgstr "서남서"
 
 #: i18n.dat:17
 msgctxt "wind direction"
 msgid "VR"
-msgstr ""
+msgstr "변함"
 
 #: i18n.dat:18
-#, fuzzy
-#| msgctxt "Wind condition"
-#| msgid "Calm"
 msgctxt "wind speed"
 msgid "Calm"
 msgstr "고요함"
@@ -113,77 +110,69 @@
 #: i18n.dat:19
 msgctxt "pressure tendency"
 msgid "rising"
-msgstr ""
+msgstr "고기압"
 
 #: i18n.dat:20
 msgctxt "pressure tendency"
 msgid "falling"
-msgstr ""
+msgstr "저기압"
 
 #: i18n.dat:21
 msgctxt "pressure tendency"
 msgid "steady"
-msgstr ""
+msgstr "일정함"
 
 #: package/contents/config/config.qml:24
 msgid "Weather Station"
-msgstr ""
+msgstr "날씨 스테이션"
 
 #: package/contents/config/config.qml:29
 msgid "Units"
-msgstr ""
+msgstr "단위"
 
 #: package/contents/ui/configUnits.qml:67
 msgid "Temperature:"
-msgstr ""
+msgstr "온도:"
 
 #: package/contents/ui/configUnits.qml:84
-#, fuzzy
-#| msgctxt "pressure, unit"
-#| msgid "Pressure: %1 %2"
 msgid "Pressure:"
-msgstr "기압: %1 %2"
+msgstr "기압:"
 
 #: package/contents/ui/configUnits.qml:101
 msgid "Wind speed:"
-msgstr ""
+msgstr "풍속:"
 
 #: package/contents/ui/configUnits.qml:118
-#, fuzzy
-#| msgctxt "visibility from distance"
-#| msgid "Visibility: %1"
 msgid "Visibility:"
-msgstr "가시 거리: %1"
+msgstr "가시 거리:"
 
 #: package/contents/ui/configWeatherStation.qml:57
 #, kde-format
 msgid "No weather stations found for '%1'"
-msgstr ""
+msgstr "'%1'의 기상대를 찾을 수 없습니다"
 
 #: package/contents/ui/configWeatherStation.qml:69
 #: plugin/locationlistmodel.cpp:79
-#, fuzzy, kde-format
-#| msgctxt "certain weather condition, probability percentage"
-#| msgid "%1 (%2%)"
+#, kde-format
 msgctxt "A weather station location and the weather service it comes from"
 msgid "%1 (%2)"
-msgstr "%1 (%2%)"
+msgstr "%1 (%2)"
 
 #: package/contents/ui/configWeatherStation.qml:90
 msgid "Location:"
-msgstr ""
+msgstr "위치:"
 
 #: package/contents/ui/configWeatherStation.qml:128
 msgid "Search"
-msgstr ""
+msgstr "찾기"
 
 #: package/contents/ui/configWeatherStation.qml:167
 msgid "Update every:"
-msgstr ""
+msgstr "업데이트 주기:"
 
 #: package/contents/ui/configWeatherStation.qml:174
 msgid " min"
-msgstr ""
+msgstr " 분"
 
 #: package/contents/ui/main.qml:38
 msgctxt "Shown when you have not set a weather provider"
@@ -191,11 +180,7 @@
 msgstr "설정해 주십시오"
 
 #: package/contents/ui/main.qml:47
-#, fuzzy, kde-format
-#| msgctxt ""
-#| "%1 is the weather condition, %2 is the temperature, both come from the "
-#| "weather provider"
-#| msgid "%1 %2"
+#, kde-format
 msgctxt ""
 "%1 is the weather condition, %2 is the temperature,  both come from the "
 "weather provider"
@@ -204,27 +189,27 @@
 
 #: package/contents/ui/main.qml:100
 msgid "Details"
-msgstr ""
+msgstr "자세히"
 
 #: package/contents/ui/main.qml:104
 msgid "Notices"
-msgstr ""
+msgstr "공지"
 
 #: package/contents/ui/NoticesView.qml:29
 msgctxt "weather warnings"
 msgid "Warnings Issued:"
-msgstr ""
+msgstr "발효된 경보:"
 
 #: package/contents/ui/NoticesView.qml:34
 msgctxt "weather watches"
 msgid "Watches Issued:"
-msgstr ""
+msgstr "발효된 주의보:"
 
 #: package/contents/ui/TopPanel.qml:86
 #, kde-format
 msgctxt "High & Low temperature"
 msgid "H: %1 L: %2"
-msgstr "H: %1 L: %2"
+msgstr "최고: %1 최저: %2"
 
 #: package/contents/ui/TopPanel.qml:89
 #, kde-format
@@ -240,59 +225,59 @@
 
 #: plugin/plugin.cpp:34
 msgid "Celsius °C"
-msgstr ""
+msgstr "섭씨 °C"
 
 #: plugin/plugin.cpp:35
 msgid "Fahrenheit °F"
-msgstr ""
+msgstr "화씨 °F"
 
 #: plugin/plugin.cpp:36
 msgid "Kelvin K"
-msgstr ""
+msgstr "절대 온도 K"
 
 #: plugin/plugin.cpp:48
 msgid "Hectopascals hPa"
-msgstr ""
+msgstr "헥토파스칼 hPa"
 
 #: plugin/plugin.cpp:49
 msgid "Kilopascals kPa"
-msgstr ""
+msgstr "킬로파스칼 kPa"
 
 #: plugin/plugin.cpp:50
 msgid "Millibars mbar"
-msgstr ""
+msgstr "밀리바 mbar"
 
 #: plugin/plugin.cpp:51
 msgid "Inches of Mercury inHg"
-msgstr ""
+msgstr "수은인치 inHg"
 
 #: plugin/plugin.cpp:63
 msgid "Meters per Second m/s"
-msgstr ""
+msgstr "초속 미터 m/s"
 
 #: plugin/plugin.cpp:64
 msgid "Kilometers per Hour km/h"
-msgstr ""
+msgstr "시속 킬로미터 km/h"
 
 #: plugin/plugin.cpp:65
 msgid "Miles per Hour mph"
-msgstr ""
+msgstr "시속 마일 mph"
 
 #: plugin/plugin.cpp:66
 msgid "Knots kt"
-msgstr ""
+msgstr "노트 kt"
 
 #: plugin/plugin.cpp:67
 msgid "Beaufort scale bft"
-msgstr ""
+msgstr "부퍼트 단위 bft"
 
 #: plugin/plugin.cpp:79
 msgid "Kilometers"
-msgstr ""
+msgstr "킬로미터"
 
 #: plugin/plugin.cpp:80
 msgid "Miles"
-msgstr ""
+msgstr "마일"
 
 #: weatherapplet.cpp:83 weatherapplet.cpp:90
 msgctxt "Degree, unit symbol"
@@ -307,16 +292,11 @@
 msgstr "%1%2"
 
 #: weatherapplet.cpp:99
-#, fuzzy
-#| msgctxt "Not available"
-#| msgid "N/A"
 msgid "N/A"
 msgstr "없음"
 
 #: weatherapplet.cpp:219
-#, fuzzy, kde-format
-#| msgctxt "certain weather condition, probability percentage"
-#| msgid "%1 (%2%)"
+#, kde-format
 msgctxt "certain weather condition (probability percentage)"
 msgid "%1 (%2%)"
 msgstr "%1 (%2%)"
@@ -382,9 +362,6 @@
 msgstr "습도: %1%2"
 
 #: weatherapplet.cpp:351
-#, fuzzy
-#| msgctxt "Precent, measure unit"
-#| msgid "%"
 msgctxt "Percent, measure unit"
 msgid "%"
 msgstr "%"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeplasma-addons-5.8.2/po/ko/plasma_runner_spellcheckrunner.po 
new/kdeplasma-addons-5.8.3/po/ko/plasma_runner_spellcheckrunner.po
--- old/kdeplasma-addons-5.8.2/po/ko/plasma_runner_spellcheckrunner.po  
2016-10-18 13:30:18.000000000 +0200
+++ new/kdeplasma-addons-5.8.3/po/ko/plasma_runner_spellcheckrunner.po  
2016-11-01 13:05:50.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.
-# Shinjo Park <[email protected]>, 2015.
+# Shinjo Park <[email protected]>, 2015, 2016.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-04-09 07:59+0000\n"
-"PO-Revision-Date: 2014-03-03 00:31+0900\n"
+"PO-Revision-Date: 2016-10-20 22:47+0100\n"
 "Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
 "Language: ko\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: spellcheck.cpp:107 spellcheck_config.cpp:76 spellcheck_config.cpp:108
 msgid "spell"
@@ -37,9 +37,6 @@
 msgstr "올바름"
 
 #: spellcheck.cpp:222
-#, fuzzy
-#| msgctxt "seperator for a list of words"
-#| msgid ", "
 msgctxt "separator for a list of words"
 msgid ", "
 msgstr ", "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeplasma-addons-5.8.2/po/nn/plasma_applet_org.kde.plasma.minimizeall.po 
new/kdeplasma-addons-5.8.3/po/nn/plasma_applet_org.kde.plasma.minimizeall.po
--- 
old/kdeplasma-addons-5.8.2/po/nn/plasma_applet_org.kde.plasma.minimizeall.po    
    2016-10-18 13:30:25.000000000 +0200
+++ 
new/kdeplasma-addons-5.8.3/po/nn/plasma_applet_org.kde.plasma.minimizeall.po    
    2016-11-01 13:05:55.000000000 +0100
@@ -13,7 +13,7 @@
 "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"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 2.0\n"
 
 #: package/contents/ui/main.qml:93


Reply via email to