Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package powerdevil5 for openSUSE:Factory checked in at 2022-09-08 14:21:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/powerdevil5 (Old) and /work/SRC/openSUSE:Factory/.powerdevil5.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "powerdevil5" Thu Sep 8 14:21:07 2022 rev:143 rq:1001642 version:5.25.5 Changes: -------- --- /work/SRC/openSUSE:Factory/powerdevil5/powerdevil5.changes 2022-08-05 19:50:23.701361769 +0200 +++ /work/SRC/openSUSE:Factory/.powerdevil5.new.2083/powerdevil5.changes 2022-09-08 14:21:27.258358095 +0200 @@ -1,0 +2,10 @@ +Tue Sep 6 16:56:55 UTC 2022 - Fabian Vogt <fab...@ritter-vogt.de> + +- Update to 5.25.5 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/plasma/5/5.25.5 +- Changes since 5.25.4: + * Fix profile switching in the brightness actions (kde#394945) + +------------------------------------------------------------------- Old: ---- powerdevil-5.25.4.tar.xz powerdevil-5.25.4.tar.xz.sig New: ---- powerdevil-5.25.5.tar.xz powerdevil-5.25.5.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ powerdevil5.spec ++++++ --- /var/tmp/diff_new_pack.OzDF7k/_old 2022-09-08 14:21:27.846359677 +0200 +++ /var/tmp/diff_new_pack.OzDF7k/_new 2022-09-08 14:21:27.850359688 +0200 @@ -18,7 +18,7 @@ %bcond_without released Name: powerdevil5 -Version: 5.25.4 +Version: 5.25.5 Release: 0 # Full Plasma 5 version (e.g. 5.8.95) %{!?_plasma5_bugfix: %define _plasma5_bugfix %{version}} ++++++ powerdevil-5.25.4.tar.xz -> powerdevil-5.25.5.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/CMakeLists.txt new/powerdevil-5.25.5/CMakeLists.txt --- old/powerdevil-5.25.4/CMakeLists.txt 2022-08-02 13:19:12.000000000 +0200 +++ new/powerdevil-5.25.5/CMakeLists.txt 2022-09-06 14:41:27.000000000 +0200 @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16) project(PowerDevil) -set(PROJECT_VERSION "5.25.4") +set(PROJECT_VERSION "5.25.5") set(PROJECT_VERSION_MAJOR 5) set(QT_MIN_VERSION "5.15.2") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/daemon/actions/bundled/brightnesscontrol.cpp new/powerdevil-5.25.5/daemon/actions/bundled/brightnesscontrol.cpp --- old/powerdevil-5.25.4/daemon/actions/bundled/brightnesscontrol.cpp 2022-08-02 13:18:41.000000000 +0200 +++ new/powerdevil-5.25.5/daemon/actions/bundled/brightnesscontrol.cpp 2022-09-06 14:40:52.000000000 +0200 @@ -79,10 +79,14 @@ { const int absoluteBrightnessValue = qRound(m_defaultValue / 100.0 * brightnessMax()); + // The core switches its profile after all actions have been updated, so here core()->currentProfile() is still the old one + const auto previousProfile = core()->currentProfile(); + qCDebug(POWERDEVIL) << "Profiles: " << m_currentProfile << previousProfile; + // if the current profile is more conservative than the previous one and the // current brightness is lower than the new profile - if (((m_currentProfile == QLatin1String("Battery") && m_lastProfile == QLatin1String("AC")) || - (m_currentProfile == QLatin1String("LowBattery") && (m_lastProfile == QLatin1String("AC") || m_lastProfile == QLatin1String("Battery")))) && + if (((m_currentProfile == QLatin1String("Battery") && previousProfile == QLatin1String("AC")) || + (m_currentProfile == QLatin1String("LowBattery") && (previousProfile == QLatin1String("AC") || previousProfile == QLatin1String("Battery")))) && absoluteBrightnessValue > brightness()) { // We don't want to change anything here @@ -93,8 +97,8 @@ }; // plugging in/out the AC is always explicit - if ((m_currentProfile == QLatin1String("AC") && m_lastProfile != QLatin1String("AC")) || - (m_currentProfile != QLatin1String("AC") && m_lastProfile == QLatin1String("AC"))) { + if ((previousProfile == QLatin1String("AC") && m_currentProfile != QLatin1String("AC")) || + (previousProfile != QLatin1String("AC") && m_currentProfile == QLatin1String("AC"))) { args["Explicit"] = true; args["Silent"] = true; // but we still don't want to show the OSD then } @@ -126,11 +130,8 @@ bool BrightnessControl::loadAction(const KConfigGroup& config) { // Handle profile changes - m_lastProfile = m_currentProfile; m_currentProfile = config.parent().name(); - qCDebug(POWERDEVIL) << "Profiles: " << m_currentProfile << m_lastProfile; - if (config.hasKey("value")) { m_defaultValue = config.readEntry<int>("value", 50); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/daemon/actions/bundled/brightnesscontrol.h new/powerdevil-5.25.5/daemon/actions/bundled/brightnesscontrol.h --- old/powerdevil-5.25.4/daemon/actions/bundled/brightnesscontrol.h 2022-08-02 13:18:41.000000000 +0200 +++ new/powerdevil-5.25.5/daemon/actions/bundled/brightnesscontrol.h 2022-09-06 14:40:52.000000000 +0200 @@ -70,7 +70,6 @@ int brightnessPercent(float value) const; int m_defaultValue = -1; - QString m_lastProfile; QString m_currentProfile; }; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/daemon/actions/bundled/keyboardbrightnesscontrol.cpp new/powerdevil-5.25.5/daemon/actions/bundled/keyboardbrightnesscontrol.cpp --- old/powerdevil-5.25.4/daemon/actions/bundled/keyboardbrightnesscontrol.cpp 2022-08-02 13:18:41.000000000 +0200 +++ new/powerdevil-5.25.5/daemon/actions/bundled/keyboardbrightnesscontrol.cpp 2022-09-06 14:40:52.000000000 +0200 @@ -96,10 +96,15 @@ void KeyboardBrightnessControl::onProfileLoad() { const int absoluteKeyboardBrightnessValue = qRound(m_defaultValue / 100.0 * keyboardBrightnessMax()); + + // The core switches its profile after all actions have been updated, so here core()->currentProfile() is still the old one + const auto previousProfile = core()->currentProfile(); + qCDebug(POWERDEVIL) << "Profiles: " << m_currentProfile << previousProfile; + // if the current profile is more conservative than the previous one and the // current brightness is lower than the new profile - if (((m_currentProfile == QLatin1String("Battery") && m_lastProfile == QLatin1String("AC")) || - (m_currentProfile == QLatin1String("LowBattery") && (m_lastProfile == QLatin1String("AC") || m_lastProfile == QLatin1String("Battery")))) && + if (((m_currentProfile == QLatin1String("Battery") && previousProfile == QLatin1String("AC")) || + (m_currentProfile == QLatin1String("LowBattery") && (previousProfile == QLatin1String("AC") || previousProfile == QLatin1String("Battery")))) && absoluteKeyboardBrightnessValue > keyboardBrightness()) { // We don't want to change anything here @@ -110,8 +115,8 @@ }; // plugging in/out the AC is always explicit - if ((m_currentProfile == QLatin1String("AC") && m_lastProfile != QLatin1String("AC")) || - (m_currentProfile != QLatin1String("AC") && m_lastProfile == QLatin1String("AC"))) { + if ((m_currentProfile == QLatin1String("AC") && previousProfile != QLatin1String("AC")) || + (m_currentProfile != QLatin1String("AC") && previousProfile == QLatin1String("AC"))) { args["Explicit"] = true; args["Silent"] = true; // but we still don't want to show the OSD then } @@ -142,11 +147,8 @@ bool KeyboardBrightnessControl::loadAction(const KConfigGroup& config) { // Handle profile changes - m_lastProfile = m_currentProfile; m_currentProfile = config.parent().name(); - qCDebug(POWERDEVIL) << "Profiles: " << m_currentProfile << m_lastProfile; - if (config.hasKey("value")) { m_defaultValue = config.readEntry<int>("value", 50); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/daemon/actions/bundled/keyboardbrightnesscontrol.h new/powerdevil-5.25.5/daemon/actions/bundled/keyboardbrightnesscontrol.h --- old/powerdevil-5.25.4/daemon/actions/bundled/keyboardbrightnesscontrol.h 2022-08-02 13:18:41.000000000 +0200 +++ new/powerdevil-5.25.5/daemon/actions/bundled/keyboardbrightnesscontrol.h 2022-09-06 14:40:52.000000000 +0200 @@ -72,7 +72,6 @@ int m_defaultValue = -1; int m_lastKeyboardBrightness = -1; - QString m_lastProfile; QString m_currentProfile; }; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/daemon/actions/bundled/powerdevilwirelesspowersavingaction.desktop new/powerdevil-5.25.5/daemon/actions/bundled/powerdevilwirelesspowersavingaction.desktop --- old/powerdevil-5.25.4/daemon/actions/bundled/powerdevilwirelesspowersavingaction.desktop 2022-08-02 13:18:41.000000000 +0200 +++ new/powerdevil-5.25.5/daemon/actions/bundled/powerdevilwirelesspowersavingaction.desktop 2022-09-06 14:40:52.000000000 +0200 @@ -71,7 +71,7 @@ Comment[he]=?????? ?????????? ?????????? Comment[hu]=Jelsug??rz?? eszk??z??k kikapcsol??sa Comment[ia]=Extingue dispositivos de transmission de signal -Comment[id]=Matikan perangkat sinyal transmisi +Comment[id]=Matikan peranti sinyal transmisi Comment[it]=Spegne i dispositivi che trasmettono segnale Comment[ja]=??????????????????????????????????????????????????? Comment[ko]=?????? ?????? ?????? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/po/be@latin/powerdevil.po new/powerdevil-5.25.5/po/be@latin/powerdevil.po --- old/powerdevil-5.25.4/po/be@latin/powerdevil.po 2022-08-02 13:18:43.000000000 +0200 +++ new/powerdevil-5.25.5/po/be@latin/powerdevil.po 2022-09-06 14:40:55.000000000 +0200 @@ -16,8 +16,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || n%10>=5 && n%10<=9 || n" +"%100>=11 && n%100<=14 ? 2 : 3);\n" #, kde-format msgctxt "NAME OF TRANSLATORS" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/po/ca@valencia/powerdevil.po new/powerdevil-5.25.5/po/ca@valencia/powerdevil.po --- old/powerdevil-5.25.4/po/ca@valencia/powerdevil.po 2022-08-02 13:18:45.000000000 +0200 +++ new/powerdevil-5.25.5/po/ca@valencia/powerdevil.po 2022-09-06 14:40:56.000000000 +0200 @@ -10,7 +10,7 @@ "Project-Id-Version: powerdevil\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-07-27 02:15+0000\n" -"PO-Revision-Date: 2022-01-05 10:24+0100\n" +"PO-Revision-Date: 2022-07-27 09:39+0200\n" "Last-Translator: Josep M. Ferrer <txe...@gmail.com>\n" "Language-Team: Catalan <kde-i18n...@kde.org>\n" "Language: ca@valencia\n" @@ -106,7 +106,7 @@ msgctxt "" "@action:inmenu Global shortcut, used for long presses of the power button" msgid "Power Down" -msgstr "Pulsaci?? llarga al bot?? d'apagat" +msgstr "Pulsaci?? llarga en el bot?? d'apagat" #: actions/bundled/handlebuttoneventsconfig.cpp:87 #, kde-format @@ -383,8 +383,8 @@ "The battery in (\"%1\") is running low, and the device may turn off at any " "time. Please recharge or replace the battery." msgstr "" -"La bateria del (??%1??) ??s baixa, i el dispositiu es pot desconnectar en " -"qualsevol moment. Recarregueu o substitu??u la bateria." +"La bateria del (??%1??) est?? a punt d'exhaurir-se, i el dispositiu es pot " +"desconnectar en qualsevol moment. Torneu a carregar o substitu??u la bateria." #: powerdevilcore.cpp:593 #, kde-format @@ -403,8 +403,9 @@ "The battery in Bluetooth device \"%1\" is running low, and the device may " "turn off at any time. Please recharge or replace the battery." msgstr "" -"La bateria del dispositiu Bluetooth (??%1??) ??s baixa, i el dispositiu es pot " -"desconnectar en qualsevol moment. Recarregueu o substitu??u la bateria." +"La bateria del dispositiu Bluetooth (??%1??) est?? a punt d'exhaurir-se, i el " +"dispositiu es pot desconnectar en qualsevol moment. Torneu a carregar o " +"substitu??u la bateria." #: powerdevilcore.cpp:607 #, kde-format @@ -418,8 +419,8 @@ "Battery running low - to continue using your computer, plug it in or shut it " "down and change the battery." msgstr "" -"La bateria ??s baixa. Per a continuar utilitzant l'ordinador, endolleu-lo o " -"apagueu-lo i canvieu la bateria." +"La bateria est?? a punt d'exhaurir-se: per a continuar utilitzant " +"l'ordinador, endolleu-lo o apagueu-lo i canvieu la bateria." #: powerdevilcore.cpp:668 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/po/eu/powerdevilactivitiesconfig.po new/powerdevil-5.25.5/po/eu/powerdevilactivitiesconfig.po --- old/powerdevil-5.25.4/po/eu/powerdevilactivitiesconfig.po 2022-08-02 13:18:48.000000000 +0200 +++ new/powerdevil-5.25.5/po/eu/powerdevilactivitiesconfig.po 2022-09-06 14:41:00.000000000 +0200 @@ -5,21 +5,21 @@ # KDE euskaratzeko proiektuko arduraduna <xa...@euskalnet.net>. # # Translators: -# I??igo Salvador Azurmendi <xa...@euskalnet.net>, 2011, 2014, 2018, 2019, 2020. +# I??igo Salvador Azurmendi <xa...@euskalnet.net>, 2011, 2014, 2018, 2019, 2020, 2022. # Hizkuntza Politikarako Sailburuordetza <hiz...@ej-gv.es>, 2013. msgid "" msgstr "" "Project-Id-Version: powerdevil\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-09-30 00:17+0000\n" -"PO-Revision-Date: 2020-07-06 23:13+0200\n" +"PO-Revision-Date: 2022-08-20 15:29+0200\n" "Last-Translator: I??igo Salvador Azurmendi <xa...@ni.eus>\n" "Language-Team: Basque <kde-i18n...@kde.org>\n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 20.04.2\n" +"X-Generator: Lokalize 22.04.3\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #, kde-format @@ -30,7 +30,7 @@ #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "xa...@euskalnet.net,hiz...@ej-gv.es" +msgstr "xa...@ni.eus,hiz...@ej-gv.es" #: activitypage.cpp:74 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/po/fi/powerdevil.po new/powerdevil-5.25.5/po/fi/powerdevil.po --- old/powerdevil-5.25.4/po/fi/powerdevil.po 2022-08-02 13:18:48.000000000 +0200 +++ new/powerdevil-5.25.5/po/fi/powerdevil.po 2022-09-06 14:41:00.000000000 +0200 @@ -22,7 +22,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-POT-Import-Date: 2012-12-01 22:22:38+0000\n" -"X-Generator: Lokalize 20.04.2\n" +"X-Generator: Lokalize 20.12.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/po/fr/powerdevil.po new/powerdevil-5.25.5/po/fr/powerdevil.po --- old/powerdevil-5.25.4/po/fr/powerdevil.po 2022-08-02 13:18:49.000000000 +0200 +++ new/powerdevil-5.25.5/po/fr/powerdevil.po 2022-09-06 14:41:01.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 22.04.3\n" +"X-Generator: Lokalize 22.08.0\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/powerdevil-5.25.4/po/fr/powerdevilactivitiesconfig.po new/powerdevil-5.25.5/po/fr/powerdevilactivitiesconfig.po --- old/powerdevil-5.25.4/po/fr/powerdevilactivitiesconfig.po 2022-08-02 13:18:49.000000000 +0200 +++ new/powerdevil-5.25.5/po/fr/powerdevilactivitiesconfig.po 2022-09-06 14:41:01.000000000 +0200 @@ -1,7 +1,7 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # Ludovic Grossard <gross...@kde.org>, 2012, 2015. -# xavier <xavier.besn...@neuf.fr>, 2012, 2013, 2020. +# xavier <xavier.besn...@neuf.fr>, 2012, 2013, 2020, 2022. # Vincent Pinon <vpi...@kde.org>, 2016. # Simon Depiets <sdepi...@gmail.com>, 2019. # @@ -12,13 +12,13 @@ "POT-Creation-Date: 2021-09-30 00:17+0000\n" "PO-Revision-Date: 2020-07-07 20:14+0200\n" "Last-Translator: Xavier Besnard <xavier.besn...@neuf.fr>\n" -"Language-Team: French <kde-i18n-...@kde.org>\n" +"Language-Team: French <kde-francoph...@kde.org>\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 20.04.2\n" +"X-Generator: Lokalize 22.04.3\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/powerdevil-5.25.4/po/id/powerdevil.po new/powerdevil-5.25.5/po/id/powerdevil.po --- old/powerdevil-5.25.4/po/id/powerdevil.po 2022-08-02 13:18:51.000000000 +0200 +++ new/powerdevil-5.25.5/po/id/powerdevil.po 2022-09-06 14:41:05.000000000 +0200 @@ -10,9 +10,9 @@ "Project-Id-Version: powerdevil\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-07-27 02:15+0000\n" -"PO-Revision-Date: 2022-03-25 22:21+0700\n" +"PO-Revision-Date: 2022-08-26 23:44+0700\n" "Last-Translator: Wantoy??k <wanto...@gmail.com>\n" -"Language-Team: Indonesian <kde-i18n-...@kde.org>\n" +"Language-Team: https://t.me/Localizations_KDE_Indonesia\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -381,7 +381,7 @@ "The battery in (\"%1\") is running low, and the device may turn off at any " "time. Please recharge or replace the battery." msgstr "" -"Baterai di (''%1'') berjalan lemah, dan perangkat mungkin suatu saat akan " +"Baterai di (''%1'') berjalan lemah, dan peranti mungkin suatu saat akan " "padam. Mohon dicas atau ganti baterainya." #: powerdevilcore.cpp:593 @@ -392,7 +392,7 @@ #: powerdevilcore.cpp:600 #, kde-format msgid "Bluetooth Device Battery Low (%1% Remaining)" -msgstr "Baterai Perangkat Bluetooth Lemah (Tersisa %1%)" +msgstr "Baterai Peranti Bluetooth Lemah (Tersisa %1%)" #: powerdevilcore.cpp:602 #, kde-format @@ -401,14 +401,14 @@ "The battery in Bluetooth device \"%1\" is running low, and the device may " "turn off at any time. Please recharge or replace the battery." msgstr "" -"Baterai dalam perangkat Bluetooth ''%1'' kondisinya melemah, dan perangkat " +"Baterai dalam peranti Bluetooth ''%1'' kondisinya melemah, dan peranti " "mungkin suatu saat akan padam. Mohon dicas atau ganti baterainya." #: powerdevilcore.cpp:607 #, kde-format msgctxt "The battery in an external device" msgid "Device Battery Low (%1% Remaining)" -msgstr "Baterai Perangkat Lemah (Tersisa %1%)" +msgstr "Baterai Peranti Lemah (Tersisa %1%)" #: powerdevilcore.cpp:652 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/po/id/powerdevilglobalconfig.po new/powerdevil-5.25.5/po/id/powerdevilglobalconfig.po --- old/powerdevil-5.25.4/po/id/powerdevilglobalconfig.po 2022-08-02 13:18:51.000000000 +0200 +++ new/powerdevil-5.25.5/po/id/powerdevilglobalconfig.po 2022-09-06 14:41:05.000000000 +0200 @@ -10,9 +10,9 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-02-25 00:47+0000\n" -"PO-Revision-Date: 2022-03-25 22:23+0700\n" +"PO-Revision-Date: 2022-08-26 23:44+0700\n" "Last-Translator: Wantoy??k <wanto...@gmail.com>\n" -"Language-Team: Indonesian <kde-i18n-...@kde.org>\n" +"Language-Team: https://t.me/Localizations_KDE_Indonesia\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -119,7 +119,7 @@ #: generalPage.ui:107 #, kde-format msgid "Low level for peripheral devices:" -msgstr "Level lemah untuk perangkat periferal:" +msgstr "Level lemah untuk peranti periferal:" #. i18n: ectx: property (text), widget (QLabel, batteryThresholdLabel) #: generalPage.ui:130 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/po/it/powerdevilactivitiesconfig.po new/powerdevil-5.25.5/po/it/powerdevilactivitiesconfig.po --- old/powerdevil-5.25.4/po/it/powerdevilactivitiesconfig.po 2022-08-02 13:18:52.000000000 +0200 +++ new/powerdevil-5.25.5/po/it/powerdevilactivitiesconfig.po 2022-09-06 14:41:05.000000000 +0200 @@ -1,7 +1,7 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # Federico Zenith <federico.zen...@member.fsf.org>, 2011. -# Vincenzo Reale <smart212...@gmail.com>, 2019, 2020. +# Vincenzo Reale <smart212...@gmail.com>, 2019, 2020, 2022. # msgid "" msgstr "" @@ -16,7 +16,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 20.04.2\n" +"X-Generator: Lokalize 22.08.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/po/ko/powerdevil.po new/powerdevil-5.25.5/po/ko/powerdevil.po --- old/powerdevil-5.25.4/po/ko/powerdevil.po 2022-08-02 13:18:53.000000000 +0200 +++ new/powerdevil-5.25.5/po/ko/powerdevil.po 2022-09-06 14:41:07.000000000 +0200 @@ -1,5 +1,5 @@ # Jung Hee Lee <daemu...@gmail.com>, 2019. -# Shinjo Park <k...@peremen.name>, 2019, 2020, 2021. +# Shinjo Park <k...@peremen.name>, 2019, 2020, 2021, 2022. msgid "" msgstr "" "Project-Id-Version: powerdevil\n" @@ -13,7 +13,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 20.12.3\n" +"X-Generator: Lokalize 21.12.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/po/nn/powerdevil.po new/powerdevil-5.25.5/po/nn/powerdevil.po --- old/powerdevil-5.25.4/po/nn/powerdevil.po 2022-08-02 13:18:56.000000000 +0200 +++ new/powerdevil-5.25.5/po/nn/powerdevil.po 2022-09-06 14:41:10.000000000 +0200 @@ -1,7 +1,7 @@ # Translation of powerdevil to Norwegian Nynorsk # # Eirik U. Birkeland <eir...@gmail.com>, 2009, 2010, 2011. -# Karl Ove Hufthammer <k...@huftis.org>, 2009, 2015, 2016, 2018, 2019, 2020. +# Karl Ove Hufthammer <k...@huftis.org>, 2009, 2015, 2016, 2018, 2019, 2020, 2022. # ??ystein Steffensen-Alv??rvik <oysteins.omsett...@protonmail.com>, 2021. msgid "" msgstr "" @@ -16,7 +16,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 21.12.0\n" +"X-Generator: Lokalize 22.04.3\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/powerdevil-5.25.4/po/zh_CN/libpowerdevilcommonconfig.po new/powerdevil-5.25.5/po/zh_CN/libpowerdevilcommonconfig.po --- old/powerdevil-5.25.4/po/zh_CN/libpowerdevilcommonconfig.po 2022-08-02 13:19:04.000000000 +0200 +++ new/powerdevil-5.25.5/po/zh_CN/libpowerdevilcommonconfig.po 2022-09-06 14:41:19.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 03:26+0200\n" -"PO-Revision-Date: 2022-07-30 15:57\n" +"PO-Revision-Date: 2022-08-20 14:20\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/po/zh_CN/powerdevil.po new/powerdevil-5.25.5/po/zh_CN/powerdevil.po --- old/powerdevil-5.25.4/po/zh_CN/powerdevil.po 2022-08-02 13:19:04.000000000 +0200 +++ new/powerdevil-5.25.5/po/zh_CN/powerdevil.po 2022-09-06 14:41:19.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-07-27 02:15+0000\n" -"PO-Revision-Date: 2022-07-30 15:57\n" +"PO-Revision-Date: 2022-08-20 14:20\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/po/zh_CN/powerdevilactivitiesconfig.po new/powerdevil-5.25.5/po/zh_CN/powerdevilactivitiesconfig.po --- old/powerdevil-5.25.4/po/zh_CN/powerdevilactivitiesconfig.po 2022-08-02 13:19:04.000000000 +0200 +++ new/powerdevil-5.25.5/po/zh_CN/powerdevilactivitiesconfig.po 2022-09-06 14:41:19.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-09-30 00:17+0000\n" -"PO-Revision-Date: 2022-07-30 15:57\n" +"PO-Revision-Date: 2022-08-20 14:20\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/po/zh_CN/powerdevilglobalconfig.po new/powerdevil-5.25.5/po/zh_CN/powerdevilglobalconfig.po --- old/powerdevil-5.25.4/po/zh_CN/powerdevilglobalconfig.po 2022-08-02 13:19:04.000000000 +0200 +++ new/powerdevil-5.25.5/po/zh_CN/powerdevilglobalconfig.po 2022-09-06 14:41:19.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-02-25 00:47+0000\n" -"PO-Revision-Date: 2022-07-30 15:57\n" +"PO-Revision-Date: 2022-08-20 14:20\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/po/zh_CN/powerdevilprofilesconfig.po new/powerdevil-5.25.5/po/zh_CN/powerdevilprofilesconfig.po --- old/powerdevil-5.25.4/po/zh_CN/powerdevilprofilesconfig.po 2022-08-02 13:19:04.000000000 +0200 +++ new/powerdevil-5.25.5/po/zh_CN/powerdevilprofilesconfig.po 2022-09-06 14:41:19.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-04-29 00:45+0000\n" -"PO-Revision-Date: 2022-07-30 15:57\n" +"PO-Revision-Date: 2022-08-20 14:20\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/powerdevil-5.25.4/powerdevil.notifyrc new/powerdevil-5.25.5/powerdevil.notifyrc --- old/powerdevil-5.25.4/powerdevil.notifyrc 2022-08-02 13:18:41.000000000 +0200 +++ new/powerdevil-5.25.5/powerdevil.notifyrc 2022-09-06 14:40:52.000000000 +0200 @@ -797,7 +797,7 @@ Comment[he]=???????????? ???? ???????? ??????????, ???????? ?????????? ????????????, ?????????? ?????????? Comment[hu]=A csatlakoztatott eszk??z (p??ld??ul eg??r, billenty??zet) akkumul??tor??nak t??lt??tts??ge alacsony Comment[ia]=Le batteria in un dispositivo connectite, tal como mus o claviero, es basse -Comment[id]=Baterai di dalam sebuah perangkat yang terkonek, seperti mouse atau keyboard, telah lemah +Comment[id]=Baterai di dalam sebuah peranti yang terkonek, seperti mouse atau keyboard, telah lemah Comment[it]=Il livello della batteria di un dispositivo collegato, come un mouse o una tastiera, ?? basso Comment[ja]=????????????????????????????????????????????????????????????????????????????????????????????????????????? Comment[ko]=????????? ???????????? ???????????? ?????? ?????? ????????? ?????? @@ -835,7 +835,7 @@ Name[az]=Qida m??nb??yin?? qo??ulub Name[bg]=?????????????? ?? ???????????????? ???????????????? Name[ca]=Connectat al corrent -Name[ca@valencia]=Connectat a la corrent +Name[ca@valencia]=Connectat al corrent Name[cs]=Zdroj nap??jen?? je p??ipojen Name[da]=Str??mkilde tilsluttet Name[de]=Spannungsquelle angeschlossen @@ -873,7 +873,7 @@ Comment[az]=Elektrik qida m??nb??yin?? qo??uldu Comment[bg]=?????????????????????? ???????????????? ?? ?????????????? Comment[ca]=S'ha connectat al corrent -Comment[ca@valencia]=S'ha connectat a la corrent +Comment[ca@valencia]=S'ha connectat al corrent Comment[cs]=Zdroj nap??jen?? byl p??ipojen Comment[da]=Str??mkilden er blevet tilsluttet Comment[de]=Die Spannungsquelle ist angeschlossen worden @@ -917,7 +917,7 @@ Name[az]=Qida m??nb??yind??n ayr??ld?? Name[bg]=???????????????? ???????????????? ?? ?????????????? Name[ca]=Desconnectat del corrent -Name[ca@valencia]=Desconnectat de la corrent +Name[ca@valencia]=Desconnectat del corrent Name[cs]=Zdroj nap??jen?? odpojen Name[da]=Str??mkilden er blevet frakoblet Name[de]=Spannungsquelle getrennt @@ -955,7 +955,7 @@ Comment[az]=Elektrik qida m??nb??yind??n ayr??ld?? Comment[bg]=?????????????????????? ???????????????? ?? ?????????????? Comment[ca]=S'ha desconnectat del corrent -Comment[ca@valencia]=S'ha desconnectat de la corrent +Comment[ca@valencia]=S'ha desconnectat del corrent Comment[cs]=Zdroj nap??jen?? byl odpojen Comment[da]=Str??mkilden er blevet frakoblet Comment[de]=Die Spannungsquelle ist getrennt worden