Hello community,

here is the log from the commit of package oxygen5 for openSUSE:Factory checked 
in at 2020-06-25 15:05:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/oxygen5 (Old)
 and      /work/SRC/openSUSE:Factory/.oxygen5.new.3060 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "oxygen5"

Thu Jun 25 15:05:38 2020 rev:104 rq:816686 version:5.19.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/oxygen5/oxygen5.changes  2020-06-21 
18:59:40.627666262 +0200
+++ /work/SRC/openSUSE:Factory/.oxygen5.new.3060/oxygen5.changes        
2020-06-25 15:05:47.169045293 +0200
@@ -1,0 +2,10 @@
+Tue Jun 23 13:26:16 UTC 2020 - Fabian Vogt <[email protected]>
+
+- Update to 5.19.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.2
+- Changes since 5.19.1:
+  * [style] Fix crash during app tear down sequence
+
+-------------------------------------------------------------------

Old:
----
  oxygen-5.19.1.tar.xz
  oxygen-5.19.1.tar.xz.sig

New:
----
  oxygen-5.19.2.tar.xz
  oxygen-5.19.2.tar.xz.sig

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

Other differences:
------------------
++++++ oxygen5.spec ++++++
--- /var/tmp/diff_new_pack.cNq19t/_old  2020-06-25 15:05:47.929047742 +0200
+++ /var/tmp/diff_new_pack.cNq19t/_new  2020-06-25 15:05:47.933047754 +0200
@@ -20,7 +20,7 @@
 %define kwin_deco 1
 
 Name:           oxygen5
-Version:        5.19.1
+Version:        5.19.2
 Release:        0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %define _plasma5_bugfix %{version}}

++++++ oxygen-5.19.1.tar.xz -> oxygen-5.19.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/CMakeLists.txt 
new/oxygen-5.19.2/CMakeLists.txt
--- old/oxygen-5.19.1/CMakeLists.txt    2020-06-16 14:47:29.000000000 +0200
+++ new/oxygen-5.19.2/CMakeLists.txt    2020-06-23 14:14:22.000000000 +0200
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.0)
 project(oxygen)
-set(PROJECT_VERSION "5.19.1")
+set(PROJECT_VERSION "5.19.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 include(GenerateExportHeader)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/kstyle/oxygenshadowhelper.cpp 
new/oxygen-5.19.2/kstyle/oxygenshadowhelper.cpp
--- old/oxygen-5.19.1/kstyle/oxygenshadowhelper.cpp     2020-06-16 
14:47:29.000000000 +0200
+++ new/oxygen-5.19.2/kstyle/oxygenshadowhelper.cpp     2020-06-23 
14:14:23.000000000 +0200
@@ -94,7 +94,7 @@
         widget->installEventFilter( this );
 
         // connect destroy signal
-        connect( widget, SIGNAL(destroyed(QObject*)), 
SLOT(objectDeleted(QObject*)) );
+        connect( widget, SIGNAL(destroyed(QObject*)), 
SLOT(widgetDeleted(QObject*)) );
 
         return true;
 
@@ -183,11 +183,17 @@
     }
 
     //_______________________________________________________
-    void ShadowHelper::objectDeleted( QObject* object )
+    void ShadowHelper::widgetDeleted( QObject* object )
     {
         QWidget* widget( static_cast<QWidget*>( object ) );
         _widgets.remove( widget );
-        _shadows.remove( widget );
+    }
+
+    //_______________________________________________________
+    void ShadowHelper::windowDeleted( QObject* object )
+    {
+        QWindow* window( static_cast<QWindow*>( object ) );
+        _shadows.remove( window );
     }
 
     //_______________________________________________________
@@ -301,15 +307,19 @@
         const QVector<KWindowShadowTile::Ptr>& tiles = createPlatformTiles( 
isDockWidget );
         if( tiles.count() != numTiles ) return;
 
+        // get the underlying window for the widget
+        QWindow* window = widget->windowHandle();
+
         // find a shadow associated with the widget
-        KWindowShadow*& shadow = _shadows[ widget ];
+        KWindowShadow*& shadow = _shadows[ window ];
 
-        // we want the shadow to be deleted after the decorated window is 
destroyed
         if( !shadow )
         {
-            shadow = new KWindowShadow( widget->windowHandle() );
+            // if there is no shadow yet, create one
+            shadow = new KWindowShadow( window );
 
-            connect( shadow, &QObject::destroyed, this, [this, widget] { 
_shadows.remove( widget ); } );
+            // connect destroy signal
+            connect( window, &QWindow::destroyed, this, 
&ShadowHelper::windowDeleted );
         }
 
         if( shadow->isCreated() )
@@ -323,7 +333,7 @@
         shadow->setBottomLeftTile( tiles[5] );
         shadow->setLeftTile( tiles[6] );
         shadow->setTopLeftTile( tiles[7] );
-        shadow->setWindow( widget->windowHandle() );
+        shadow->setWindow( window );
         shadow->setPadding( shadowMargins( widget ) );
         shadow->create();
     }
@@ -388,7 +398,7 @@
     //_______________________________________________________
     void ShadowHelper::uninstallShadows( QWidget* widget )
     {
-        delete _shadows.take( widget );
+        delete _shadows.take( widget->windowHandle() );
     }
 
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/kstyle/oxygenshadowhelper.h 
new/oxygen-5.19.2/kstyle/oxygenshadowhelper.h
--- old/oxygen-5.19.1/kstyle/oxygenshadowhelper.h       2020-06-16 
14:47:29.000000000 +0200
+++ new/oxygen-5.19.2/kstyle/oxygenshadowhelper.h       2020-06-23 
14:14:23.000000000 +0200
@@ -80,7 +80,10 @@
         private Q_SLOTS:
 
         //* unregister widget
-        void objectDeleted( QObject* );
+        void widgetDeleted( QObject* );
+
+        //* unregister window
+        void windowDeleted( QObject* );
 
         private:
 
@@ -132,7 +135,7 @@
         QSet<QWidget*> _widgets;
 
         //* map of managed shadows
-        QMap<QWidget*, KWindowShadow*> _shadows;
+        QMap<QWindow*, KWindowShadow*> _shadows;
 
         //*@name shadow tilesets
         //@{
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/hne/oxygen_style_config.po 
new/oxygen-5.19.2/po/hne/oxygen_style_config.po
--- old/oxygen-5.19.1/po/hne/oxygen_style_config.po     2020-06-16 
14:47:46.000000000 +0200
+++ new/oxygen-5.19.2/po/hne/oxygen_style_config.po     2020-06-23 
14:14:39.000000000 +0200
@@ -12,7 +12,7 @@
 "PO-Revision-Date: 2009-01-29 17:13+0530\n"
 "Last-Translator: Ravishankar Shrivastava <[email protected]>\n"
 "Language-Team: Hindi <[email protected]>\n"
-"Language: hi\n"
+"Language: hne\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/hne/oxygen_style_demo.po 
new/oxygen-5.19.2/po/hne/oxygen_style_demo.po
--- old/oxygen-5.19.1/po/hne/oxygen_style_demo.po       2020-06-16 
14:47:46.000000000 +0200
+++ new/oxygen-5.19.2/po/hne/oxygen_style_demo.po       2020-06-23 
14:14:39.000000000 +0200
@@ -12,7 +12,7 @@
 "PO-Revision-Date: 2009-01-29 17:13+0530\n"
 "Last-Translator: Ravishankar Shrivastava <[email protected]>\n"
 "Language-Team: Hindi <[email protected]>\n"
-"Language: hi\n"
+"Language: hne\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/mr/liboxygenstyleconfig.po 
new/oxygen-5.19.2/po/mr/liboxygenstyleconfig.po
--- old/oxygen-5.19.1/po/mr/liboxygenstyleconfig.po     2020-06-16 
14:47:52.000000000 +0200
+++ new/oxygen-5.19.2/po/mr/liboxygenstyleconfig.po     2020-06-23 
14:14:45.000000000 +0200
@@ -10,7 +10,7 @@
 "PO-Revision-Date: 2013-02-19 15:01+0530\n"
 "Last-Translator: Chetan Khona <[email protected]>\n"
 "Language-Team: American English <[email protected]>\n"
-"Language: en_US\n"
+"Language: mr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/mr/oxygen_style_config.po 
new/oxygen-5.19.2/po/mr/oxygen_style_config.po
--- old/oxygen-5.19.1/po/mr/oxygen_style_config.po      2020-06-16 
14:47:52.000000000 +0200
+++ new/oxygen-5.19.2/po/mr/oxygen_style_config.po      2020-06-23 
14:14:45.000000000 +0200
@@ -12,7 +12,7 @@
 "PO-Revision-Date: 2013-02-19 15:31+0530\n"
 "Last-Translator: Chetan Khona <[email protected]>\n"
 "Language-Team: American English <[email protected]>\n"
-"Language: en_US\n"
+"Language: mr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/mr/oxygen_style_demo.po 
new/oxygen-5.19.2/po/mr/oxygen_style_demo.po
--- old/oxygen-5.19.1/po/mr/oxygen_style_demo.po        2020-06-16 
14:47:52.000000000 +0200
+++ new/oxygen-5.19.2/po/mr/oxygen_style_demo.po        2020-06-23 
14:14:45.000000000 +0200
@@ -12,7 +12,7 @@
 "PO-Revision-Date: 2013-02-19 15:31+0530\n"
 "Last-Translator: Chetan Khona <[email protected]>\n"
 "Language-Team: American English <[email protected]>\n"
-"Language: en_US\n"
+"Language: mr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/si/oxygen_style_config.po 
new/oxygen-5.19.2/po/si/oxygen_style_config.po
--- old/oxygen-5.19.1/po/si/oxygen_style_config.po      2020-06-16 
14:47:56.000000000 +0200
+++ new/oxygen-5.19.2/po/si/oxygen_style_config.po      2020-06-23 
14:14:49.000000000 +0200
@@ -34,8 +34,8 @@
 "Configure widgets' focus and mouseover highlight animation, as well as "
 "widget enabled/disabled state transition"
 msgstr ""
-"විජට්ටුවේ එල්ලය සහ මූසිකය උඩින් ගෙනයාමේදී ඉස්මතු කරන සජීවනය සේම විජට්ටු 
සක්‍රිය/අක්‍රිය තත්ව "
-"සංක්‍රමණය වින්‍යාසගත කරන්න"
+"විජට්ටුවේ එල්ලය සහ මූසිකය උඩින් ගෙනයාමේදී ඉස්මතු කරන සජීවනය සේම විජට්ටු 
සක්‍රිය/අක්‍රිය තත්ව සංක්‍"
+"රමණය වින්‍යාසගත කරන්න"
 
 #: oxygenanimationconfigwidget.cpp:53
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/sr/liboxygenstyleconfig.po 
new/oxygen-5.19.2/po/sr/liboxygenstyleconfig.po
--- old/oxygen-5.19.1/po/sr/liboxygenstyleconfig.po     2020-06-16 
14:47:57.000000000 +0200
+++ new/oxygen-5.19.2/po/sr/liboxygenstyleconfig.po     2020-06-23 
14:14:50.000000000 +0200
@@ -3,8 +3,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: liboxygenstyleconfig\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-05-20 03:25+0200\n"
 "PO-Revision-Date: 2017-10-30 23:08+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/sr/oxygen_kdecoration.po 
new/oxygen-5.19.2/po/sr/oxygen_kdecoration.po
--- old/oxygen-5.19.1/po/sr/oxygen_kdecoration.po       2020-06-16 
14:47:57.000000000 +0200
+++ new/oxygen-5.19.2/po/sr/oxygen_kdecoration.po       2020-06-23 
14:14:50.000000000 +0200
@@ -5,8 +5,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: oxygen_kdecoration\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-07-23 03:12+0200\n"
 "PO-Revision-Date: 2017-12-17 18:00+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -44,39 +44,39 @@
 "Подесите претапање између сенке и сијања прозора када се промени његово "
 "стање активности"
 
-#: config/oxygenexceptionlistwidget.cpp:113
+#: config/oxygenexceptionlistwidget.cpp:112
 #, kde-format
 msgid "New Exception - Oxygen Settings"
 msgstr "Нови изузетак — поставке Кисеоника"
 
-#: config/oxygenexceptionlistwidget.cpp:162
+#: config/oxygenexceptionlistwidget.cpp:161
 #, kde-format
 msgid "Edit Exception - Oxygen Settings"
 msgstr "Уређивање изузетка — поставке Кисеоника"
 
-#: config/oxygenexceptionlistwidget.cpp:195
+#: config/oxygenexceptionlistwidget.cpp:194
 #, kde-format
 msgid "Question - Oxygen Settings"
 msgstr "Питање — поставке Кисеоника"
 
-#: config/oxygenexceptionlistwidget.cpp:195
+#: config/oxygenexceptionlistwidget.cpp:194
 #, kde-format
 msgid "Remove selected exception?"
 msgstr "Уклонити изабрани изузетак?"
 
 #. i18n: ectx: property (text), widget (QPushButton, removeButton)
-#: config/oxygenexceptionlistwidget.cpp:196
+#: config/oxygenexceptionlistwidget.cpp:195
 #: config/ui/oxygenexceptionlistwidget.ui:79
 #, kde-format
 msgid "Remove"
 msgstr "Уклони"
 
-#: config/oxygenexceptionlistwidget.cpp:340
+#: config/oxygenexceptionlistwidget.cpp:339
 #, kde-format
 msgid "Warning - Oxygen Settings"
 msgstr "Упозорење — поставке Кисеоника"
 
-#: config/oxygenexceptionlistwidget.cpp:340
+#: config/oxygenexceptionlistwidget.cpp:339
 #, kde-format
 msgid "Regular Expression syntax is incorrect"
 msgstr "Лоша синтакса регуларног израза"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/sr/oxygen_style_config.po 
new/oxygen-5.19.2/po/sr/oxygen_style_config.po
--- old/oxygen-5.19.1/po/sr/oxygen_style_config.po      2020-06-16 
14:47:57.000000000 +0200
+++ new/oxygen-5.19.2/po/sr/oxygen_style_config.po      2020-06-23 
14:14:50.000000000 +0200
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: oxygen_style_config\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-05-20 03:25+0200\n"
 "PO-Revision-Date: 2017-10-30 23:08+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/sr/oxygen_style_demo.po 
new/oxygen-5.19.2/po/sr/oxygen_style_demo.po
--- old/oxygen-5.19.1/po/sr/oxygen_style_demo.po        2020-06-16 
14:47:57.000000000 +0200
+++ new/oxygen-5.19.2/po/sr/oxygen_style_demo.po        2020-06-23 
14:14:50.000000000 +0200
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: oxygen_style_demo\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2020-02-11 03:46+0100\n"
 "PO-Revision-Date: 2017-05-07 21:01+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -19,7 +19,7 @@
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: main.cpp:58 oxygendemodialog.cpp:58 oxygendemodialog.cpp:209
+#: main.cpp:52 oxygendemodialog.cpp:56 oxygendemodialog.cpp:205
 #, kde-format
 msgid "Oxygen Demo"
 msgstr "Демонстрација Кисеоника"
@@ -68,17 +68,17 @@
 msgid "Toggle authentication"
 msgstr "Аутентификација"
 
-#: oxygendemodialog.cpp:76
+#: oxygendemodialog.cpp:70
 #, kde-format
 msgid "Enabled"
 msgstr "Укључено"
 
-#: oxygendemodialog.cpp:81
+#: oxygendemodialog.cpp:75
 #, kde-format
 msgid "Right to left layout"
 msgstr "Распоред здесна улево"
 
-#: oxygendemodialog.cpp:87
+#: oxygendemodialog.cpp:81
 #, kde-format
 msgid "Style"
 msgstr "Стил"
@@ -123,42 +123,42 @@
 msgid "Shows the appearance of lists, trees and tables"
 msgstr "Показује изглед спискова, стабала и табела."
 
-#: oxygendemodialog.cpp:144
+#: oxygendemodialog.cpp:143
 #, kde-format
 msgid "Frames"
 msgstr "Оквири"
 
-#: oxygendemodialog.cpp:146
+#: oxygendemodialog.cpp:145
 #, kde-format
 msgid "Shows the appearance of various framed widgets"
 msgstr "Показује изглед разних уоквирених виџета."
 
-#: oxygendemodialog.cpp:154
+#: oxygendemodialog.cpp:153
 #, kde-format
 msgid "MDI Windows"
 msgstr "МДИ прозори"
 
-#: oxygendemodialog.cpp:156
+#: oxygendemodialog.cpp:155
 #, kde-format
 msgid "Shows the appearance of MDI windows"
 msgstr "Показује изглед МДИ прозора."
 
-#: oxygendemodialog.cpp:164
+#: oxygendemodialog.cpp:163
 #, kde-format
 msgid "Sliders"
 msgstr "Клизачи"
 
-#: oxygendemodialog.cpp:166
+#: oxygendemodialog.cpp:165
 #, kde-format
 msgid "Shows the appearance of sliders, progress bars and scrollbars"
 msgstr "Показује изглед клизача, трака напретка и клизачких трака."
 
-#: oxygendemodialog.cpp:175
+#: oxygendemodialog.cpp:174
 #, kde-format
 msgid "Benchmark"
 msgstr "Одмеравање"
 
-#: oxygendemodialog.cpp:177
+#: oxygendemodialog.cpp:176
 #, kde-format
 msgid "Emulates user interaction with widgets for benchmarking"
 msgstr "Симулира интеракцију корисника са виџетима ради одмеравања"
@@ -173,47 +173,42 @@
 msgid "password"
 msgstr "лозинка"
 
-#: oxygenmdidemowidget.cpp:49
+#: oxygenmdidemowidget.cpp:54
 #, kde-format
 msgid "Layout"
 msgstr "Распоред"
 
-#: oxygenmdidemowidget.cpp:50
+#: oxygenmdidemowidget.cpp:55
 #, kde-format
 msgid "Tile"
 msgstr "Поплочај"
 
-#: oxygenmdidemowidget.cpp:51
+#: oxygenmdidemowidget.cpp:56
 #, kde-format
 msgid "Cascade"
 msgstr "Наслажи"
 
-#: oxygenmdidemowidget.cpp:52
+#: oxygenmdidemowidget.cpp:57
 #, kde-format
 msgid "Tabs"
 msgstr "Језичци"
 
-#: oxygenmdidemowidget.cpp:54
+#: oxygenmdidemowidget.cpp:59
 #, kde-format
 msgid "Tools"
 msgstr "Алатке"
 
-#: oxygenmdidemowidget.cpp:56
+#: oxygenmdidemowidget.cpp:61
 #, kde-format
 msgid "Select Next Window"
 msgstr "На следећи прозор"
 
-#: oxygenmdidemowidget.cpp:60
+#: oxygenmdidemowidget.cpp:65
 #, kde-format
 msgid "Select Previous Window"
 msgstr "На претходни прозор"
 
-#: oxygenschemechooser.cpp:53
-#, kde-format
-msgid "&Color Theme"
-msgstr "&Тема боја"
-
-#: oxygensimulator.h:91
+#: oxygensimulator.h:87
 #, kde-format
 msgid "This is a sample text"
 msgstr "Ово је пример текста"
@@ -489,12 +484,6 @@
 msgid "Huge (48x48)"
 msgstr "Огромне (48×48)"
 
-#. i18n: ectx: property (windowTitle), widget (QDialog, OxygenDemoDialog)
-#: ui/oxygendemodialog.ui:14
-#, kde-format
-msgid "Dialog"
-msgstr "Дијалог"
-
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: ui/oxygenframedemowidget.ui:31
 #, kde-format
@@ -537,16 +526,18 @@
 
 #. i18n: ectx: property (text), widget (QRadioButton, raisedFrameRadioButton)
 #: ui/oxygenframedemowidget.ui:104
-#, kde-format
-msgid "Raised"
+#, fuzzy, kde-format
+#| msgid "Raised"
+msgid "&Raised"
 msgstr "Издигнут"
 
 #. i18n: ectx: property (text), widget (QRadioButton, plainFrameRadioButton)
 #: ui/oxygenframedemowidget.ui:117
-#, kde-format
+#, fuzzy, kde-format
+#| msgid "Flat"
 msgctxt "Flat frame. No frame is actually drawn."
-msgid "Flat"
-msgstr "Пљоснат"
+msgid "&Flat"
+msgstr "Пљоснато"
 
 #. i18n: ectx: property (text), widget (QRadioButton, sunkenFrameRadioButton)
 #: ui/oxygenframedemowidget.ui:124
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oxygen-5.19.1/po/sr@ijekavian/liboxygenstyleconfig.po 
new/oxygen-5.19.2/po/sr@ijekavian/liboxygenstyleconfig.po
--- old/oxygen-5.19.1/po/sr@ijekavian/liboxygenstyleconfig.po   2020-06-16 
14:47:58.000000000 +0200
+++ new/oxygen-5.19.2/po/sr@ijekavian/liboxygenstyleconfig.po   2020-06-23 
14:14:50.000000000 +0200
@@ -3,8 +3,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: liboxygenstyleconfig\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-05-20 03:25+0200\n"
 "PO-Revision-Date: 2017-10-30 23:08+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/sr@ijekavian/oxygen_kdecoration.po 
new/oxygen-5.19.2/po/sr@ijekavian/oxygen_kdecoration.po
--- old/oxygen-5.19.1/po/sr@ijekavian/oxygen_kdecoration.po     2020-06-16 
14:47:58.000000000 +0200
+++ new/oxygen-5.19.2/po/sr@ijekavian/oxygen_kdecoration.po     2020-06-23 
14:14:50.000000000 +0200
@@ -5,8 +5,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: oxygen_kdecoration\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-07-23 03:12+0200\n"
 "PO-Revision-Date: 2017-12-17 18:00+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -44,39 +44,39 @@
 "Подесите претапање између сенке и сијања прозора када се промени његово "
 "стање активности"
 
-#: config/oxygenexceptionlistwidget.cpp:113
+#: config/oxygenexceptionlistwidget.cpp:112
 #, kde-format
 msgid "New Exception - Oxygen Settings"
 msgstr "Нови изузетак — поставке Кисеоника"
 
-#: config/oxygenexceptionlistwidget.cpp:162
+#: config/oxygenexceptionlistwidget.cpp:161
 #, kde-format
 msgid "Edit Exception - Oxygen Settings"
 msgstr "Уређивање изузетка — поставке Кисеоника"
 
-#: config/oxygenexceptionlistwidget.cpp:195
+#: config/oxygenexceptionlistwidget.cpp:194
 #, kde-format
 msgid "Question - Oxygen Settings"
 msgstr "Питање — поставке Кисеоника"
 
-#: config/oxygenexceptionlistwidget.cpp:195
+#: config/oxygenexceptionlistwidget.cpp:194
 #, kde-format
 msgid "Remove selected exception?"
 msgstr "Уклонити изабрани изузетак?"
 
 #. i18n: ectx: property (text), widget (QPushButton, removeButton)
-#: config/oxygenexceptionlistwidget.cpp:196
+#: config/oxygenexceptionlistwidget.cpp:195
 #: config/ui/oxygenexceptionlistwidget.ui:79
 #, kde-format
 msgid "Remove"
 msgstr "Уклони"
 
-#: config/oxygenexceptionlistwidget.cpp:340
+#: config/oxygenexceptionlistwidget.cpp:339
 #, kde-format
 msgid "Warning - Oxygen Settings"
 msgstr "Упозорење — поставке Кисеоника"
 
-#: config/oxygenexceptionlistwidget.cpp:340
+#: config/oxygenexceptionlistwidget.cpp:339
 #, kde-format
 msgid "Regular Expression syntax is incorrect"
 msgstr "Лоша синтакса регуларног израза"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/sr@ijekavian/oxygen_style_config.po 
new/oxygen-5.19.2/po/sr@ijekavian/oxygen_style_config.po
--- old/oxygen-5.19.1/po/sr@ijekavian/oxygen_style_config.po    2020-06-16 
14:47:58.000000000 +0200
+++ new/oxygen-5.19.2/po/sr@ijekavian/oxygen_style_config.po    2020-06-23 
14:14:50.000000000 +0200
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: oxygen_style_config\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-05-20 03:25+0200\n"
 "PO-Revision-Date: 2017-10-30 23:08+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/sr@ijekavian/oxygen_style_demo.po 
new/oxygen-5.19.2/po/sr@ijekavian/oxygen_style_demo.po
--- old/oxygen-5.19.1/po/sr@ijekavian/oxygen_style_demo.po      2020-06-16 
14:47:58.000000000 +0200
+++ new/oxygen-5.19.2/po/sr@ijekavian/oxygen_style_demo.po      2020-06-23 
14:14:50.000000000 +0200
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: oxygen_style_demo\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2020-02-11 03:46+0100\n"
 "PO-Revision-Date: 2017-05-07 21:01+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -19,7 +19,7 @@
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: main.cpp:58 oxygendemodialog.cpp:58 oxygendemodialog.cpp:209
+#: main.cpp:52 oxygendemodialog.cpp:56 oxygendemodialog.cpp:205
 #, kde-format
 msgid "Oxygen Demo"
 msgstr "Демонстрација Кисеоника"
@@ -68,17 +68,17 @@
 msgid "Toggle authentication"
 msgstr "Аутентификација"
 
-#: oxygendemodialog.cpp:76
+#: oxygendemodialog.cpp:70
 #, kde-format
 msgid "Enabled"
 msgstr "Укључено"
 
-#: oxygendemodialog.cpp:81
+#: oxygendemodialog.cpp:75
 #, kde-format
 msgid "Right to left layout"
 msgstr "Распоред здесна улијево"
 
-#: oxygendemodialog.cpp:87
+#: oxygendemodialog.cpp:81
 #, kde-format
 msgid "Style"
 msgstr "Стил"
@@ -123,42 +123,42 @@
 msgid "Shows the appearance of lists, trees and tables"
 msgstr "Показује изглед спискова, стабала и табела."
 
-#: oxygendemodialog.cpp:144
+#: oxygendemodialog.cpp:143
 #, kde-format
 msgid "Frames"
 msgstr "Оквири"
 
-#: oxygendemodialog.cpp:146
+#: oxygendemodialog.cpp:145
 #, kde-format
 msgid "Shows the appearance of various framed widgets"
 msgstr "Показује изглед разних уоквирених виџета."
 
-#: oxygendemodialog.cpp:154
+#: oxygendemodialog.cpp:153
 #, kde-format
 msgid "MDI Windows"
 msgstr "МДИ прозори"
 
-#: oxygendemodialog.cpp:156
+#: oxygendemodialog.cpp:155
 #, kde-format
 msgid "Shows the appearance of MDI windows"
 msgstr "Показује изглед МДИ прозора."
 
-#: oxygendemodialog.cpp:164
+#: oxygendemodialog.cpp:163
 #, kde-format
 msgid "Sliders"
 msgstr "Клизачи"
 
-#: oxygendemodialog.cpp:166
+#: oxygendemodialog.cpp:165
 #, kde-format
 msgid "Shows the appearance of sliders, progress bars and scrollbars"
 msgstr "Показује изглед клизача, трака напретка и клизачких трака."
 
-#: oxygendemodialog.cpp:175
+#: oxygendemodialog.cpp:174
 #, kde-format
 msgid "Benchmark"
 msgstr "Одмјеравање"
 
-#: oxygendemodialog.cpp:177
+#: oxygendemodialog.cpp:176
 #, kde-format
 msgid "Emulates user interaction with widgets for benchmarking"
 msgstr "Симулира интеракцију корисника са виџетима ради одмјеравања"
@@ -173,47 +173,42 @@
 msgid "password"
 msgstr "лозинка"
 
-#: oxygenmdidemowidget.cpp:49
+#: oxygenmdidemowidget.cpp:54
 #, kde-format
 msgid "Layout"
 msgstr "Распоред"
 
-#: oxygenmdidemowidget.cpp:50
+#: oxygenmdidemowidget.cpp:55
 #, kde-format
 msgid "Tile"
 msgstr "Поплочај"
 
-#: oxygenmdidemowidget.cpp:51
+#: oxygenmdidemowidget.cpp:56
 #, kde-format
 msgid "Cascade"
 msgstr "Наслажи"
 
-#: oxygenmdidemowidget.cpp:52
+#: oxygenmdidemowidget.cpp:57
 #, kde-format
 msgid "Tabs"
 msgstr "Језичци"
 
-#: oxygenmdidemowidget.cpp:54
+#: oxygenmdidemowidget.cpp:59
 #, kde-format
 msgid "Tools"
 msgstr "Алатке"
 
-#: oxygenmdidemowidget.cpp:56
+#: oxygenmdidemowidget.cpp:61
 #, kde-format
 msgid "Select Next Window"
 msgstr "На сљедећи прозор"
 
-#: oxygenmdidemowidget.cpp:60
+#: oxygenmdidemowidget.cpp:65
 #, kde-format
 msgid "Select Previous Window"
 msgstr "На претходни прозор"
 
-#: oxygenschemechooser.cpp:53
-#, kde-format
-msgid "&Color Theme"
-msgstr "&Тема боја"
-
-#: oxygensimulator.h:91
+#: oxygensimulator.h:87
 #, kde-format
 msgid "This is a sample text"
 msgstr "Ово је примјер текста"
@@ -489,12 +484,6 @@
 msgid "Huge (48x48)"
 msgstr "Огромне (48×48)"
 
-#. i18n: ectx: property (windowTitle), widget (QDialog, OxygenDemoDialog)
-#: ui/oxygendemodialog.ui:14
-#, kde-format
-msgid "Dialog"
-msgstr "Дијалог"
-
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: ui/oxygenframedemowidget.ui:31
 #, kde-format
@@ -537,16 +526,18 @@
 
 #. i18n: ectx: property (text), widget (QRadioButton, raisedFrameRadioButton)
 #: ui/oxygenframedemowidget.ui:104
-#, kde-format
-msgid "Raised"
+#, fuzzy, kde-format
+#| msgid "Raised"
+msgid "&Raised"
 msgstr "Издигнут"
 
 #. i18n: ectx: property (text), widget (QRadioButton, plainFrameRadioButton)
 #: ui/oxygenframedemowidget.ui:117
-#, kde-format
+#, fuzzy, kde-format
+#| msgid "Flat"
 msgctxt "Flat frame. No frame is actually drawn."
-msgid "Flat"
-msgstr "Пљоснат"
+msgid "&Flat"
+msgstr "Пљоснато"
 
 #. i18n: ectx: property (text), widget (QRadioButton, sunkenFrameRadioButton)
 #: ui/oxygenframedemowidget.ui:124
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oxygen-5.19.1/po/sr@ijekavianlatin/liboxygenstyleconfig.po 
new/oxygen-5.19.2/po/sr@ijekavianlatin/liboxygenstyleconfig.po
--- old/oxygen-5.19.1/po/sr@ijekavianlatin/liboxygenstyleconfig.po      
2020-06-16 14:47:58.000000000 +0200
+++ new/oxygen-5.19.2/po/sr@ijekavianlatin/liboxygenstyleconfig.po      
2020-06-23 14:14:51.000000000 +0200
@@ -3,8 +3,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: liboxygenstyleconfig\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-05-20 03:25+0200\n"
 "PO-Revision-Date: 2017-10-30 23:08+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oxygen-5.19.1/po/sr@ijekavianlatin/oxygen_kdecoration.po 
new/oxygen-5.19.2/po/sr@ijekavianlatin/oxygen_kdecoration.po
--- old/oxygen-5.19.1/po/sr@ijekavianlatin/oxygen_kdecoration.po        
2020-06-16 14:47:58.000000000 +0200
+++ new/oxygen-5.19.2/po/sr@ijekavianlatin/oxygen_kdecoration.po        
2020-06-23 14:14:51.000000000 +0200
@@ -5,8 +5,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: oxygen_kdecoration\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-07-23 03:12+0200\n"
 "PO-Revision-Date: 2017-12-17 18:00+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -44,39 +44,39 @@
 "Podesite pretapanje između senke i sijanja prozora kada se promeni njegovo "
 "stanje aktivnosti"
 
-#: config/oxygenexceptionlistwidget.cpp:113
+#: config/oxygenexceptionlistwidget.cpp:112
 #, kde-format
 msgid "New Exception - Oxygen Settings"
 msgstr "Novi izuzetak — postavke Kiseonika"
 
-#: config/oxygenexceptionlistwidget.cpp:162
+#: config/oxygenexceptionlistwidget.cpp:161
 #, kde-format
 msgid "Edit Exception - Oxygen Settings"
 msgstr "Uređivanje izuzetka — postavke Kiseonika"
 
-#: config/oxygenexceptionlistwidget.cpp:195
+#: config/oxygenexceptionlistwidget.cpp:194
 #, kde-format
 msgid "Question - Oxygen Settings"
 msgstr "Pitanje — postavke Kiseonika"
 
-#: config/oxygenexceptionlistwidget.cpp:195
+#: config/oxygenexceptionlistwidget.cpp:194
 #, kde-format
 msgid "Remove selected exception?"
 msgstr "Ukloniti izabrani izuzetak?"
 
 #. i18n: ectx: property (text), widget (QPushButton, removeButton)
-#: config/oxygenexceptionlistwidget.cpp:196
+#: config/oxygenexceptionlistwidget.cpp:195
 #: config/ui/oxygenexceptionlistwidget.ui:79
 #, kde-format
 msgid "Remove"
 msgstr "Ukloni"
 
-#: config/oxygenexceptionlistwidget.cpp:340
+#: config/oxygenexceptionlistwidget.cpp:339
 #, kde-format
 msgid "Warning - Oxygen Settings"
 msgstr "Upozorenje — postavke Kiseonika"
 
-#: config/oxygenexceptionlistwidget.cpp:340
+#: config/oxygenexceptionlistwidget.cpp:339
 #, kde-format
 msgid "Regular Expression syntax is incorrect"
 msgstr "Loša sintaksa regularnog izraza"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oxygen-5.19.1/po/sr@ijekavianlatin/oxygen_style_config.po 
new/oxygen-5.19.2/po/sr@ijekavianlatin/oxygen_style_config.po
--- old/oxygen-5.19.1/po/sr@ijekavianlatin/oxygen_style_config.po       
2020-06-16 14:47:58.000000000 +0200
+++ new/oxygen-5.19.2/po/sr@ijekavianlatin/oxygen_style_config.po       
2020-06-23 14:14:51.000000000 +0200
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: oxygen_style_config\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-05-20 03:25+0200\n"
 "PO-Revision-Date: 2017-10-30 23:08+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oxygen-5.19.1/po/sr@ijekavianlatin/oxygen_style_demo.po 
new/oxygen-5.19.2/po/sr@ijekavianlatin/oxygen_style_demo.po
--- old/oxygen-5.19.1/po/sr@ijekavianlatin/oxygen_style_demo.po 2020-06-16 
14:47:58.000000000 +0200
+++ new/oxygen-5.19.2/po/sr@ijekavianlatin/oxygen_style_demo.po 2020-06-23 
14:14:51.000000000 +0200
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: oxygen_style_demo\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2020-02-11 03:46+0100\n"
 "PO-Revision-Date: 2017-05-07 21:01+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -19,7 +19,7 @@
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: main.cpp:58 oxygendemodialog.cpp:58 oxygendemodialog.cpp:209
+#: main.cpp:52 oxygendemodialog.cpp:56 oxygendemodialog.cpp:205
 #, kde-format
 msgid "Oxygen Demo"
 msgstr "Demonstracija Kiseonika"
@@ -68,17 +68,17 @@
 msgid "Toggle authentication"
 msgstr "Autentifikacija"
 
-#: oxygendemodialog.cpp:76
+#: oxygendemodialog.cpp:70
 #, kde-format
 msgid "Enabled"
 msgstr "Uključeno"
 
-#: oxygendemodialog.cpp:81
+#: oxygendemodialog.cpp:75
 #, kde-format
 msgid "Right to left layout"
 msgstr "Raspored zdesna ulijevo"
 
-#: oxygendemodialog.cpp:87
+#: oxygendemodialog.cpp:81
 #, kde-format
 msgid "Style"
 msgstr "Stil"
@@ -123,42 +123,42 @@
 msgid "Shows the appearance of lists, trees and tables"
 msgstr "Pokazuje izgled spiskova, stabala i tabela."
 
-#: oxygendemodialog.cpp:144
+#: oxygendemodialog.cpp:143
 #, kde-format
 msgid "Frames"
 msgstr "Okviri"
 
-#: oxygendemodialog.cpp:146
+#: oxygendemodialog.cpp:145
 #, kde-format
 msgid "Shows the appearance of various framed widgets"
 msgstr "Pokazuje izgled raznih uokvirenih vidžeta."
 
-#: oxygendemodialog.cpp:154
+#: oxygendemodialog.cpp:153
 #, kde-format
 msgid "MDI Windows"
 msgstr "MDI prozori"
 
-#: oxygendemodialog.cpp:156
+#: oxygendemodialog.cpp:155
 #, kde-format
 msgid "Shows the appearance of MDI windows"
 msgstr "Pokazuje izgled MDI prozora."
 
-#: oxygendemodialog.cpp:164
+#: oxygendemodialog.cpp:163
 #, kde-format
 msgid "Sliders"
 msgstr "Klizači"
 
-#: oxygendemodialog.cpp:166
+#: oxygendemodialog.cpp:165
 #, kde-format
 msgid "Shows the appearance of sliders, progress bars and scrollbars"
 msgstr "Pokazuje izgled klizača, traka napretka i klizačkih traka."
 
-#: oxygendemodialog.cpp:175
+#: oxygendemodialog.cpp:174
 #, kde-format
 msgid "Benchmark"
 msgstr "Odmjeravanje"
 
-#: oxygendemodialog.cpp:177
+#: oxygendemodialog.cpp:176
 #, kde-format
 msgid "Emulates user interaction with widgets for benchmarking"
 msgstr "Simulira interakciju korisnika sa vidžetima radi odmjeravanja"
@@ -173,47 +173,42 @@
 msgid "password"
 msgstr "lozinka"
 
-#: oxygenmdidemowidget.cpp:49
+#: oxygenmdidemowidget.cpp:54
 #, kde-format
 msgid "Layout"
 msgstr "Raspored"
 
-#: oxygenmdidemowidget.cpp:50
+#: oxygenmdidemowidget.cpp:55
 #, kde-format
 msgid "Tile"
 msgstr "Popločaj"
 
-#: oxygenmdidemowidget.cpp:51
+#: oxygenmdidemowidget.cpp:56
 #, kde-format
 msgid "Cascade"
 msgstr "Naslaži"
 
-#: oxygenmdidemowidget.cpp:52
+#: oxygenmdidemowidget.cpp:57
 #, kde-format
 msgid "Tabs"
 msgstr "Jezičci"
 
-#: oxygenmdidemowidget.cpp:54
+#: oxygenmdidemowidget.cpp:59
 #, kde-format
 msgid "Tools"
 msgstr "Alatke"
 
-#: oxygenmdidemowidget.cpp:56
+#: oxygenmdidemowidget.cpp:61
 #, kde-format
 msgid "Select Next Window"
 msgstr "Na sljedeći prozor"
 
-#: oxygenmdidemowidget.cpp:60
+#: oxygenmdidemowidget.cpp:65
 #, kde-format
 msgid "Select Previous Window"
 msgstr "Na prethodni prozor"
 
-#: oxygenschemechooser.cpp:53
-#, kde-format
-msgid "&Color Theme"
-msgstr "&Tema boja"
-
-#: oxygensimulator.h:91
+#: oxygensimulator.h:87
 #, kde-format
 msgid "This is a sample text"
 msgstr "Ovo je primjer teksta"
@@ -489,12 +484,6 @@
 msgid "Huge (48x48)"
 msgstr "Ogromne (48×48)"
 
-#. i18n: ectx: property (windowTitle), widget (QDialog, OxygenDemoDialog)
-#: ui/oxygendemodialog.ui:14
-#, kde-format
-msgid "Dialog"
-msgstr "Dijalog"
-
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: ui/oxygenframedemowidget.ui:31
 #, kde-format
@@ -537,16 +526,18 @@
 
 #. i18n: ectx: property (text), widget (QRadioButton, raisedFrameRadioButton)
 #: ui/oxygenframedemowidget.ui:104
-#, kde-format
-msgid "Raised"
+#, fuzzy, kde-format
+#| msgid "Raised"
+msgid "&Raised"
 msgstr "Izdignut"
 
 #. i18n: ectx: property (text), widget (QRadioButton, plainFrameRadioButton)
 #: ui/oxygenframedemowidget.ui:117
-#, kde-format
+#, fuzzy, kde-format
+#| msgid "Flat"
 msgctxt "Flat frame. No frame is actually drawn."
-msgid "Flat"
-msgstr "Pljosnat"
+msgid "&Flat"
+msgstr "Pljosnato"
 
 #. i18n: ectx: property (text), widget (QRadioButton, sunkenFrameRadioButton)
 #: ui/oxygenframedemowidget.ui:124
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/sr@latin/liboxygenstyleconfig.po 
new/oxygen-5.19.2/po/sr@latin/liboxygenstyleconfig.po
--- old/oxygen-5.19.1/po/sr@latin/liboxygenstyleconfig.po       2020-06-16 
14:47:58.000000000 +0200
+++ new/oxygen-5.19.2/po/sr@latin/liboxygenstyleconfig.po       2020-06-23 
14:14:51.000000000 +0200
@@ -3,8 +3,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: liboxygenstyleconfig\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-05-20 03:25+0200\n"
 "PO-Revision-Date: 2017-10-30 23:08+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/sr@latin/oxygen_kdecoration.po 
new/oxygen-5.19.2/po/sr@latin/oxygen_kdecoration.po
--- old/oxygen-5.19.1/po/sr@latin/oxygen_kdecoration.po 2020-06-16 
14:47:58.000000000 +0200
+++ new/oxygen-5.19.2/po/sr@latin/oxygen_kdecoration.po 2020-06-23 
14:14:51.000000000 +0200
@@ -5,8 +5,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: oxygen_kdecoration\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-07-23 03:12+0200\n"
 "PO-Revision-Date: 2017-12-17 18:00+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -44,39 +44,39 @@
 "Podesite pretapanje između senke i sijanja prozora kada se promeni njegovo "
 "stanje aktivnosti"
 
-#: config/oxygenexceptionlistwidget.cpp:113
+#: config/oxygenexceptionlistwidget.cpp:112
 #, kde-format
 msgid "New Exception - Oxygen Settings"
 msgstr "Novi izuzetak — postavke Kiseonika"
 
-#: config/oxygenexceptionlistwidget.cpp:162
+#: config/oxygenexceptionlistwidget.cpp:161
 #, kde-format
 msgid "Edit Exception - Oxygen Settings"
 msgstr "Uređivanje izuzetka — postavke Kiseonika"
 
-#: config/oxygenexceptionlistwidget.cpp:195
+#: config/oxygenexceptionlistwidget.cpp:194
 #, kde-format
 msgid "Question - Oxygen Settings"
 msgstr "Pitanje — postavke Kiseonika"
 
-#: config/oxygenexceptionlistwidget.cpp:195
+#: config/oxygenexceptionlistwidget.cpp:194
 #, kde-format
 msgid "Remove selected exception?"
 msgstr "Ukloniti izabrani izuzetak?"
 
 #. i18n: ectx: property (text), widget (QPushButton, removeButton)
-#: config/oxygenexceptionlistwidget.cpp:196
+#: config/oxygenexceptionlistwidget.cpp:195
 #: config/ui/oxygenexceptionlistwidget.ui:79
 #, kde-format
 msgid "Remove"
 msgstr "Ukloni"
 
-#: config/oxygenexceptionlistwidget.cpp:340
+#: config/oxygenexceptionlistwidget.cpp:339
 #, kde-format
 msgid "Warning - Oxygen Settings"
 msgstr "Upozorenje — postavke Kiseonika"
 
-#: config/oxygenexceptionlistwidget.cpp:340
+#: config/oxygenexceptionlistwidget.cpp:339
 #, kde-format
 msgid "Regular Expression syntax is incorrect"
 msgstr "Loša sintaksa regularnog izraza"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/sr@latin/oxygen_style_config.po 
new/oxygen-5.19.2/po/sr@latin/oxygen_style_config.po
--- old/oxygen-5.19.1/po/sr@latin/oxygen_style_config.po        2020-06-16 
14:47:58.000000000 +0200
+++ new/oxygen-5.19.2/po/sr@latin/oxygen_style_config.po        2020-06-23 
14:14:51.000000000 +0200
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: oxygen_style_config\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-05-20 03:25+0200\n"
 "PO-Revision-Date: 2017-10-30 23:08+0100\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/sr@latin/oxygen_style_demo.po 
new/oxygen-5.19.2/po/sr@latin/oxygen_style_demo.po
--- old/oxygen-5.19.1/po/sr@latin/oxygen_style_demo.po  2020-06-16 
14:47:58.000000000 +0200
+++ new/oxygen-5.19.2/po/sr@latin/oxygen_style_demo.po  2020-06-23 
14:14:51.000000000 +0200
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: oxygen_style_demo\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-08-16 09:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2020-02-11 03:46+0100\n"
 "PO-Revision-Date: 2017-05-07 21:01+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -19,7 +19,7 @@
 "X-Text-Markup: kde4\n"
 "X-Environment: kde\n"
 
-#: main.cpp:58 oxygendemodialog.cpp:58 oxygendemodialog.cpp:209
+#: main.cpp:52 oxygendemodialog.cpp:56 oxygendemodialog.cpp:205
 #, kde-format
 msgid "Oxygen Demo"
 msgstr "Demonstracija Kiseonika"
@@ -68,17 +68,17 @@
 msgid "Toggle authentication"
 msgstr "Autentifikacija"
 
-#: oxygendemodialog.cpp:76
+#: oxygendemodialog.cpp:70
 #, kde-format
 msgid "Enabled"
 msgstr "Uključeno"
 
-#: oxygendemodialog.cpp:81
+#: oxygendemodialog.cpp:75
 #, kde-format
 msgid "Right to left layout"
 msgstr "Raspored zdesna ulevo"
 
-#: oxygendemodialog.cpp:87
+#: oxygendemodialog.cpp:81
 #, kde-format
 msgid "Style"
 msgstr "Stil"
@@ -123,42 +123,42 @@
 msgid "Shows the appearance of lists, trees and tables"
 msgstr "Pokazuje izgled spiskova, stabala i tabela."
 
-#: oxygendemodialog.cpp:144
+#: oxygendemodialog.cpp:143
 #, kde-format
 msgid "Frames"
 msgstr "Okviri"
 
-#: oxygendemodialog.cpp:146
+#: oxygendemodialog.cpp:145
 #, kde-format
 msgid "Shows the appearance of various framed widgets"
 msgstr "Pokazuje izgled raznih uokvirenih vidžeta."
 
-#: oxygendemodialog.cpp:154
+#: oxygendemodialog.cpp:153
 #, kde-format
 msgid "MDI Windows"
 msgstr "MDI prozori"
 
-#: oxygendemodialog.cpp:156
+#: oxygendemodialog.cpp:155
 #, kde-format
 msgid "Shows the appearance of MDI windows"
 msgstr "Pokazuje izgled MDI prozora."
 
-#: oxygendemodialog.cpp:164
+#: oxygendemodialog.cpp:163
 #, kde-format
 msgid "Sliders"
 msgstr "Klizači"
 
-#: oxygendemodialog.cpp:166
+#: oxygendemodialog.cpp:165
 #, kde-format
 msgid "Shows the appearance of sliders, progress bars and scrollbars"
 msgstr "Pokazuje izgled klizača, traka napretka i klizačkih traka."
 
-#: oxygendemodialog.cpp:175
+#: oxygendemodialog.cpp:174
 #, kde-format
 msgid "Benchmark"
 msgstr "Odmeravanje"
 
-#: oxygendemodialog.cpp:177
+#: oxygendemodialog.cpp:176
 #, kde-format
 msgid "Emulates user interaction with widgets for benchmarking"
 msgstr "Simulira interakciju korisnika sa vidžetima radi odmeravanja"
@@ -173,47 +173,42 @@
 msgid "password"
 msgstr "lozinka"
 
-#: oxygenmdidemowidget.cpp:49
+#: oxygenmdidemowidget.cpp:54
 #, kde-format
 msgid "Layout"
 msgstr "Raspored"
 
-#: oxygenmdidemowidget.cpp:50
+#: oxygenmdidemowidget.cpp:55
 #, kde-format
 msgid "Tile"
 msgstr "Popločaj"
 
-#: oxygenmdidemowidget.cpp:51
+#: oxygenmdidemowidget.cpp:56
 #, kde-format
 msgid "Cascade"
 msgstr "Naslaži"
 
-#: oxygenmdidemowidget.cpp:52
+#: oxygenmdidemowidget.cpp:57
 #, kde-format
 msgid "Tabs"
 msgstr "Jezičci"
 
-#: oxygenmdidemowidget.cpp:54
+#: oxygenmdidemowidget.cpp:59
 #, kde-format
 msgid "Tools"
 msgstr "Alatke"
 
-#: oxygenmdidemowidget.cpp:56
+#: oxygenmdidemowidget.cpp:61
 #, kde-format
 msgid "Select Next Window"
 msgstr "Na sledeći prozor"
 
-#: oxygenmdidemowidget.cpp:60
+#: oxygenmdidemowidget.cpp:65
 #, kde-format
 msgid "Select Previous Window"
 msgstr "Na prethodni prozor"
 
-#: oxygenschemechooser.cpp:53
-#, kde-format
-msgid "&Color Theme"
-msgstr "&Tema boja"
-
-#: oxygensimulator.h:91
+#: oxygensimulator.h:87
 #, kde-format
 msgid "This is a sample text"
 msgstr "Ovo je primer teksta"
@@ -489,12 +484,6 @@
 msgid "Huge (48x48)"
 msgstr "Ogromne (48×48)"
 
-#. i18n: ectx: property (windowTitle), widget (QDialog, OxygenDemoDialog)
-#: ui/oxygendemodialog.ui:14
-#, kde-format
-msgid "Dialog"
-msgstr "Dijalog"
-
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: ui/oxygenframedemowidget.ui:31
 #, kde-format
@@ -537,16 +526,18 @@
 
 #. i18n: ectx: property (text), widget (QRadioButton, raisedFrameRadioButton)
 #: ui/oxygenframedemowidget.ui:104
-#, kde-format
-msgid "Raised"
+#, fuzzy, kde-format
+#| msgid "Raised"
+msgid "&Raised"
 msgstr "Izdignut"
 
 #. i18n: ectx: property (text), widget (QRadioButton, plainFrameRadioButton)
 #: ui/oxygenframedemowidget.ui:117
-#, kde-format
+#, fuzzy, kde-format
+#| msgid "Flat"
 msgctxt "Flat frame. No frame is actually drawn."
-msgid "Flat"
-msgstr "Pljosnat"
+msgid "&Flat"
+msgstr "Pljosnato"
 
 #. i18n: ectx: property (text), widget (QRadioButton, sunkenFrameRadioButton)
 #: ui/oxygenframedemowidget.ui:124
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/zh_CN/liboxygenstyleconfig.po 
new/oxygen-5.19.2/po/zh_CN/liboxygenstyleconfig.po
--- old/oxygen-5.19.1/po/zh_CN/liboxygenstyleconfig.po  2020-06-16 
14:48:02.000000000 +0200
+++ new/oxygen-5.19.2/po/zh_CN/liboxygenstyleconfig.po  2020-06-23 
14:14:54.000000000 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 03:25+0200\n"
-"PO-Revision-Date: 2020-06-12 19:01\n"
+"PO-Revision-Date: 2020-06-21 18:48\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/zh_CN/oxygen_kdecoration.po 
new/oxygen-5.19.2/po/zh_CN/oxygen_kdecoration.po
--- old/oxygen-5.19.1/po/zh_CN/oxygen_kdecoration.po    2020-06-16 
14:48:02.000000000 +0200
+++ new/oxygen-5.19.2/po/zh_CN/oxygen_kdecoration.po    2020-06-23 
14:14:54.000000000 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-07-23 03:12+0200\n"
-"PO-Revision-Date: 2020-06-12 19:01\n"
+"PO-Revision-Date: 2020-06-21 18:48\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/zh_CN/oxygen_style_config.po 
new/oxygen-5.19.2/po/zh_CN/oxygen_style_config.po
--- old/oxygen-5.19.1/po/zh_CN/oxygen_style_config.po   2020-06-16 
14:48:02.000000000 +0200
+++ new/oxygen-5.19.2/po/zh_CN/oxygen_style_config.po   2020-06-23 
14:14:54.000000000 +0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 03:25+0200\n"
-"PO-Revision-Date: 2020-06-12 19:01\n"
+"PO-Revision-Date: 2020-06-21 18:48\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oxygen-5.19.1/po/zh_CN/oxygen_style_demo.po 
new/oxygen-5.19.2/po/zh_CN/oxygen_style_demo.po
--- old/oxygen-5.19.1/po/zh_CN/oxygen_style_demo.po     2020-06-16 
14:48:02.000000000 +0200
+++ new/oxygen-5.19.2/po/zh_CN/oxygen_style_demo.po     2020-06-23 
14:14:54.000000000 +0200
@@ -11,7 +11,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-02-11 03:46+0100\n"
-"PO-Revision-Date: 2020-06-12 19:01\n"
+"PO-Revision-Date: 2020-06-21 18:48\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"



Reply via email to