Hello community,

here is the log from the commit of package kwin5 for openSUSE:Factory checked 
in at 2019-08-05 10:32:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kwin5 (Old)
 and      /work/SRC/openSUSE:Factory/.kwin5.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kwin5"

Mon Aug  5 10:32:43 2019 rev:103 rq:719916 version:5.16.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/kwin5/kwin5.changes      2019-07-26 
12:24:31.634456102 +0200
+++ /work/SRC/openSUSE:Factory/.kwin5.new.4126/kwin5.changes    2019-08-05 
10:32:45.607412390 +0200
@@ -1,0 +2,14 @@
+Tue Jul 30 12:40:18 UTC 2019 - Fabian Vogt <[email protected]>
+
+- Update to 5.16.4
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.4.php
+- Changes since 5.16.3:
+  * [kcmkwin/kwindesktop] Make SpinBox editable (kde#410368)
+  * Fix Qt warnings when rect is invalid, e.g. QRect(0,2111 3840x0)
+  * Don't crash when highlighted tabbox client is closed (kde#406784)
+  * Fix case-sensitivity typo in libinput configuration function (kde#408943)
+  * Fix creation of kdeglobals if /etc/xdg/kdeglobals present
+
+-------------------------------------------------------------------

Old:
----
  kwin-5.16.3.tar.xz
  kwin-5.16.3.tar.xz.sig

New:
----
  kwin-5.16.4.tar.xz
  kwin-5.16.4.tar.xz.sig

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

Other differences:
------------------
++++++ kwin5.spec ++++++
--- /var/tmp/diff_new_pack.gRnX8x/_old  2019-08-05 10:32:46.323412200 +0200
+++ /var/tmp/diff_new_pack.gRnX8x/_new  2019-08-05 10:32:46.331412198 +0200
@@ -21,7 +21,7 @@
 %global wayland (0%{?suse_version} >= 1330)
 %bcond_without lang
 Name:           kwin5
-Version:        5.16.3
+Version:        5.16.4
 Release:        0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %define _plasma5_bugfix %{version}}

++++++ kwin-5.16.3.tar.xz -> kwin-5.16.4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/CMakeLists.txt 
new/kwin-5.16.4/CMakeLists.txt
--- old/kwin-5.16.3/CMakeLists.txt      2019-07-09 17:48:17.000000000 +0200
+++ new/kwin-5.16.4/CMakeLists.txt      2019-07-30 12:26:07.000000000 +0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
 
 project(KWIN)
-set(PROJECT_VERSION "5.16.3")
+set(PROJECT_VERSION "5.16.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/decorations/decorationpalette.cpp 
new/kwin-5.16.4/decorations/decorationpalette.cpp
--- old/kwin-5.16.3/decorations/decorationpalette.cpp   2019-07-09 
17:45:19.000000000 +0200
+++ new/kwin-5.16.4/decorations/decorationpalette.cpp   2019-07-30 
12:25:09.000000000 +0200
@@ -41,7 +41,7 @@
                     ? colorScheme
                     : 
QStandardPaths::locate(QStandardPaths::GenericConfigLocation, colorScheme))
 {
-    if (m_colorScheme.isEmpty() && colorScheme == 
QStringLiteral("kdeglobals")) {
+    if 
(!m_colorScheme.startsWith(QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation))
 && colorScheme == QStringLiteral("kdeglobals")) {
         // kdeglobals doesn't exist so create it. This is needed to monitor it 
using QFileSystemWatcher.
         auto config = KSharedConfig::openConfig(colorScheme, 
KConfig::SimpleConfig);
         KConfigGroup wmConfig(config, QStringLiteral("WM"));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/input.cpp new/kwin-5.16.4/input.cpp
--- old/kwin-5.16.3/input.cpp   2019-07-09 17:45:19.000000000 +0200
+++ new/kwin-5.16.4/input.cpp   2019-07-30 12:25:09.000000000 +0200
@@ -1811,7 +1811,7 @@
     if (Application::usesLibinput()) {
         auto inputConfig = kwinApp()->inputConfig();
         inputConfig->reparseConfiguration();
-        const auto config = inputConfig->group(QStringLiteral("keyboard"));
+        const auto config = inputConfig->group(QStringLiteral("Keyboard"));
         const int delay = config.readEntry("RepeatDelay", 660);
         const int rate = config.readEntry("RepeatRate", 25);
         const bool enabled = config.readEntry("KeyboardRepeating", 0) == 0;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kwin-5.16.3/kcmkwin/kwindecoration/kwindecoration.desktop 
new/kwin-5.16.4/kcmkwin/kwindecoration/kwindecoration.desktop
--- old/kwin-5.16.3/kcmkwin/kwindecoration/kwindecoration.desktop       
2019-07-09 17:45:19.000000000 +0200
+++ new/kwin-5.16.4/kcmkwin/kwindecoration/kwindecoration.desktop       
2019-07-30 12:25:09.000000000 +0200
@@ -76,6 +76,7 @@
 Comment[ca]=Configura la barra de títol i les vores de les finestres
 Comment[ca@valencia]=Configura la barra de títol i les vores de les finestres
 Comment[da]=Indstil vinduets titellinjer og kanter
+Comment[de]=Titelleiste und Ränder von Fenstern einrichten
 Comment[en_GB]=Configure window titlebars and borders
 Comment[es]=Configurar barra de título y bordes de las ventanas
 Comment[eu]=Konfiguratu leihoen titulu-barrak eta ertzak
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kwin-5.16.3/kcmkwin/kwindecoration/package/metadata.desktop 
new/kwin-5.16.4/kcmkwin/kwindecoration/package/metadata.desktop
--- old/kwin-5.16.3/kcmkwin/kwindecoration/package/metadata.desktop     
2019-07-09 17:45:19.000000000 +0200
+++ new/kwin-5.16.4/kcmkwin/kwindecoration/package/metadata.desktop     
2019-07-30 12:25:09.000000000 +0200
@@ -78,6 +78,7 @@
 Comment[ca]=Configura la barra de títol i les vores de les finestres
 Comment[ca@valencia]=Configura la barra de títol i les vores de les finestres
 Comment[da]=Indstil vinduets titellinjer og kanter
+Comment[de]=Titelleiste und Ränder von Fenstern einrichten
 Comment[en_GB]=Configure window titlebars and borders
 Comment[es]=Configurar barra de título y bordes de las ventanas
 Comment[eu]=Konfiguratu leihoen titulu-barrak eta ertzak
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kwin-5.16.3/kcmkwin/kwindesktop/package/contents/ui/main.qml 
new/kwin-5.16.4/kcmkwin/kwindesktop/package/contents/ui/main.qml
--- old/kwin-5.16.3/kcmkwin/kwindesktop/package/contents/ui/main.qml    
2019-07-09 17:45:19.000000000 +0200
+++ new/kwin-5.16.4/kcmkwin/kwindesktop/package/contents/ui/main.qml    
2019-07-30 12:25:09.000000000 +0200
@@ -126,6 +126,7 @@
 
                 from: 1
                 to: 20
+                editable: true
 
                 onValueModified: kcm.desktopsModel.rows = value
             }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kwin-5.16.3/plugins/platforms/x11/standalone/x11_decoration_renderer.cpp 
new/kwin-5.16.4/plugins/platforms/x11/standalone/x11_decoration_renderer.cpp
--- 
old/kwin-5.16.3/plugins/platforms/x11/standalone/x11_decoration_renderer.cpp    
    2019-07-09 17:45:19.000000000 +0200
+++ 
new/kwin-5.16.4/plugins/platforms/x11/standalone/x11_decoration_renderer.cpp    
    2019-07-30 12:25:09.000000000 +0200
@@ -88,7 +88,7 @@
     bottom = bottom.intersected(geometry);
 
     auto renderPart = [this, c](const QRect &geo) {
-        if (geo.isNull()) {
+        if (!geo.isValid()) {
             return;
         }
         QImage image = renderToImage(geo);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/plugins/scenes/opengl/scene_opengl.cpp 
new/kwin-5.16.4/plugins/scenes/opengl/scene_opengl.cpp
--- old/kwin-5.16.3/plugins/scenes/opengl/scene_opengl.cpp      2019-07-09 
17:45:19.000000000 +0200
+++ new/kwin-5.16.4/plugins/scenes/opengl/scene_opengl.cpp      2019-07-30 
12:25:09.000000000 +0200
@@ -2490,7 +2490,7 @@
     const QRect geometry = dirty ? QRect(QPoint(0, 0), 
client()->client()->geometry().size()) : scheduled.boundingRect();
 
     auto renderPart = [this](const QRect &geo, const QRect &partRect, const 
QPoint &offset, bool rotated = false) {
-        if (geo.isNull()) {
+        if (!geo.isValid()) {
             return;
         }
         QImage image = renderToImage(geo);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/plugins/scenes/xrender/scene_xrender.cpp 
new/kwin-5.16.4/plugins/scenes/xrender/scene_xrender.cpp
--- old/kwin-5.16.3/plugins/scenes/xrender/scene_xrender.cpp    2019-07-09 
17:45:19.000000000 +0200
+++ new/kwin-5.16.4/plugins/scenes/xrender/scene_xrender.cpp    2019-07-30 
12:25:09.000000000 +0200
@@ -1226,7 +1226,7 @@
         xcb_create_gc(c, m_gc, m_pixmaps[int(DecorationPart::Top)], 0, 
nullptr);
     }
     auto renderPart = [this, c](const QRect &geo, const QPoint &offset, int 
index) {
-        if (geo.isNull()) {
+        if (!geo.isValid()) {
             return;
         }
         QImage image = renderToImage(geo);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kwin-5.16.3/po/ca/docs/kcontrol/windowbehaviour/index.docbook 
new/kwin-5.16.4/po/ca/docs/kcontrol/windowbehaviour/index.docbook
--- old/kwin-5.16.3/po/ca/docs/kcontrol/windowbehaviour/index.docbook   
2019-07-09 17:47:53.000000000 +0200
+++ new/kwin-5.16.4/po/ca/docs/kcontrol/windowbehaviour/index.docbook   
2019-07-30 12:25:59.000000000 +0200
@@ -751,7 +751,7 @@
 
 <variablelist>
 <title
->Canvi de finestra per pestanyes</title>
+>Finestres en pestanyes</title>
 
 <varlistentry>
 <term
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/ca/kcmkwm.po 
new/kwin-5.16.4/po/ca/kcmkwm.po
--- old/kwin-5.16.3/po/ca/kcmkwm.po     2019-07-09 17:46:03.000000000 +0200
+++ new/kwin-5.16.4/po/ca/kcmkwm.po     2019-07-30 12:25:24.000000000 +0200
@@ -13,14 +13,14 @@
 "Project-Id-Version: kcmkwm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-04-29 22:02+0200\n"
+"PO-Revision-Date: 2019-07-13 14:03+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"
-"X-Generator: Lokalize 19.04.0\n"
+"X-Generator: Lokalize 2.0\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
@@ -450,7 +450,7 @@
 #: advanced.ui:43
 #, kde-format
 msgid "Window Tabbing"
-msgstr "Canvi de finestra per pestanyes"
+msgstr "Finestres en pestanyes"
 
 #. i18n: ectx: property (whatsThis), widget (QCheckBox, 
inactiveTabsSkipTaskbar)
 #: advanced.ui:52
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/de/kwin.po 
new/kwin-5.16.4/po/de/kwin.po
--- old/kwin-5.16.3/po/de/kwin.po       2019-07-09 17:46:09.000000000 +0200
+++ new/kwin-5.16.4/po/de/kwin.po       2019-07-30 12:25:26.000000000 +0200
@@ -10,14 +10,14 @@
 "Project-Id-Version: kwin\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-06-20 07:48+0200\n"
-"PO-Revision-Date: 2019-01-18 12:27+0100\n"
+"PO-Revision-Date: 2019-07-17 18:04+0200\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"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 18.12.3\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 #, kde-format
@@ -1596,17 +1596,13 @@
 msgstr ""
 
 #: orientation_sensor.cpp:113
-#, fuzzy, kde-format
-#| msgctxt "An orientation of a pointer axis event"
-#| msgid "Vertical"
+#, kde-format
 msgctxt "Portrait oriented display"
 msgid "Vertical"
 msgstr "Senkrecht"
 
 #: orientation_sensor.cpp:117
-#, fuzzy, kde-format
-#| msgctxt "An orientation of a pointer axis event"
-#| msgid "Horizontal"
+#, kde-format
 msgctxt "Landscape oriented display"
 msgid "Horizontal"
 msgstr "Waagerecht"
@@ -2029,16 +2025,14 @@
 msgstr "Virtuelle Tastatur"
 
 #: virtualkeyboard.cpp:230
-#, fuzzy, kde-format
-#| msgid "Virtual Keyboard is enabled."
+#, kde-format
 msgid "Virtual Keyboard: enabled"
-msgstr "Die virtuelle Tastatur ist aktiviert."
+msgstr "Virtuelle Tastatur: Aktiviert"
 
 #: virtualkeyboard.cpp:233
-#, fuzzy, kde-format
-#| msgid "Virtual Keyboard is disabled."
+#, kde-format
 msgid "Virtual Keyboard: disabled"
-msgstr "Die virtuelle Tastatur ist deaktiviert."
+msgstr "Virtuelle Tastatur: Deaktiviert"
 
 #: virtualkeyboard.cpp:235
 #, kde-format
@@ -2046,18 +2040,7 @@
 msgstr ""
 
 #: workspace.cpp:1329
-#, fuzzy, kde-format
-#| msgctxt "Introductory text shown in the support information."
-#| msgid ""
-#| "KWin Support Information:\n"
-#| "The following information should be used when requesting support on e.g. "
-#| "https://forum.kde.org.\n";
-#| "It provides information about the currently running instance, which "
-#| "options are used,\n"
-#| "what OpenGL driver and which effects are running.\n"
-#| "Please post the information provided underneath this introductory text to "
-#| "a paste bin service\n"
-#| "like http://paste.kde.org instead of pasting into support threads.\n"
+#, kde-format
 msgctxt "Introductory text shown in the support information."
 msgid ""
 "KWin Support Information:\n"
@@ -2077,8 +2060,8 @@
 "Optionen verwendet werden,\n"
 "welcher OpenGL-Treiber verwendet wird und welche Effekte laufen.\n"
 "Bitte geben Sie die unten stehenden Informationen bei einem Pastebin-Dienst "
-"wie http://paste.kde.org ein, anstatt sie direkt in die Hilfediskussionen zu "
-"schreiben.\n"
+"wie https://paste.kde.org ein, anstatt sie direkt in die Hilfediskussionen "
+"zu schreiben.\n"
 
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/fi/kcm_kwindecoration.po 
new/kwin-5.16.4/po/fi/kcm_kwindecoration.po
--- old/kwin-5.16.3/po/fi/kcm_kwindecoration.po 2019-07-09 17:46:19.000000000 
+0200
+++ new/kwin-5.16.4/po/fi/kcm_kwindecoration.po 2019-07-30 12:25:29.000000000 
+0200
@@ -15,7 +15,7 @@
 "Project-Id-Version: kcmkwindecoration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-03-18 20:27+0200\n"
+"PO-Revision-Date: 2019-07-29 16:58+0200\n"
 "Last-Translator: Tommi Nieminen <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
 "Language: fi\n"
@@ -24,7 +24,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-POT-Import-Date: 2012-12-01 22:22:23+0000\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 2.0\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -115,8 +115,7 @@
 msgstr "Otsikkopalkki"
 
 #: package/contents/ui/Buttons.qml:224
-#, fuzzy, kde-format
-#| msgid "Drop here to remove button"
+#, kde-format
 msgid "Drop button here to remove it"
 msgstr "Poista painike pudottamalla se tähän"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/fr/kcm_kwindecoration.po 
new/kwin-5.16.4/po/fr/kcm_kwindecoration.po
--- old/kwin-5.16.3/po/fr/kcm_kwindecoration.po 2019-07-09 17:46:22.000000000 
+0200
+++ new/kwin-5.16.4/po/fr/kcm_kwindecoration.po 2019-07-30 12:25:30.000000000 
+0200
@@ -16,7 +16,7 @@
 "Project-Id-Version: kcmkwindecoration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-03-19 17:26+0800\n"
+"PO-Revision-Date: 2019-07-21 16:16+0800\n"
 "Last-Translator: Simon Depiets <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
 "Language: fr\n"
@@ -117,10 +117,9 @@
 msgstr "Barre de titre"
 
 #: package/contents/ui/Buttons.qml:224
-#, fuzzy, kde-format
-#| msgid "Drop here to remove button"
+#, kde-format
 msgid "Drop button here to remove it"
-msgstr "Faites glisser ici pour supprimer un bouton"
+msgstr "Faites glisser un bouton ici pour le supprimer"
 
 #: package/contents/ui/Buttons.qml:241
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/fr/kcmkwinscreenedges.po 
new/kwin-5.16.4/po/fr/kcmkwinscreenedges.po
--- old/kwin-5.16.3/po/fr/kcmkwinscreenedges.po 2019-07-09 17:46:22.000000000 
+0200
+++ new/kwin-5.16.4/po/fr/kcmkwinscreenedges.po 2019-07-30 12:25:30.000000000 
+0200
@@ -7,7 +7,7 @@
 # Sebastien Renard <[email protected]>, 2013, 2014.
 # Vincent Pinon <[email protected]>, 2016, 2017.
 # Yoann Laissus <[email protected]>, 2017, 2018.
-# Simon Depiets <[email protected]>, 2018.
+# Simon Depiets <[email protected]>, 2018, 2019.
 #
 msgid ""
 msgstr ""
@@ -22,7 +22,7 @@
 "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"
+"X-Generator: Lokalize 19.07.70\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/fr/kwin_effects.po 
new/kwin-5.16.4/po/fr/kwin_effects.po
--- old/kwin-5.16.3/po/fr/kwin_effects.po       2019-07-09 17:46:22.000000000 
+0200
+++ new/kwin-5.16.4/po/fr/kwin_effects.po       2019-07-30 12:25:30.000000000 
+0200
@@ -22,7 +22,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 19.03.70\n"
+"X-Generator: Lokalize 19.07.70\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/gl/kcmkwm.po 
new/kwin-5.16.4/po/gl/kcmkwm.po
--- old/kwin-5.16.3/po/gl/kcmkwm.po     2019-07-09 17:46:25.000000000 +0200
+++ new/kwin-5.16.4/po/gl/kcmkwm.po     2019-07-30 12:25:31.000000000 +0200
@@ -14,14 +14,14 @@
 "Project-Id-Version: kcmkwm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-03-23 11:58+0100\n"
+"PO-Revision-Date: 2019-07-21 10:15+0200\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n"
 "Language-Team: Galician <[email protected]>\n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 18.12.2\n"
+"X-Generator: Lokalize 19.04.1\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
@@ -450,7 +450,7 @@
 #: advanced.ui:43
 #, kde-format
 msgid "Window Tabbing"
-msgstr "Xanelas en lapelas"
+msgstr "Xanelas con lapelas"
 
 #. i18n: ectx: property (whatsThis), widget (QCheckBox, 
inactiveTabsSkipTaskbar)
 #: advanced.ui:52
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/id/kcm_kwin_effects.po 
new/kwin-5.16.4/po/id/kcm_kwin_effects.po
--- old/kwin-5.16.3/po/id/kcm_kwin_effects.po   2019-07-09 17:46:37.000000000 
+0200
+++ new/kwin-5.16.4/po/id/kcm_kwin_effects.po   2019-07-30 12:25:34.000000000 
+0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: kwin\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-06-16 08:16+0700\n"
+"PO-Revision-Date: 2019-07-19 03:20+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 19.04.1\n"
+"X-Generator: Lokalize 19.04.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -63,7 +63,7 @@
 "effect's settings."
 msgstr ""
 "Petunjuk: Untuk menemukan atau mengkonfigurasi bagaimana cara mengaktifkan "
-"efek, silakan lihat di setelan efek."
+"efek, silakan lihat di pengaturan efek."
 
 #: package/contents/ui/main.qml:45
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/id/kcm_kwin_virtualdesktops.po 
new/kwin-5.16.4/po/id/kcm_kwin_virtualdesktops.po
--- old/kwin-5.16.3/po/id/kcm_kwin_virtualdesktops.po   2019-07-09 
17:46:37.000000000 +0200
+++ new/kwin-5.16.4/po/id/kcm_kwin_virtualdesktops.po   2019-07-30 
12:25:34.000000000 +0200
@@ -7,15 +7,15 @@
 "Project-Id-Version: kwin\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-02-21 16:41+0700\n"
-"Last-Translator: wantoyo <[email protected]>\n"
+"PO-Revision-Date: 2019-07-19 03:20+0700\n"
+"Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\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 18.12.1\n"
+"X-Generator: Lokalize 19.04.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -35,7 +35,7 @@
 #: desktopsmodel.cpp:629
 #, kde-format
 msgid "There was an error saving the settings to the compositor."
-msgstr "Ada sebuah error penyimpanan setelan ke kompositor."
+msgstr "Ada sebuah error penyimpanan pengaturan ke kompositor."
 
 #: desktopsmodel.cpp:632
 #, kde-format
@@ -65,8 +65,8 @@
 "Virtual desktops have been changed outside this settings application. Saving "
 "now will overwrite the changes."
 msgstr ""
-"Desktop virtual telah diubah dari sisiluar aplikasi setelan ini. Menyimpan "
-"sekarang akan menimpa perubahan."
+"Desktop virtual telah diubah dari sisiluar aplikasi pengaturan ini. "
+"Menyimpan sekarang akan menimpa perubahan."
 
 #: package/contents/ui/main.qml:121
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/id/kcm_kwindecoration.po 
new/kwin-5.16.4/po/id/kcm_kwindecoration.po
--- old/kwin-5.16.3/po/id/kcm_kwindecoration.po 2019-07-09 17:46:37.000000000 
+0200
+++ new/kwin-5.16.4/po/id/kcm_kwindecoration.po 2019-07-30 12:25:34.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kcmkwindecoration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-06-16 08:16+0700\n"
+"PO-Revision-Date: 2019-07-02 19:14+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 19.04.1\n"
+"X-Generator: Lokalize 19.04.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -163,7 +163,7 @@
 #, kde-format
 msgctxt "checkbox label"
 msgid "Show titlebar button tooltips"
-msgstr "Tampilkan bilah-judul tips-alat tombol"
+msgstr "Tampilkan tips-alat tombol bilah-judul"
 
 #: package/contents/ui/Themes.qml:97
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/id/kcm_kwintabbox.po 
new/kwin-5.16.4/po/id/kcm_kwintabbox.po
--- old/kwin-5.16.3/po/id/kcm_kwintabbox.po     2019-07-09 17:46:37.000000000 
+0200
+++ new/kwin-5.16.4/po/id/kcm_kwintabbox.po     2019-07-30 12:25:34.000000000 
+0200
@@ -9,15 +9,15 @@
 "Project-Id-Version: kcm_kwintabbox\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-03-25 20:42+0700\n"
-"Last-Translator: wantoyo <[email protected]>\n"
+"PO-Revision-Date: 2019-06-30 20:56+0700\n"
+"Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\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 18.12.3\n"
+"X-Generator: Lokalize 19.04.2\n"
 
 #: layoutpreview.cpp:165
 #, kde-format
@@ -45,7 +45,7 @@
 msgid ""
 "Focus policy settings limit the functionality of navigating through windows."
 msgstr ""
-"Setelan kebijakan fokus membatasi fungsionalitas bernavigasi antar window."
+"Pengesetan kebijakan fokus membatasi fungsionalitas bernavigasi antar window."
 
 #: main.cpp:107
 #, kde-format
@@ -218,8 +218,8 @@
 "The currently selected window will be highlighted by fading out all other "
 "windows. This option requires desktop effects to be active."
 msgstr ""
-"Window terpilih saat ini akan disorot dengan cara memunculkan semua window "
-"lainnya. Opsi ini memerlukan efek desktop untuk dapat aktif."
+"Window terpilih saat ini akan disorot dengan melesapkan semua window "
+"lainnya. Opsi ini memerlukan efek desktop supaya aktif."
 
 #. i18n: ectx: property (text), widget (QCheckBox, highlightWindowCheck)
 #: main.ui:552
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/id/kcmkwincommon.po 
new/kwin-5.16.4/po/id/kcmkwincommon.po
--- old/kwin-5.16.3/po/id/kcmkwincommon.po      2019-07-09 17:46:37.000000000 
+0200
+++ new/kwin-5.16.4/po/id/kcmkwincommon.po      2019-07-30 12:25:34.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kcmkwincompositing\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-01-07 18:01+0700\n"
+"PO-Revision-Date: 2019-07-02 05:58+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -17,7 +17,7 @@
 "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"
+"X-Generator: Lokalize 19.04.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -63,7 +63,7 @@
 #, kde-format
 msgctxt "Category of Desktop Effects, used as section header"
 msgid "Tools"
-msgstr "Alat"
+msgstr "Peralatan"
 
 #: effectsmodel.cpp:69
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/id/kcmkwincompositing.po 
new/kwin-5.16.4/po/id/kcmkwincompositing.po
--- old/kwin-5.16.3/po/id/kcmkwincompositing.po 2019-07-09 17:46:37.000000000 
+0200
+++ new/kwin-5.16.4/po/id/kcmkwincompositing.po 2019-07-30 12:25:34.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kcmkwincompositing\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-04-16 07:54+0700\n"
+"PO-Revision-Date: 2019-07-19 03:20+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 19.04.2\n"
 
 #: compositing.cpp:378
 #, kde-format
@@ -190,7 +190,7 @@
 #: compositing.ui:249
 #, kde-format
 msgid "Keep window thumbnails:"
-msgstr "Jaga miniatur window:"
+msgstr "Jaga gambar-mini window:"
 
 #. i18n: ectx: property (text), item, widget (QComboBox, windowThumbnail)
 #: compositing.ui:262
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/id/kcmkwinrules.po 
new/kwin-5.16.4/po/id/kcmkwinrules.po
--- old/kwin-5.16.3/po/id/kcmkwinrules.po       2019-07-09 17:46:37.000000000 
+0200
+++ new/kwin-5.16.4/po/id/kcmkwinrules.po       2019-07-30 12:25:34.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kcmkwinrules\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-04-16 07:54+0700\n"
+"PO-Revision-Date: 2019-07-20 08:17+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 19.04.3\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -210,7 +210,7 @@
 #: kcm.cpp:51
 #, kde-format
 msgid "Window-Specific Settings Configuration Module"
-msgstr "Modul Konfigurasi Setelan Window Spesifik"
+msgstr "Modul Konfigurasi Pengaturan Window Spesifik"
 
 #: kcm.cpp:52
 #, kde-format
@@ -231,8 +231,8 @@
 "manager. If you do use a different window manager, please refer to its "
 "documentation for how to customize window behavior.</p>"
 msgstr ""
-"<p><h1>Setelan Window Spesifik</h1> Di sini kamu bisa mengkustomisasikan "
-"setelan window secara spesifik hanya untuk beberapa window.</p> <p>Perlu "
+"<p><h1>Pengaturan Window Spesifik</h1> Di sini kamu bisa mengkustomisasikan "
+"pengaturan window secara spesifik hanya untuk beberapa window.</p> <p>Perlu "
 "dicatat bahwa konfigurasi ini tidak akan berpengaruh jika kamu tidak "
 "menggunakan KWin sebagai pengelola window kamu. Jika kamu menggunakan "
 "pengelola window yang berbeda, silakan merujuk ke dokumentasi pengelola "
@@ -242,12 +242,12 @@
 #: kcm.cpp:100
 #, kde-format
 msgid "Remember settings separately for every window"
-msgstr "Ingat setelan secara terpisah untuk tiap window"
+msgstr "Ingat pengaturan secara terpisah untuk tiap window"
 
 #: kcm.cpp:101
 #, kde-format
 msgid "Show internal settings for remembering"
-msgstr "Tampilan setelan internal untuk mengingat"
+msgstr "Tampilan pengaturan internal untuk mengingat"
 
 #: kcm.cpp:102
 #, kde-format
@@ -257,18 +257,18 @@
 #: main.cpp:138
 #, kde-format
 msgid "Application settings for %1"
-msgstr "Setelan aplikasi untuk %1"
+msgstr "Pengesetan aplikasi untuk %1"
 
 #: main.cpp:158
 #, kde-format
 msgid "Window settings for %1"
-msgstr "Setelan window untuk %1"
+msgstr "Pengesetan window untuk %1"
 
 #: main.cpp:210
 #, kde-format
 msgctxt "Window caption for the application wide rules dialog"
 msgid "Edit Application-Specific Settings"
-msgstr "Edit Setelan Aplikasi Spesifik"
+msgstr "Edit Pengaturan Aplikasi Spesifik"
 
 #: main.cpp:240
 #, kde-format
@@ -283,12 +283,12 @@
 #: main.cpp:248
 #, kde-format
 msgid "KWin id of the window for special window settings."
-msgstr "Id KWin pada window untuk setelan window spesial."
+msgstr "Id KWin pada window untuk pengaturan window spesial."
 
 #: main.cpp:249
 #, kde-format
 msgid "Whether the settings should affect all windows of the application."
-msgstr "Apakah setelan akan mempengaruhi semua window aplikasi."
+msgstr "Apakah pengaturan akan mempengaruhi semua window aplikasi."
 
 #: main.cpp:258
 #, kde-format
@@ -355,8 +355,8 @@
 #: ruleswidget.cpp:67
 #, kde-format
 msgid ""
-"Enable this checkbox to alter this window property for the specified "
-"window(s)."
+"Enable this checkbox to alter this window property for the specified window"
+"(s)."
 msgstr ""
 "Fungsikan kotak centang ini untuk membedakan properti window ini untuk "
 "window yang ditentukan."
@@ -364,54 +364,56 @@
 #: ruleswidget.cpp:69
 #, kde-format
 msgid ""
-"Specify how the window property should be affected:<ul><li><em>Do Not Affect:"
-"</em> The window property will not be affected and therefore the default "
-"handling for it will be used. Specifying this will block more generic window "
-"settings from taking effect.</li><li><em>Apply Initially:</em> The window "
-"property will be only set to the given value after the window is created. No "
-"further changes will be affected.</li><li><em>Remember:</em> The value of "
-"the window property will be remembered and every time the window is created, "
-"the last remembered value will be applied.</li><li><em>Force:</em> The "
-"window property will be always forced to the given value.</li><li><em>Apply "
-"Now:</em> The window property will be set to the given value immediately and "
-"will not be affected later (this action will be deleted afterwards).</"
-"li><li><em>Force temporarily:</em> The window property will be forced to the "
-"given value until it is hidden (this action will be deleted after the window "
-"is hidden).</li></ul>"
+"Specify how the window property should be affected:<ul><li><em>Do Not "
+"Affect:</em> The window property will not be affected and therefore the "
+"default handling for it will be used. Specifying this will block more "
+"generic window settings from taking effect.</li><li><em>Apply Initially:</"
+"em> The window property will be only set to the given value after the window "
+"is created. No further changes will be affected.</li><li><em>Remember:</em> "
+"The value of the window property will be remembered and every time the "
+"window is created, the last remembered value will be applied.</"
+"li><li><em>Force:</em> The window property will be always forced to the "
+"given value.</li><li><em>Apply Now:</em> The window property will be set to "
+"the given value immediately and will not be affected later (this action will "
+"be deleted afterwards).</li><li><em>Force temporarily:</em> The window "
+"property will be forced to the given value until it is hidden (this action "
+"will be deleted after the window is hidden).</li></ul>"
 msgstr ""
 "Tentukan bagaimana properti window akan dipengaruhi:<ul><li><em>Jangan "
 "pengaruhi:</em> Properti window tidak akan dipengaruhi sehingga penanganan "
-"baku untuknya yang akan digunakan. Menentukan ini akan menghalangi setelan "
-"window generik lainnya dari mempunyai dampak.</li><li><em>Terapkan Secara "
-"Awal:</em> Properti window hanya akan diatur ke nilai yang diberikan setelah "
-"window diciptakan. Tak ada perubahan lainnya yang akan dipengaruhi.</"
-"li><li><em>Ingat:</em> Nilai properti window akan diingat dan tiap kali "
-"window diciptakan, nilai yang diingat terakhir akan diterapkan.</"
-"li><li><em>Paksa:</em> Properti window akan selalu dipaksa ke nilai yang "
-"diberikan.</li><li><em>Terapkan Sekarang:</em> Properti window akan diatur "
-"ke nilai yang diberikan secepatnya dan tidak akan berdampak nantinya (aksi "
-"ini akan dihapus nantinya).</li><li><em>Paksa sementara:</em> Properti "
-"window akan dipaksa ke nilai yang diberikan sampai disembunyikan (aksi ini "
-"akan dihapus setelah window disembunyikan).</li></ul>"
+"baku untuknya yang akan digunakan. Menentukan ini akan menghalangi "
+"pengaturan window generik lainnya dari mempunyai dampak.</"
+"li><li><em>Terapkan Secara Awal:</em> Properti window hanya akan diatur ke "
+"nilai yang diberikan setelah window diciptakan. Tak ada perubahan lainnya "
+"yang akan dipengaruhi.</li><li><em>Ingat:</em> Nilai properti window akan "
+"diingat dan tiap kali window diciptakan, nilai yang diingat terakhir akan "
+"diterapkan.</li><li><em>Paksa:</em> Properti window akan selalu dipaksa ke "
+"nilai yang diberikan.</li><li><em>Terapkan Sekarang:</em> Properti window "
+"akan diatur ke nilai yang diberikan secepatnya dan tidak akan berdampak "
+"nantinya (aksi ini akan dihapus nantinya).</li><li><em>Paksa sementara:</em> "
+"Properti window akan dipaksa ke nilai yang diberikan sampai disembunyikan "
+"(aksi ini akan dihapus setelah window disembunyikan).</li></ul>"
 
 #: ruleswidget.cpp:84
 #, kde-format
 msgid ""
-"Specify how the window property should be affected:<ul><li><em>Do Not Affect:"
-"</em> The window property will not be affected and therefore the default "
-"handling for it will be used. Specifying this will block more generic window "
-"settings from taking effect.</li><li><em>Force:</em> The window property "
-"will be always forced to the given value.</li><li><em>Force temporarily:</"
-"em> The window property will be forced to the given value until it is hidden "
-"(this action will be deleted after the window is hidden).</li></ul>"
+"Specify how the window property should be affected:<ul><li><em>Do Not "
+"Affect:</em> The window property will not be affected and therefore the "
+"default handling for it will be used. Specifying this will block more "
+"generic window settings from taking effect.</li><li><em>Force:</em> The "
+"window property will be always forced to the given value.</li><li><em>Force "
+"temporarily:</em> The window property will be forced to the given value "
+"until it is hidden (this action will be deleted after the window is hidden)."
+"</li></ul>"
 msgstr ""
-"Tentukan bagaimana properti window dipengaruhi:<ul><li><em>Jangan Pengaruhi:"
-"</em> Properti window tidak akan dipengaruhi sehingga penanganan baku "
-"untuknya yang akan digunakan. Menentukan ini akan menghalagi setelan window "
-"generik lainnya dari mempunyai dampak.</li><li><em>Paksa:</em> Properti "
-"window akan selalu dipaksa ke nilai yang diberikan.</li><li><em>Paksa "
-"sementara:</em> Properti window akan dipaksa ke nilai yang diberikan sampai "
-"disembunyikan (aksi ini akan dihapus setelah window disembunyikan).</li></ul>"
+"Tentukan bagaimana properti window dipengaruhi:<ul><li><em>Jangan "
+"Pengaruhi:</em> Properti window tidak akan dipengaruhi sehingga penanganan "
+"baku untuknya yang akan digunakan. Menentukan ini akan menghalagi pengaturan "
+"window generik lainnya dari mempunyai dampak.</li><li><em>Paksa:</em> "
+"Properti window akan selalu dipaksa ke nilai yang diberikan.</"
+"li><li><em>Paksa sementara:</em> Properti window akan dipaksa ke nilai yang "
+"diberikan sampai disembunyikan (aksi ini akan dihapus setelah window "
+"disembunyikan).</li></ul>"
 
 #: ruleswidget.cpp:152
 #, kde-format
@@ -426,7 +428,7 @@
 #: ruleswidget.cpp:791
 #, kde-format
 msgid "Settings for %1"
-msgstr "Setelan untuk %1"
+msgstr "Pengaturan untuk %1"
 
 #: ruleswidget.cpp:793
 #, kde-format
@@ -443,14 +445,15 @@
 "types."
 msgstr ""
 "Anda telah menentukan kelas window sebagai tidak penting.\n"
-"Ini berarti setelan mungkin akan diterapkan ke window dari semua aplikasi. "
-"Jika anda ingin menciptakan setelan generik, maka disarankan kepada anda "
-"untuk setidaknya membatasi tipe window untuk menghindari tipe window spesial."
+"Ini berarti pengaturan mungkin akan diterapkan ke window dari semua "
+"aplikasi. Jika anda ingin menciptakan pengaturan generik, maka disarankan "
+"kepada anda untuk setidaknya membatasi tipe window untuk menghindari tipe "
+"window spesial."
 
 #: ruleswidget.cpp:832
 #, kde-format
 msgid "Edit Window-Specific Settings"
-msgstr "Edit Setelan Window Spesifik"
+msgstr "Edit Pengaturan Window Spesifik"
 
 #: ruleswidget.cpp:864
 #, kde-format
@@ -460,10 +463,10 @@
 "setting using the checkbox, select in what way the setting should be "
 "affected and to which value."
 msgstr ""
-"Dialog konfigurasi ini memungkinkan pembedaan setelan hanya untuk window "
-"atau aplikasi terpilih. Temukan setelan yang ingin anda pengaruhi, fungsikan "
-"setelan menggunakan kotak centang, pilih dengan cara bagaimana setelan akan "
-"dipengaruhi dan ke nilai mana."
+"Dialog konfigurasi ini memungkinkan pembedaan pengaturan hanya untuk window "
+"atau aplikasi terpilih. Temukan pengaturan yang ingin anda pengaruhi, "
+"fungsikan pengaturan menggunakan kotak centang, pilih dengan cara bagaimana "
+"pengaturan akan dipengaruhi dan ke nilai mana."
 
 #: ruleswidget.cpp:868
 #, kde-format
@@ -1029,7 +1032,7 @@
 "This may be pointless and the restriction prevents arbitrary dimensions\n"
 "like your complete screen area."
 msgstr ""
-"Misalnya terminal atau player video dapat bertanya untuk tetap pada rasio\n"
+"Misalnya terminal atau pemutar video dapat bertanya untuk tetap pada rasio\n"
 "aspek tertentu atau hanya membesar dengan nilai lebih besar dari satu\n"
 "(misalnya dimensi satu karakter).\n"
 "Hal ini tampak sia-sia dan pembatasan mencegah dimensi yang seharusnya\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/id/kcmkwinscreenedges.po 
new/kwin-5.16.4/po/id/kcmkwinscreenedges.po
--- old/kwin-5.16.3/po/id/kcmkwinscreenedges.po 2019-07-09 17:46:37.000000000 
+0200
+++ new/kwin-5.16.4/po/id/kcmkwinscreenedges.po 2019-07-30 12:25:34.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kcmkwinscreenedges\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-04-05 20:26+0700\n"
+"PO-Revision-Date: 2019-07-15 07:32+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 19.04.1\n"
+"X-Generator: Lokalize 19.04.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -156,7 +156,7 @@
 #: main.ui:150
 #, kde-format
 msgid "Other Settings"
-msgstr "Setelan Lainnya"
+msgstr "Pengaturan Lainnya"
 
 #. i18n: ectx: property (toolTip), widget (QLabel, desktopSwitchLabel)
 #: main.ui:162
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/id/kcmkwm.po 
new/kwin-5.16.4/po/id/kcmkwm.po
--- old/kwin-5.16.3/po/id/kcmkwm.po     2019-07-09 17:46:37.000000000 +0200
+++ new/kwin-5.16.4/po/id/kcmkwm.po     2019-07-30 12:25:34.000000000 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kcmkwm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-04-16 07:54+0700\n"
+"PO-Revision-Date: 2019-07-20 07:43+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 19.04.3\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -148,7 +148,7 @@
 #: actions.ui:95 actions.ui:197 actions.ui:360
 #, kde-format
 msgid "Increase Opacity"
-msgstr "Tambah Opasitas"
+msgstr "Tambahi Opasitas"
 
 #. i18n: @item:inlistbox behavior on double click
 #. i18n: ectx: property (text), item, widget (KComboBox, coTiDbl)
@@ -219,7 +219,7 @@
 "inactive inner window ('inner' means: not titlebar, not frame)."
 msgstr ""
 "Di baris ini kamu bisa mengkustomisasikan perilaku klik tengah ketika klik "
-"di window bagian-dalam takaktif ('bagian-dalam' berarti: bukan bilah judul, "
+"di window bagian-dalam tak aktif ('bagian-dalam' berarti: bukan bilah judul, "
 "bukan bingkai)."
 
 #. i18n: ectx: property (text), item, widget (KComboBox, coWin2)
@@ -276,7 +276,7 @@
 "window ('inner' means: not titlebar, not frame)."
 msgstr ""
 "Di baris ini kamu bisa mengkustomisasikan perilaku ketika menggulir di "
-"window bagian-dalam takaktif ('bagian-dalam' berarti: bukan bilah judul, "
+"window bagian-dalam tak aktif ('bagian-dalam' berarti: bukan bilah judul, "
 "bukan bingkai)."
 
 #. i18n: ectx: property (text), item, widget (KComboBox, coWinWheel)
@@ -375,7 +375,7 @@
 "inactive inner window ('inner' means: not titlebar, not frame)."
 msgstr ""
 "Di baris ini kamu bisa mengkustomisasikan perilaku klik kiri ketika klik di "
-"window bagian-dalam takaktif ('bagian-dalam' berarti: bukan bilah judul, "
+"window bagian-dalam tak aktif ('bagian-dalam' berarti: bukan bilah judul, "
 "bukan bingkai)."
 
 #. i18n: ectx: property (whatsThis), widget (KComboBox, coWin3)
@@ -386,7 +386,7 @@
 "inactive inner window ('inner' means: not titlebar, not frame)."
 msgstr ""
 "Di baris ini kamu bisa mengkustomisasikan perilaku klik kanan ketika klik di "
-"window bagian-dalam takaktif ('bagian-dalam' berarti: bukan bilah judul, "
+"window bagian-dalam tak aktif ('bagian-dalam' berarti: bukan bilah judul, "
 "bukan bingkai)."
 
 #. i18n: ectx: property (text), widget (QLabel, label_2)
@@ -457,7 +457,7 @@
 #: advanced.ui:55
 #, kde-format
 msgid "Hide inactive window tabs from the taskbar"
-msgstr "Sembunyikan tab window takaktif dari taskbar"
+msgstr "Sembunyikan tab window tak aktif dari taskbar"
 
 #. i18n: ectx: property (whatsThis), widget (QCheckBox, 
autogroupSimilarWindows)
 #: advanced.ui:62
@@ -635,7 +635,7 @@
 "with the proper window type for this feature to work."
 msgstr ""
 "Jika dinyalakan, utilitas window (alat window, menu cabik,...) dari aplikasi "
-"takaktif akan disembunyikan dan hanya akan ditampilkan ketika aplikasi "
+"tak aktif akan disembunyikan dan hanya akan ditampilkan ketika aplikasi "
 "menjadi aktif. Perlu dicatat bahwa aplikasi harus menandai window dengan "
 "tipe window yang benar agar fitur ini bekerja."
 
@@ -643,7 +643,7 @@
 #: advanced.ui:251
 #, kde-format
 msgid "Hide utility windows for inactive applications"
-msgstr "Sembunyikan window utilitas untuk aplikasi-aplikasi takaktif"
+msgstr "Sembunyikan window utilitas untuk aplikasi-aplikasi tak aktif"
 
 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
 #: focus.ui:30
@@ -935,7 +935,7 @@
 msgstr ""
 "Jika opsi ini difungsikan, window aktif akan dibawa ke depan ketika kamu "
 "klik di suatu tempat di dalam konten window. Untuk mengubahnya untuk window "
-"takaktif, kamu perlu mengubah setelan di tab Aksi."
+"tak aktif, kamu perlu mengubah pengaturan di tab Aksi."
 
 #. i18n: ectx: property (text), widget (QCheckBox, clickRaiseOn)
 #: focus.ui:497
@@ -1127,8 +1127,8 @@
 #. i18n: ectx: property (text), item, widget (KComboBox, coTiInAct2)
 #. i18n: ectx: property (text), item, widget (KComboBox, coTiAct3)
 #. i18n: ectx: property (text), item, widget (KComboBox, coTiInAct3)
-#: mouse.ui:75 mouse.ui:257 mouse.ui:330 mouse.ui:401 mouse.ui:474 mouse.ui:545
-#: mouse.ui:618
+#: mouse.ui:75 mouse.ui:257 mouse.ui:330 mouse.ui:401 mouse.ui:474
+#: mouse.ui:545 mouse.ui:618
 #, kde-format
 msgid "Shade"
 msgstr "Tiraikan"
@@ -1141,8 +1141,8 @@
 #. i18n: ectx: property (text), item, widget (KComboBox, coTiInAct2)
 #. i18n: ectx: property (text), item, widget (KComboBox, coTiAct3)
 #. i18n: ectx: property (text), item, widget (KComboBox, coTiInAct3)
-#: mouse.ui:85 mouse.ui:262 mouse.ui:335 mouse.ui:406 mouse.ui:479 mouse.ui:550
-#: mouse.ui:623
+#: mouse.ui:85 mouse.ui:262 mouse.ui:335 mouse.ui:406 mouse.ui:479
+#: mouse.ui:550 mouse.ui:623
 #, kde-format
 msgid "Close"
 msgstr "Tutup"
@@ -1190,7 +1190,7 @@
 "of an inactive window."
 msgstr ""
 "Di kolom ini kamu bisa mengkustomisasikan klik mouse ke bilah judul atau "
-"bingkai dari window takaktif."
+"bingkai dari window tak aktif."
 
 #. i18n: ectx: property (text), widget (QLabel, label_7)
 #: mouse.ui:204
@@ -1249,7 +1249,7 @@
 "<em>inactive</em> window."
 msgstr ""
 "Perilaku saat klik <em>kiri</em> di bilah judul atau bingkai dari window "
-"<em>takaktif</em>."
+"<em>tak aktif</em>."
 
 #. i18n: ectx: property (text), item, widget (KComboBox, coTiInAct1)
 #. i18n: ectx: property (text), item, widget (KComboBox, coTiInAct2)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/id/kwin.po 
new/kwin-5.16.4/po/id/kwin.po
--- old/kwin-5.16.3/po/id/kwin.po       2019-07-09 17:46:37.000000000 +0200
+++ new/kwin-5.16.4/po/id/kwin.po       2019-07-30 12:25:34.000000000 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kwin\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-06-20 07:48+0200\n"
-"PO-Revision-Date: 2019-04-20 22:45+0700\n"
+"PO-Revision-Date: 2019-07-20 07:43+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 19.04.3\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -440,7 +440,7 @@
 #, kde-format
 msgctxt "A pinch gesture is updated"
 msgid "Pinch update"
-msgstr "Update cubitan"
+msgstr "Perbarui cubitan"
 
 #: debug_console.cpp:364
 #, kde-format
@@ -494,7 +494,7 @@
 #, kde-format
 msgctxt "A swipe gesture is updated"
 msgid "Swipe update"
-msgstr "Update usapan"
+msgstr "Perbarui usapan"
 
 #: debug_console.cpp:417
 #, kde-format
@@ -1163,7 +1163,7 @@
 #: kwinbindings.cpp:87
 #, kde-format
 msgid "Setup Window Shortcut"
-msgstr "Siapkan Pintasan Window"
+msgstr "Pengesetan Pintasan Window"
 
 #: kwinbindings.cpp:89
 #, kde-format
@@ -1268,12 +1268,12 @@
 #: kwinbindings.cpp:129
 #, kde-format
 msgid "Increase Opacity of Active Window by 5 %"
-msgstr "Naikkan Opasitas Window Aktiv dengan 5 %"
+msgstr "Tambahi Opasitas Window Aktiv dengan 5 %"
 
 #: kwinbindings.cpp:131
 #, kde-format
 msgid "Decrease Opacity of Active Window by 5 %"
-msgstr "Turunkan Opasitas Window Aktiv dengan 5 %"
+msgstr "Kurangi Opasitas Window Aktiv dengan 5 %"
 
 #: kwinbindings.cpp:134
 #, kde-format
@@ -1573,17 +1573,17 @@
 #: orientation_sensor.cpp:98
 #, kde-format
 msgid "Allow Rotation"
-msgstr "Memungkinkan Perputaran"
+msgstr "Memungkinkan Perotasian"
 
 #: orientation_sensor.cpp:99
 #, kde-format
 msgid "Automatic screen rotation is enabled"
-msgstr "Putar layar otomatis telah difungsikan"
+msgstr "Perotasian layar otomatis telah difungsikan"
 
 #: orientation_sensor.cpp:109
 #, kde-format
 msgid "Undefined"
-msgstr "Takditentukan"
+msgstr "Tak ditentukan"
 
 #: orientation_sensor.cpp:113
 #, kde-format
@@ -1600,7 +1600,7 @@
 #: orientation_sensor.cpp:121
 #, kde-format
 msgid "Automatic screen rotation is disabled"
-msgstr "Putar layar otomatis telah dinonfungsikan"
+msgstr "Perotasian layar otomatis telah dinonfungsikan"
 
 #: plugins/scenes/opengl/scene_opengl.cpp:577
 #, kde-format
@@ -1813,12 +1813,12 @@
 #: useractions.cpp:319
 #, kde-format
 msgid "Special &Window Settings..."
-msgstr "Setelan &Window Spesial..."
+msgstr "Pengaturan &Window Spesial..."
 
 #: useractions.cpp:324
 #, kde-format
 msgid "S&pecial Application Settings..."
-msgstr "Setelan Aplikasi S&pesial..."
+msgstr "Pengaturan Aplikasi S&pesial..."
 
 #: useractions.cpp:332
 #, kde-format
@@ -1826,7 +1826,7 @@
 "Entry in context menu of window decoration to open the configuration module "
 "of KWin"
 msgid "Window Manager S&ettings..."
-msgstr "S&etelan Pengelola Window..."
+msgstr "P&engaturan Pengelola Window..."
 
 #: useractions.cpp:362
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/id/kwin_clients.po 
new/kwin-5.16.4/po/id/kwin_clients.po
--- old/kwin-5.16.3/po/id/kwin_clients.po       2019-07-09 17:46:37.000000000 
+0200
+++ new/kwin-5.16.4/po/id/kwin_clients.po       2019-07-30 12:25:34.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kwin_clients\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2018-12-23 14:17+0700\n"
+"PO-Revision-Date: 2019-06-30 21:02+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 18.12.1\n"
+"X-Generator: Lokalize 19.04.2\n"
 
 #: aurorae/src/aurorae.cpp:722
 #, kde-format
@@ -139,8 +139,9 @@
 "Check this option if you want the buttons to fade in when the mouse pointer "
 "hovers over them and fade out again when it moves away."
 msgstr ""
-"Centang opsi ini jika anda ingin agar tombol melesap ketika penunjuk mouse "
-"melayang di atas tombol dan muncul lagi ketika penunjuk mouse pindah."
+"Centang opsi ini jika anda ingin agar tombol melesap-muncul ketika penunjuk "
+"mouse melayang di atas tombol dan melesap-hilang lagi ketika penunjuk mouse "
+"pindah."
 
 #. i18n: ectx: property (text), widget (QCheckBox, kcfg_animateButtons)
 #: aurorae/themes/plastik/package/contents/ui/config.ui:79
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/id/kwin_effects.po 
new/kwin-5.16.4/po/id/kwin_effects.po
--- old/kwin-5.16.3/po/id/kwin_effects.po       2019-07-09 17:46:37.000000000 
+0200
+++ new/kwin-5.16.4/po/id/kwin_effects.po       2019-07-30 12:25:34.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kwin_effects\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-28 07:26+0200\n"
-"PO-Revision-Date: 2019-06-21 21:13+0700\n"
+"PO-Revision-Date: 2019-07-29 16:23+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 19.04.1\n"
+"X-Generator: Lokalize 19.04.3\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -196,7 +196,7 @@
 #, kde-format
 msgctxt "@title:tab Advanced Settings"
 msgid "Advanced"
-msgstr "Tingkatlanjut"
+msgstr "Tingkat-lanjut"
 
 #: cube/cube_config.cpp:65 desktopgrid/desktopgrid_config.cpp:63
 #: flipswitch/flipswitch_config.cpp:67 invert/invert_config.cpp:49
@@ -343,7 +343,7 @@
 #: cube/cube_config.ui:321
 #, kde-format
 msgid "Display image on caps"
-msgstr "Displaikan image di kap"
+msgstr "Displaikan citra di kap"
 
 #. i18n: ectx: property (toolTip), widget (QSlider, kcfg_ZPosition)
 #: cube/cube_config.ui:367
@@ -946,7 +946,7 @@
 #, kde-format
 msgctxt "Comment describing the KWin Effect"
 msgid "Highlight areas of the desktop that have been recently updated"
-msgstr "Sorot area desktop yang baru-baru ini diupdate"
+msgstr "Sorot area desktop yang baru-baru ini diperbarui"
 
 #: effect_builtins.cpp:492
 #, kde-format
@@ -1012,13 +1012,13 @@
 #, kde-format
 msgctxt "Name of a KWin Effect"
 msgid "Thumbnail Aside"
-msgstr "Thumbnail Aside"
+msgstr "Gambar-mini Aside"
 
 #: effect_builtins.cpp:568
 #, kde-format
 msgctxt "Comment describing the KWin Effect"
 msgid "Display window thumbnails on the edge of the screen"
-msgstr "Displaikan miniatur window di tepi layar"
+msgstr "Displaikan gambar-mini window di tepi layar"
 
 #: effect_builtins.cpp:582
 #, kde-format
@@ -1153,14 +1153,14 @@
 #: glide/glide_config.ui:56 glide/glide_config.ui:154
 #, kde-format
 msgid "Rotation edge:"
-msgstr "Tepi perputaran:"
+msgstr "Tepi perotasian:"
 
 #. i18n: ectx: property (text), widget (QLabel, label_InRotationAngle)
 #. i18n: ectx: property (text), widget (QLabel, label_OutRotationAngle)
 #: glide/glide_config.ui:93 glide/glide_config.ui:191
 #, kde-format
 msgid "Rotation angle:"
-msgstr "Sudutpandang perputaran:"
+msgstr "Sudutpandang perotasian:"
 
 #. i18n: ectx: property (text), widget (QLabel, label_InDistance)
 #. i18n: ectx: property (text), widget (QLabel, label_OutDistance)
@@ -1255,7 +1255,7 @@
 #: mouseclick/mouseclick_config.ui:21
 #, kde-format
 msgid "Basic Settings"
-msgstr "Setelan Dasar"
+msgstr "Pengaturan Dasar"
 
 #. i18n: ectx: property (text), widget (QLabel, button1_label)
 #: mouseclick/mouseclick_config.ui:37
@@ -1279,7 +1279,7 @@
 #: mouseclick/mouseclick_config.ui:91
 #, kde-format
 msgid "Advanced Settings"
-msgstr "Setelan Tingkatlanjut"
+msgstr "Pengaturan Tingkat-lanjut"
 
 #. i18n: ectx: property (title), widget (QGroupBox, rings)
 #: mouseclick/mouseclick_config.ui:97
@@ -1406,7 +1406,7 @@
 #: presentwindows/presentwindows_config.ui:39
 #, kde-format
 msgid "Natural Layout Settings"
-msgstr "Setelan Tata Letak Natural"
+msgstr "Pengaturan Tata Letak Natural"
 
 #. i18n: ectx: property (text), widget (QCheckBox, kcfg_FillGaps)
 #: presentwindows/presentwindows_config.ui:45
@@ -1757,7 +1757,7 @@
 #: thumbnailaside/thumbnailaside_config.cpp:73
 #, kde-format
 msgid "Toggle Thumbnail for Current Window"
-msgstr "Jungkit Thumbnail untuk Window Saat Ini"
+msgstr "Jungkit Gambar-mini untuk Window Saat Ini"
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: thumbnailaside/thumbnailaside_config.ui:23
@@ -1842,7 +1842,7 @@
 #: translucency/package/contents/ui/config.ui:20
 #, kde-format
 msgid "General Translucency Settings"
-msgstr "Setelan Translusens Umum"
+msgstr "Pengaturan Translusens Umum"
 
 #. i18n: ectx: property (text), widget (QLabel, comboboxpopup_label)
 #: translucency/package/contents/ui/config.ui:64
@@ -1872,7 +1872,7 @@
 #: translucency/package/contents/ui/config.ui:226
 #, kde-format
 msgid "Inactive windows:"
-msgstr "Window takaktif:"
+msgstr "Window tak aktif:"
 
 #. i18n: ectx: property (title), widget (QGroupBox, kcfg_IndividualMenuConfig)
 #: translucency/package/contents/ui/config.ui:267
@@ -1924,7 +1924,7 @@
 #: wobblywindows/wobblywindows_config.ui:20
 #, kde-format
 msgid "Advanced"
-msgstr "Tingkatlanjut"
+msgstr "Tingkat-lanjut"
 
 #. i18n: ectx: property (text), widget (QLabel, label_4)
 #: wobblywindows/wobblywindows_config.ui:26
@@ -2083,7 +2083,7 @@
 #: zoom/zoom_config.ui:102
 #, kde-format
 msgid "Visibility of the mouse-pointer."
-msgstr "Ketampakan penunjuk mouse."
+msgstr "Keterlihatan penunjuk mouse."
 
 #. i18n: ectx: property (text), item, widget (QComboBox, kcfg_MousePointer)
 #: zoom/zoom_config.ui:106
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/ru/kcm_kwindecoration.po 
new/kwin-5.16.4/po/ru/kcm_kwindecoration.po
--- old/kwin-5.16.3/po/ru/kcm_kwindecoration.po 2019-07-09 17:47:13.000000000 
+0200
+++ new/kwin-5.16.4/po/ru/kcm_kwindecoration.po 2019-07-30 12:25:45.000000000 
+0200
@@ -18,14 +18,14 @@
 "Project-Id-Version: kcmkwindecoration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-06-02 21:19+0300\n"
+"PO-Revision-Date: 2019-07-26 19:26+0300\n"
 "Last-Translator: Alexander Yavorsky <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
 "Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 19.04.1\n"
+"X-Generator: Lokalize 19.04.3\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-Environment: kde\n"
@@ -185,7 +185,7 @@
 #: package/contents/ui/Themes.qml:97
 #, kde-format
 msgid "Edit %1 Theme"
-msgstr ""
+msgstr "Редактировать оформление %1"
 
 #: utils.cpp:38
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/ru/kwin.po 
new/kwin-5.16.4/po/ru/kwin.po
--- old/kwin-5.16.3/po/ru/kwin.po       2019-07-09 17:47:13.000000000 +0200
+++ new/kwin-5.16.4/po/ru/kwin.po       2019-07-30 12:25:45.000000000 +0200
@@ -22,14 +22,14 @@
 "Project-Id-Version: kwin\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-06-20 07:48+0200\n"
-"PO-Revision-Date: 2019-06-20 19:07+0300\n"
+"PO-Revision-Date: 2019-07-24 21:44+0300\n"
 "Last-Translator: Alexander Yavorsky <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
 "Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 19.04.2\n"
+"X-Generator: Lokalize 19.04.3\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"
 "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
@@ -1610,20 +1610,16 @@
 #: orientation_sensor.cpp:109
 #, kde-format
 msgid "Undefined"
-msgstr ""
+msgstr "Не определено"
 
 #: orientation_sensor.cpp:113
-#, fuzzy, kde-format
-#| msgctxt "An orientation of a pointer axis event"
-#| msgid "Vertical"
+#, kde-format
 msgctxt "Portrait oriented display"
 msgid "Vertical"
 msgstr "По вертикали"
 
 #: orientation_sensor.cpp:117
-#, fuzzy, kde-format
-#| msgctxt "An orientation of a pointer axis event"
-#| msgid "Horizontal"
+#, kde-format
 msgctxt "Landscape oriented display"
 msgid "Horizontal"
 msgstr "По горизонтали"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/sk/kcm_kwindecoration.po 
new/kwin-5.16.4/po/sk/kcm_kwindecoration.po
--- old/kwin-5.16.3/po/sk/kcm_kwindecoration.po 2019-07-09 17:47:17.000000000 
+0200
+++ new/kwin-5.16.4/po/sk/kcm_kwindecoration.po 2019-07-30 12:25:47.000000000 
+0200
@@ -165,7 +165,7 @@
 #, kde-format
 msgctxt "checkbox label"
 msgid "Show titlebar button tooltips"
-msgstr "&Zobrazovať rady tlačidiel okna"
+msgstr "&Zobrazovať popisy tlačidiel okna"
 
 #: package/contents/ui/Themes.qml:97
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kcm-kwin-scripts.po 
new/kwin-5.16.4/po/zh_CN/kcm-kwin-scripts.po
--- old/kwin-5.16.3/po/zh_CN/kcm-kwin-scripts.po        2019-07-09 
17:47:41.000000000 +0200
+++ new/kwin-5.16.4/po/zh_CN/kcm-kwin-scripts.po        2019-07-30 
12:25:54.000000000 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:07\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kcm_kwin_effects.po 
new/kwin-5.16.4/po/zh_CN/kcm_kwin_effects.po
--- old/kwin-5.16.3/po/zh_CN/kcm_kwin_effects.po        2019-07-09 
17:47:41.000000000 +0200
+++ new/kwin-5.16.4/po/zh_CN/kcm_kwin_effects.po        2019-07-30 
12:25:54.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:09\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kcm_kwin_virtualdesktops.po 
new/kwin-5.16.4/po/zh_CN/kcm_kwin_virtualdesktops.po
--- old/kwin-5.16.3/po/zh_CN/kcm_kwin_virtualdesktops.po        2019-07-09 
17:47:41.000000000 +0200
+++ new/kwin-5.16.4/po/zh_CN/kcm_kwin_virtualdesktops.po        2019-07-30 
12:25:54.000000000 +0200
@@ -13,7 +13,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:09\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kcm_kwindecoration.po 
new/kwin-5.16.4/po/zh_CN/kcm_kwindecoration.po
--- old/kwin-5.16.3/po/zh_CN/kcm_kwindecoration.po      2019-07-09 
17:47:41.000000000 +0200
+++ new/kwin-5.16.4/po/zh_CN/kcm_kwindecoration.po      2019-07-30 
12:25:54.000000000 +0200
@@ -14,7 +14,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:09\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kcm_kwintabbox.po 
new/kwin-5.16.4/po/zh_CN/kcm_kwintabbox.po
--- old/kwin-5.16.3/po/zh_CN/kcm_kwintabbox.po  2019-07-09 17:47:41.000000000 
+0200
+++ new/kwin-5.16.4/po/zh_CN/kcm_kwintabbox.po  2019-07-30 12:25: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 07:46+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:08\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kcmkwincommon.po 
new/kwin-5.16.4/po/zh_CN/kcmkwincommon.po
--- old/kwin-5.16.3/po/zh_CN/kcmkwincommon.po   2019-07-09 17:47:41.000000000 
+0200
+++ new/kwin-5.16.4/po/zh_CN/kcmkwincommon.po   2019-07-30 12:25: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 07:46+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:09\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -24,7 +24,7 @@
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
 msgid "Your names"
-msgstr "KDE 中国"
+msgstr "KDE China"
 
 #, kde-format
 msgctxt "EMAIL OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kcmkwincompositing.po 
new/kwin-5.16.4/po/zh_CN/kcmkwincompositing.po
--- old/kwin-5.16.3/po/zh_CN/kcmkwincompositing.po      2019-07-09 
17:47:41.000000000 +0200
+++ new/kwin-5.16.4/po/zh_CN/kcmkwincompositing.po      2019-07-30 
12:25: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 07:46+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:08\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kcmkwinrules.po 
new/kwin-5.16.4/po/zh_CN/kcmkwinrules.po
--- old/kwin-5.16.3/po/zh_CN/kcmkwinrules.po    2019-07-09 17:47:41.000000000 
+0200
+++ new/kwin-5.16.4/po/zh_CN/kcmkwinrules.po    2019-07-30 12:25: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 07:46+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:08\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kcmkwinscreenedges.po 
new/kwin-5.16.4/po/zh_CN/kcmkwinscreenedges.po
--- old/kwin-5.16.3/po/zh_CN/kcmkwinscreenedges.po      2019-07-09 
17:47:41.000000000 +0200
+++ new/kwin-5.16.4/po/zh_CN/kcmkwinscreenedges.po      2019-07-30 
12:25:54.000000000 +0200
@@ -14,7 +14,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:08\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kcmkwm.po 
new/kwin-5.16.4/po/zh_CN/kcmkwm.po
--- old/kwin-5.16.3/po/zh_CN/kcmkwm.po  2019-07-09 17:47:41.000000000 +0200
+++ new/kwin-5.16.4/po/zh_CN/kcmkwm.po  2019-07-30 12:25:54.000000000 +0200
@@ -13,7 +13,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:08\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kwin.po 
new/kwin-5.16.4/po/zh_CN/kwin.po
--- old/kwin-5.16.3/po/zh_CN/kwin.po    2019-07-09 17:47:41.000000000 +0200
+++ new/kwin-5.16.4/po/zh_CN/kwin.po    2019-07-30 12:25:54.000000000 +0200
@@ -15,7 +15,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-06-20 07:48+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:08\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kwin_clients.po 
new/kwin-5.16.4/po/zh_CN/kwin_clients.po
--- old/kwin-5.16.3/po/zh_CN/kwin_clients.po    2019-07-09 17:47:41.000000000 
+0200
+++ new/kwin-5.16.4/po/zh_CN/kwin_clients.po    2019-07-30 12:25:54.000000000 
+0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:08\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kwin_effects.po 
new/kwin-5.16.4/po/zh_CN/kwin_effects.po
--- old/kwin-5.16.3/po/zh_CN/kwin_effects.po    2019-07-09 17:47:41.000000000 
+0200
+++ new/kwin-5.16.4/po/zh_CN/kwin_effects.po    2019-07-30 12:25:54.000000000 
+0200
@@ -15,7 +15,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-28 07:26+0200\n"
-"PO-Revision-Date: 2019-06-02 13:13\n"
+"PO-Revision-Date: 2019-07-18 15:07\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kwin_scripting.po 
new/kwin-5.16.4/po/zh_CN/kwin_scripting.po
--- old/kwin-5.16.3/po/zh_CN/kwin_scripting.po  2019-07-09 17:47:41.000000000 
+0200
+++ new/kwin-5.16.4/po/zh_CN/kwin_scripting.po  2019-07-30 12:25: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 07:46+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:08\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwin-5.16.3/po/zh_CN/kwin_scripts.po 
new/kwin-5.16.4/po/zh_CN/kwin_scripts.po
--- old/kwin-5.16.3/po/zh_CN/kwin_scripts.po    2019-07-09 17:47:41.000000000 
+0200
+++ new/kwin-5.16.4/po/zh_CN/kwin_scripts.po    2019-07-30 12:25: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-05-20 07:46+0200\n"
-"PO-Revision-Date: 2019-06-02 13:14\n"
+"PO-Revision-Date: 2019-07-18 15:08\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"



Reply via email to