Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kdevelop5-plugin-php for 
openSUSE:Factory checked in at 2022-08-19 17:54:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
 and      /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdevelop5-plugin-php"

Fri Aug 19 17:54:30 2022 rev:36 rq:997819 version:22.08.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes    
    2022-07-09 17:03:21.800804235 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new.2083/kdevelop5-plugin-php.changes
      2022-08-19 17:56:30.796104736 +0200
@@ -1,0 +2,20 @@
+Sun Aug 14 09:42:20 UTC 2022 - Christophe Giboudeaux <[email protected]>
+
+- Update to 22.08.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.0/
+
+-------------------------------------------------------------------
+Fri Aug  5 12:10:46 UTC 2022 - Christophe Giboudeaux <[email protected]>
+
+- Update to 22.07.90
+  * New feature release
+
+-------------------------------------------------------------------
+Sat Jul 16 08:28:00 UTC 2022 - Christophe Giboudeaux <[email protected]>
+
+- Update to 22.07.80
+  * New feature release
+
+-------------------------------------------------------------------

Old:
----
  kdev-php-22.04.3.tar.xz
  kdev-php-22.04.3.tar.xz.sig

New:
----
  kdev-php-22.08.0.tar.xz
  kdev-php-22.08.0.tar.xz.sig

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

Other differences:
------------------
++++++ kdevelop5-plugin-php.spec ++++++
--- /var/tmp/diff_new_pack.lZFNAB/_old  2022-08-19 17:56:31.408106019 +0200
+++ /var/tmp/diff_new_pack.lZFNAB/_new  2022-08-19 17:56:31.412106028 +0200
@@ -19,7 +19,7 @@
 %define rname   kdev-php
 %bcond_without released
 Name:           kdevelop5-plugin-php
-Version:        22.04.3
+Version:        22.08.0
 Release:        0
 Summary:        PHP plugin for Kdevelop5 Integrated Development Environment
 License:        GPL-2.0-or-later
@@ -45,6 +45,8 @@
 Requires:       kdevelop5
 Recommends:     %{name}-lang
 Conflicts:      kdevelop4-plugin-php
+# Only build on archs where Qt5WebEngine is available
+ExcludeArch:    ppc ppc64 ppc64le s390 s390x
 
 %description
 PHP plugin for Kdevelop Integrated Development Environment


++++++ kdev-php-22.04.3.tar.xz -> kdev-php-22.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/CMakeLists.txt 
new/kdev-php-22.08.0/CMakeLists.txt
--- old/kdev-php-22.04.3/CMakeLists.txt 2022-07-01 21:27:40.000000000 +0200
+++ new/kdev-php-22.08.0/CMakeLists.txt 2022-08-11 00:28:09.000000000 +0200
@@ -2,8 +2,8 @@
 
 # KDE Gear version, managed by release service script
 set(RELEASE_SERVICE_VERSION_MAJOR "22")
-set(RELEASE_SERVICE_VERSION_MINOR "04")
-set(RELEASE_SERVICE_VERSION_MICRO "3")
+set(RELEASE_SERVICE_VERSION_MINOR "08")
+set(RELEASE_SERVICE_VERSION_MICRO "0")
 
 # generate patch level from release service version
 set(_micro ${RELEASE_SERVICE_VERSION_MICRO})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/docs/phpdocumentationwidget.cpp 
new/kdev-php-22.08.0/docs/phpdocumentationwidget.cpp
--- old/kdev-php-22.04.3/docs/phpdocumentationwidget.cpp        2022-07-01 
21:27:40.000000000 +0200
+++ new/kdev-php-22.08.0/docs/phpdocumentationwidget.cpp        2022-08-11 
00:28:09.000000000 +0200
@@ -9,8 +9,6 @@
 #include <QProgressBar>
 #include <QLabel>
 #include <QVBoxLayout>
-#include <QTemporaryFile>
-#include <QTextStream>
 #include <QUrl>
 
 #include <KLocalizedString>
@@ -18,23 +16,10 @@
 #include "phpdocsplugin.h"
 #include <documentation/standarddocumentationview.h>
 
-QTemporaryFile* createStyleSheet(QObject* parent)
-{
-    auto* file = new QTemporaryFile(parent);
-    bool ret = file->open();
-    Q_ASSERT(ret);
-    Q_UNUSED(ret);
-
-    QTextStream ts(file);
-    ts << ".page-tools { float: none !important; } body { background: white 
!important; };";
-    return file;
-}
-
 
PhpDocumentationWidget::PhpDocumentationWidget(KDevelop::DocumentationFindWidget*
 find, const QUrl &url,
                                                PhpDocsPlugin* provider, 
QWidget* parent)
 : QStackedWidget(parent)
 , m_loading(new QWidget(this))
-, m_styleSheet(createStyleSheet(this))
 , m_provider(provider)
 {
     m_part = new KDevelop::StandardDocumentationView(find, this);
@@ -92,8 +77,6 @@
 
 void PhpDocumentationWidget::documentLoaded()
 {
-    m_part->setOverrideCss(QUrl::fromLocalFile(m_styleSheet->fileName()));
-
     setCurrentWidget(m_part);
     removeWidget(m_loading);
     delete m_loading;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/docs/phpdocumentationwidget.h 
new/kdev-php-22.08.0/docs/phpdocumentationwidget.h
--- old/kdev-php-22.04.3/docs/phpdocumentationwidget.h  2022-07-01 
21:27:40.000000000 +0200
+++ new/kdev-php-22.08.0/docs/phpdocumentationwidget.h  2022-08-11 
00:28:09.000000000 +0200
@@ -9,7 +9,6 @@
 
 #include <QStackedWidget>
 
-class QTemporaryFile;
 class QUrl;
 
 namespace KDevelop {
@@ -36,7 +35,6 @@
 private:
     KDevelop::StandardDocumentationView* m_part;
     QWidget* m_loading;
-    QTemporaryFile* m_styleSheet;
     PhpDocsPlugin* m_provider;
 };
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/duchain/completioncodemodel.cpp 
new/kdev-php-22.08.0/duchain/completioncodemodel.cpp
--- old/kdev-php-22.04.3/duchain/completioncodemodel.cpp        2022-07-01 
21:27:40.000000000 +0200
+++ new/kdev-php-22.08.0/duchain/completioncodemodel.cpp        2022-08-11 
00:28:09.000000000 +0200
@@ -139,25 +139,37 @@
   const CompletionCodeModelRepositoryItem& m_item;
 };
 
+// Maps declaration-ids to items
+using CompletionCodeModelRepo = 
KDevelop::ItemRepository<Php::CompletionCodeModelRepositoryItem, 
Php::CodeModelRequestItem>;
+}
 
-class CompletionCodeModelPrivate {
+namespace KDevelop {
+template <>
+class ItemRepositoryFor<Php::CompletionCodeModel>
+{
+  friend struct LockedItemRepository;
+  static Php::CompletionCodeModelRepo& repo()
+  {
+    static QMutex mutex;
+    static Php::CompletionCodeModelRepo repo(QStringLiteral("Php Completion 
Code Model"), &mutex);
+    return repo;
+  }
 public:
-
-  CompletionCodeModelPrivate() : m_repository(QStringLiteral("Php Completion 
Code Model")) {
+  static void init()
+  {
+    repo();
   }
-  //Maps declaration-ids to items
-  KDevelop::ItemRepository<CompletionCodeModelRepositoryItem, 
CodeModelRequestItem> m_repository;
 };
-
-CompletionCodeModel::CompletionCodeModel() : d(new 
CompletionCodeModelPrivate())
-{
 }
 
-CompletionCodeModel::~CompletionCodeModel()
+namespace Php {
+CompletionCodeModel::CompletionCodeModel()
 {
-  delete d;
+  KDevelop::ItemRepositoryFor<CompletionCodeModel>::init();
 }
 
+CompletionCodeModel::~CompletionCodeModel() = default;
+
 void CompletionCodeModel::addItem(const KDevelop::IndexedString& file, const 
KDevelop::IndexedQualifiedIdentifier& id, const KDevelop::IndexedString & 
prettyName, CompletionCodeModelItem::Kind kind)
 {
   ifDebug( qCDebug(DUCHAIN) << "addItem" << file.str() << 
id.identifier().toString() << id.index; )
@@ -168,60 +180,60 @@
   item.file = file;
   CodeModelRequestItem request(item);
 
-  uint index = d->m_repository.findIndex(item);
+  
KDevelop::LockedItemRepository::write<CompletionCodeModel>([&](CompletionCodeModelRepo&
 repo) {
+    uint index = repo.findIndex(item);
 
-  CompletionCodeModelItem newItem;
-  newItem.id = id;
-  newItem.kind = kind;
-  newItem.prettyName = prettyName;
-  newItem.referenceCount = 1;
-
-  if(index) {
-    const CompletionCodeModelRepositoryItem* oldItem = 
d->m_repository.itemFromIndex(index);
-    KDevelop::EmbeddedTreeAlgorithms<CompletionCodeModelItem, 
CompletionCodeModelItemHandler> alg(oldItem->items(), oldItem->itemsSize(), 
oldItem->centralFreeItem);
-
-    int listIndex = alg.indexOf(newItem);
-
-    QMutexLocker lock(d->m_repository.mutex());
-
-    KDevelop::DynamicItem<CompletionCodeModelRepositoryItem, true> 
editableItem = d->m_repository.dynamicItemFromIndex(index);
-    CompletionCodeModelItem* items = 
const_cast<CompletionCodeModelItem*>(editableItem->items());
-
-    if(listIndex != -1) {
-      //Only update the reference-count
-        ++items[listIndex].referenceCount;
-        items[listIndex].kind = kind;
-        items[listIndex].prettyName = prettyName;
-        return;
-    }else{
-      //Add the item to the list
-      KDevelop::EmbeddedTreeAddItem<CompletionCodeModelItem, 
CompletionCodeModelItemHandler> add(items, editableItem->itemsSize(), 
editableItem->centralFreeItem, newItem);
+    CompletionCodeModelItem newItem;
+    newItem.id = id;
+    newItem.kind = kind;
+    newItem.prettyName = prettyName;
+    newItem.referenceCount = 1;
+
+    if(index) {
+      const CompletionCodeModelRepositoryItem* oldItem = 
repo.itemFromIndex(index);
+      KDevelop::EmbeddedTreeAlgorithms<CompletionCodeModelItem, 
CompletionCodeModelItemHandler> alg(oldItem->items(), oldItem->itemsSize(), 
oldItem->centralFreeItem);
+
+      int listIndex = alg.indexOf(newItem);
+
+      KDevelop::DynamicItem<CompletionCodeModelRepositoryItem, true> 
editableItem = repo.dynamicItemFromIndex(index);
+      CompletionCodeModelItem* items = 
const_cast<CompletionCodeModelItem*>(editableItem->items());
+
+      if(listIndex != -1) {
+        //Only update the reference-count
+          ++items[listIndex].referenceCount;
+          items[listIndex].kind = kind;
+          items[listIndex].prettyName = prettyName;
+          return;
+      }else{
+        //Add the item to the list
+        KDevelop::EmbeddedTreeAddItem<CompletionCodeModelItem, 
CompletionCodeModelItemHandler> add(items, editableItem->itemsSize(), 
editableItem->centralFreeItem, newItem);
 
-      if(add.newItemCount() != editableItem->itemsSize()) {
-        //The data needs to be transferred into a bigger list. That list is 
within "item".
+        if(add.newItemCount() != editableItem->itemsSize()) {
+          //The data needs to be transferred into a bigger list. That list is 
within "item".
 
-        item.itemsList().resize(add.newItemCount());
-        add.transferData(item.itemsList().data(), item.itemsList().size(), 
&item.centralFreeItem);
+          item.itemsList().resize(add.newItemCount());
+          add.transferData(item.itemsList().data(), item.itemsList().size(), 
&item.centralFreeItem);
 
-        d->m_repository.deleteItem(index);
-      }else{
-        //We're fine: The item fits into the existing list.
-        return;
+          repo.deleteItem(index);
+        }else{
+          //We're fine: The item fits into the existing list.
+          return;
+        }
       }
+    }else{
+      //We're creating a new index
+      item.itemsList().append(newItem);
     }
-  }else{
-    //We're creating a new index
-    item.itemsList().append(newItem);
-  }
 
-  Q_ASSERT(!d->m_repository.findIndex(request));
+    Q_ASSERT(!repo.findIndex(request));
 
-  //This inserts the changed item
-  volatile uint newIndex = d->m_repository.index(request);
-  Q_UNUSED(newIndex);
-  ifDebug( qCDebug(DUCHAIN) << "new index" << newIndex; )
+    //This inserts the changed item
+    volatile uint newIndex = repo.index(request);
+    Q_UNUSED(newIndex);
+    ifDebug( qCDebug(DUCHAIN) << "new index" << newIndex; )
 
-  Q_ASSERT(d->m_repository.findIndex(request));
+    Q_ASSERT(repo.findIndex(request));
+  });
 }
 
 void CompletionCodeModel::updateItem(const KDevelop::IndexedString& file, 
const KDevelop::IndexedQualifiedIdentifier& id, const KDevelop::IndexedString & 
prettyName, CompletionCodeModelItem::Kind kind)
@@ -241,27 +253,28 @@
   newItem.prettyName = prettyName;
   newItem.referenceCount = 1;
 
-  uint index = d->m_repository.findIndex(item);
+  
KDevelop::LockedItemRepository::write<CompletionCodeModel>([&](CompletionCodeModelRepo&
 repo) {
+    uint index = repo.findIndex(item);
 
-  if(index) {
-    //Check whether the item is already in the mapped list, else copy the list 
into the new created item
-    QMutexLocker lock(d->m_repository.mutex());
-    KDevelop::DynamicItem<CompletionCodeModelRepositoryItem, true> oldItem = 
d->m_repository.dynamicItemFromIndex(index);
-
-    KDevelop::EmbeddedTreeAlgorithms<CompletionCodeModelItem, 
CompletionCodeModelItemHandler> alg(oldItem->items(), oldItem->itemsSize(), 
oldItem->centralFreeItem);
-    int listIndex = alg.indexOf(newItem);
-    Q_ASSERT(listIndex != -1);
-
-    CompletionCodeModelItem* items = 
const_cast<CompletionCodeModelItem*>(oldItem->items());
-
-    Q_ASSERT(items[listIndex].id == id);
-    items[listIndex].kind = kind;
-    items[listIndex].prettyName = prettyName;
+    if(index) {
+      //Check whether the item is already in the mapped list, else copy the 
list into the new created item
+      KDevelop::DynamicItem<CompletionCodeModelRepositoryItem, true> oldItem = 
repo.dynamicItemFromIndex(index);
+
+      KDevelop::EmbeddedTreeAlgorithms<CompletionCodeModelItem, 
CompletionCodeModelItemHandler> alg(oldItem->items(), oldItem->itemsSize(), 
oldItem->centralFreeItem);
+      int listIndex = alg.indexOf(newItem);
+      Q_ASSERT(listIndex != -1);
+
+      CompletionCodeModelItem* items = 
const_cast<CompletionCodeModelItem*>(oldItem->items());
+
+      Q_ASSERT(items[listIndex].id == id);
+      items[listIndex].kind = kind;
+      items[listIndex].prettyName = prettyName;
 
-    return;
-  }
+      return;
+    }
 
-  Q_ASSERT(0); //The updated item as not in the symbol table!
+    Q_ASSERT(0); //The updated item was not in the symbol table!
+  });
 }
 
 void CompletionCodeModel::removeItem(const KDevelop::IndexedString& file, 
const KDevelop::IndexedQualifiedIdentifier& id)
@@ -273,52 +286,53 @@
   item.file = file;
   CodeModelRequestItem request(item);
 
-  uint index = d->m_repository.findIndex(item);
+  
KDevelop::LockedItemRepository::write<CompletionCodeModel>([&](CompletionCodeModelRepo&
 repo) {
+    uint index = repo.findIndex(item);
 
-  if(index) {
+    if(index) {
 
-    CompletionCodeModelItem searchItem;
-    searchItem.id = id;
+      CompletionCodeModelItem searchItem;
+      searchItem.id = id;
 
-    QMutexLocker lock(d->m_repository.mutex());
-    KDevelop::DynamicItem<CompletionCodeModelRepositoryItem, true> oldItem = 
d->m_repository.dynamicItemFromIndex(index);
+      KDevelop::DynamicItem<CompletionCodeModelRepositoryItem, true> oldItem = 
repo.dynamicItemFromIndex(index);
 
-    KDevelop::EmbeddedTreeAlgorithms<CompletionCodeModelItem, 
CompletionCodeModelItemHandler> alg(oldItem->items(), oldItem->itemsSize(), 
oldItem->centralFreeItem);
-
-    int listIndex = alg.indexOf(searchItem);
-    if(listIndex == -1)
-      return;
+      KDevelop::EmbeddedTreeAlgorithms<CompletionCodeModelItem, 
CompletionCodeModelItemHandler> alg(oldItem->items(), oldItem->itemsSize(), 
oldItem->centralFreeItem);
 
-    CompletionCodeModelItem* items = 
const_cast<CompletionCodeModelItem*>(oldItem->items());
+      int listIndex = alg.indexOf(searchItem);
+      if(listIndex == -1)
+        return;
 
-    --items[listIndex].referenceCount;
+      CompletionCodeModelItem* items = 
const_cast<CompletionCodeModelItem*>(oldItem->items());
 
-    if(oldItem->items()[listIndex].referenceCount)
-      return; //Nothing to remove, there's still a reference-count left
+      --items[listIndex].referenceCount;
 
-    //We have reduced the reference-count to zero, so remove the item from the 
list
+      if(oldItem->items()[listIndex].referenceCount)
+        return; //Nothing to remove, there's still a reference-count left
 
-    KDevelop::EmbeddedTreeRemoveItem<CompletionCodeModelItem, 
CompletionCodeModelItemHandler> remove(items, oldItem->itemsSize(), 
oldItem->centralFreeItem, searchItem);
+      //We have reduced the reference-count to zero, so remove the item from 
the list
 
-    uint newItemCount = remove.newItemCount();
-    if(newItemCount != oldItem->itemsSize()) {
-      if(newItemCount == 0) {
-        //Has become empty, delete the item
-        d->m_repository.deleteItem(index);
-        return;
-      }else{
-        //Make smaller
-        item.itemsList().resize(newItemCount);
-        remove.transferData(item.itemsList().data(), item.itemsSize(), 
&item.centralFreeItem);
-
-        //Delete the old list
-        d->m_repository.deleteItem(index);
-        //Add the new list
-        d->m_repository.index(request);
-        return;
+      KDevelop::EmbeddedTreeRemoveItem<CompletionCodeModelItem, 
CompletionCodeModelItemHandler> remove(items, oldItem->itemsSize(), 
oldItem->centralFreeItem, searchItem);
+
+      uint newItemCount = remove.newItemCount();
+      if(newItemCount != oldItem->itemsSize()) {
+        if(newItemCount == 0) {
+          //Has become empty, delete the item
+          repo.deleteItem(index);
+          return;
+        }else{
+          //Make smaller
+          item.itemsList().resize(newItemCount);
+          remove.transferData(item.itemsList().data(), item.itemsSize(), 
&item.centralFreeItem);
+
+          //Delete the old list
+          repo.deleteItem(index);
+          //Add the new list
+          repo.index(request);
+          return;
+        }
       }
     }
-  }
+  });
 }
 
 void CompletionCodeModel::items(const KDevelop::IndexedString& file, uint& 
count, const CompletionCodeModelItem*& items) const
@@ -329,18 +343,20 @@
   item.file = file;
   CodeModelRequestItem request(item);
 
-  uint index = d->m_repository.findIndex(item);
+  KDevelop::LockedItemRepository::read<CompletionCodeModel>([&](const 
CompletionCodeModelRepo& repo) {
+    uint index = repo.findIndex(item);
 
-  if(index) {
-    const CompletionCodeModelRepositoryItem* repositoryItem = 
d->m_repository.itemFromIndex(index);
-    ifDebug( qCDebug(DUCHAIN) << "found index" << index << 
repositoryItem->itemsSize(); )
-    count = repositoryItem->itemsSize();
-    items = repositoryItem->items();
-  }else{
-    ifDebug( qCDebug(DUCHAIN) << "found no index"; )
-    count = 0;
-    items = nullptr;
-  }
+    if(index) {
+      const CompletionCodeModelRepositoryItem* repositoryItem = 
repo.itemFromIndex(index);
+      ifDebug( qCDebug(DUCHAIN) << "found index" << index << 
repositoryItem->itemsSize(); )
+      count = repositoryItem->itemsSize();
+      items = repositoryItem->items();
+    }else{
+      ifDebug( qCDebug(DUCHAIN) << "found no index"; )
+      count = 0;
+      items = nullptr;
+    }
+  });
 }
 
 CompletionCodeModel& CompletionCodeModel::self() {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/duchain/completioncodemodel.h 
new/kdev-php-22.08.0/duchain/completioncodemodel.h
--- old/kdev-php-22.04.3/duchain/completioncodemodel.h  2022-07-01 
21:27:40.000000000 +0200
+++ new/kdev-php-22.08.0/duchain/completioncodemodel.h  2022-08-11 
00:28:09.000000000 +0200
@@ -69,9 +69,6 @@
     void items(const KDevelop::IndexedString& file, uint& count, const 
CompletionCodeModelItem*& items) const;
 
     static CompletionCodeModel& self();
-
-    private:
-      class CompletionCodeModelPrivate* d;
   };
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/org.kde.kdev-php.metainfo.xml 
new/kdev-php-22.08.0/org.kde.kdev-php.metainfo.xml
--- old/kdev-php-22.04.3/org.kde.kdev-php.metainfo.xml  2022-07-01 
21:27:40.000000000 +0200
+++ new/kdev-php-22.08.0/org.kde.kdev-php.metainfo.xml  2022-08-11 
00:28:09.000000000 +0200
@@ -23,6 +23,7 @@
   <name xml:lang="sk">PHP podpora pre KDevelop</name>
   <name xml:lang="sl">Podpora KDevelop PHP</name>
   <name xml:lang="sv">KDevelop PHP-st??d</name>
+  <name xml:lang="tr">KDevelop PHP Deste??i</name>
   <name xml:lang="uk">?????????????????? PHP KDevelop</name>
   <name xml:lang="x-test">xxKDevelop PHP Supportxx</name>
   <name xml:lang="zh-CN">KDevelop PHP ??????</name>
@@ -48,6 +49,7 @@
   <summary xml:lang="sk">Podpora jazyka PHP pre KDevelop</summary>
   <summary xml:lang="sl">Podpora za jezik PHP za KDevelop</summary>
   <summary xml:lang="sv">St??d f??r spr??ket PHP i KDevelop</summary>
+  <summary xml:lang="tr">KDevelop i??in PHP dili deste??i</summary>
   <summary xml:lang="uk">?????????????????? ???????? PHP ?? KDevelop</summary>
   <summary xml:lang="x-test">xxPHP language support for KDevelopxx</summary>
   <summary xml:lang="zh-CN">KDevelop ??? PHP ????????????</summary>
@@ -74,6 +76,7 @@
     <p xml:lang="sk">Prid?? podporu PHP do KDevelopu. Zah????a prid??vanie 
integr??cie s o zv??raz??ovan??m k??du, ukon??ovanie k??du a dokumenta??n?? 
odkazy.</p>
     <p xml:lang="sl">Doda podporo za PHP orodju KDevelop. Vklju??uje dodajanje 
integracije s kodo ozna??evanja, dopolnitev kode in povezave z 
dokumentacijo.</p>
     <p xml:lang="sv">L??gger till st??d f??r PHP i KDevelop. Inkluderar 
till??gg av integrering med kodf??rgl??ggning, kodkomplettering och 
dokumentationsl??nkar.</p>
+    <p xml:lang="tr">KDevelop'a PHP deste??i ekler. Kod vurgulamas??, kod 
tamamlamas?? ve belgelendirme ba???? b??t??nle??tirmesi i??erir.</p>
     <p xml:lang="uk">?????????? ?????????????????? PHP ???? KDevelop. 
???????????????? ???????????????????? ???? ???????????????? 
?????????????????????????? ????????, ?????????????????????? 
???????????????????? ???????? ???? ???????????????????? ???????????????? ?? 
????????????????????????.</p>
     <p xml:lang="x-test">xxAdds PHP support to KDevelop. Includes adding 
integration with code highlighting, code completion and documentation 
links.xx</p>
     <p xml:lang="zh-TW">??? KDevelop ?????? PHP 
????????????????????????????????????????????????????????????????????????????????????</p>
@@ -96,10 +99,10 @@
     <category>IDE</category>
   </categories>
   <releases>
+    <release version="5.7.220800" date="2022-08-18"/>
     <release version="5.7.220403" date="2022-07-07"/>
     <release version="5.7.220402" date="2022-06-09"/>
     <release version="5.7.220401" date="2022-05-12"/>
-    <release version="5.7.220400" date="2022-04-21"/>
   </releases>
   <update_contact>[email protected]</update_contact>
 </component>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/phphighlighting.cpp 
new/kdev-php-22.08.0/phphighlighting.cpp
--- old/kdev-php-22.04.3/phphighlighting.cpp    2022-07-01 21:27:40.000000000 
+0200
+++ new/kdev-php-22.08.0/phphighlighting.cpp    2022-08-11 00:28:09.000000000 
+0200
@@ -17,7 +17,7 @@
 class HighlightingInstance : public CodeHighlightingInstance {
 public:
     HighlightingInstance(const CodeHighlighting* highlighting);
-    Types typeForDeclaration(KDevelop::Declaration* decl, KDevelop::DUContext* 
context) const override;
+    CodeHighlightingType typeForDeclaration(KDevelop::Declaration* decl, 
KDevelop::DUContext* context) const override;
     bool useRainbowColor( Declaration* dec ) const override;
 };
 
@@ -26,13 +26,13 @@
 {
 }
 
-HighlightingEnumContainer::Types 
HighlightingInstance::typeForDeclaration(Declaration* decl, DUContext* context) 
const
+CodeHighlightingType HighlightingInstance::typeForDeclaration(Declaration* 
decl, DUContext* context) const
 {
     if (decl && !decl->isFunctionDeclaration() && decl->abstractType()
         && decl->abstractType()->modifiers() & AbstractType::ConstModifier
         && !dynamic_cast<VariableDeclaration*>(decl) )
     {
-        return EnumType;
+        return CodeHighlightingType::Enum;
     } else {
         return CodeHighlightingInstance::typeForDeclaration(decl, context);
     }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/bs/kdevphp.po 
new/kdev-php-22.08.0/po/bs/kdevphp.po
--- old/kdev-php-22.04.3/po/bs/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/bs/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp.po\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2014-10-20 19:48+0000\n"
 "Last-Translator: Samir Ribi?? <Unknown>\n"
 "Language-Team: bs <[email protected]>\n"
@@ -155,7 +155,7 @@
 "Uvjerite se da su lokalne kopije preuzete u HTML formatu s mnogo datoteka.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...u??itavam dokumentaciju..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/ca/kdevphp.po 
new/kdev-php-22.08.0/po/ca/kdevphp.po
--- old/kdev-php-22.04.3/po/ca/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/ca/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kdev-php\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2020-08-05 23:27+0200\n"
 "Last-Translator: Antoni Bella P??rez <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -134,7 +134,7 @@
 "fitxers.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...s'est?? carregant la documentaci??..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/ca@valencia/kdevphp.po 
new/kdev-php-22.08.0/po/ca@valencia/kdevphp.po
--- old/kdev-php-22.04.3/po/ca@valencia/kdevphp.po      2022-07-05 
06:44:51.000000000 +0200
+++ new/kdev-php-22.08.0/po/ca@valencia/kdevphp.po      2022-08-12 
02:14:55.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kdev-php\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2020-08-05 23:27+0200\n"
 "Last-Translator: Antoni Bella P??rez <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -80,12 +80,13 @@
 "</style></head><body style=\" font-family:'DejaVu Sans'; font-size:8pt; font-"
 "weight:400; font-style:normal;\">\n"
 "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
-"right:0px; -qt-block-indent:0; text-indent:0px;\">Per defecte la <a href="
-"\"https://php.net\";><span style=\" text-decoration: underline; color:#0000ff;"
-"\">documentaci?? de PHP</span></a> en l??nia s'utilitza remotament. De manera 
"
-"alternativa podeu establir la ubicaci?? a una c??pia local de la 
documentaci?? "
-"en l'idioma que escolliu. Assegureu-vos que heu baixat el paquet <span style="
-"\" font-style:italic;\">??Many HTML files??</span>.</p></body></html>"
+"right:0px; -qt-block-indent:0; text-indent:0px;\">De manera predeterminada, "
+"la <a href=\"https://php.net\";><span style=\" text-decoration: underline; "
+"color:#0000ff;\">documentaci?? de PHP</span></a> en l??nia s'utilitza "
+"remotament. De manera alternativa podeu establir la ubicaci?? a una c??pia "
+"local de la documentaci?? en l'idioma que escolliu. Assegureu-vos que heu "
+"baixat el paquet <span style=\" font-style:italic;\">??Many HTML files??</"
+"span>.</p></body></html>"
 
 #. i18n: ectx: property (text), widget (QLabel, PhpDocLocationLabel)
 #: docs/phpdocsconfig.ui:57
@@ -135,7 +136,7 @@
 "fitxers.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...s'est?? carregant la documentaci??..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/cs/kdevphp.po 
new/kdev-php-22.08.0/po/cs/kdevphp.po
--- old/kdev-php-22.04.3/po/cs/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/cs/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2018-08-30 14:44+0100\n"
 "Last-Translator: Vit Pelcak <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
@@ -108,7 +108,7 @@
 "        "
 msgstr ""
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...na????t?? se dokumentace..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/da/kdevphp.po 
new/kdev-php-22.08.0/po/da/kdevphp.po
--- old/kdev-php-22.04.3/po/da/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/da/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2014-05-27 20:06+0200\n"
 "Last-Translator: Martin Schlander <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
@@ -155,7 +155,7 @@
 "files.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...indl??ser dokumentation..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/de/kdevphp.po 
new/kdev-php-22.08.0/po/de/kdevphp.po
--- old/kdev-php-22.04.3/po/de/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/de/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2020-09-17 16:17+0200\n"
 "Last-Translator: Burkhard L??ck <[email protected]>\n"
 "Language-Team: German <[email protected]>\n"
@@ -131,7 +131,7 @@
 "heruntergeladen worden sind.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "... Dokumentation wird geladen ..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/el/kdevphp.po 
new/kdev-php-22.08.0/po/el/kdevphp.po
--- old/kdev-php-22.04.3/po/el/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/el/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2017-04-27 18:18+0200\n"
 "Last-Translator: Stelios <[email protected]>\n"
 "Language-Team: Greek <[email protected]>\n"
@@ -153,7 +153,7 @@
 "?????????????????????? ?????? ???? ???????????? ?????????????????? ?????????? 
???? ?????????? HTML ???????????? ??????????????.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...?????????????? ??????????????????????..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/en_GB/kdevphp.po 
new/kdev-php-22.08.0/po/en_GB/kdevphp.po
--- old/kdev-php-22.04.3/po/en_GB/kdevphp.po    2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/en_GB/kdevphp.po    2022-08-12 02:14:55.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2019-12-01 12:15+0000\n"
 "Last-Translator: Steve Allewell <[email protected]>\n"
 "Language-Team: British English <[email protected]>\n"
@@ -129,7 +129,7 @@
 "Make sure local copies are downloaded in HTML format with many files.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...loading documentation..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/eo/kdevphp.po 
new/kdev-php-22.08.0/po/eo/kdevphp.po
--- old/kdev-php-22.04.3/po/eo/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/eo/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2009-11-15 12:06+0100\n"
 "Last-Translator: Axel Rousseau <[email protected]>\n"
 "Language-Team: esperanto <[email protected]>\n"
@@ -108,7 +108,7 @@
 "        "
 msgstr ""
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/es/kdevphp.po 
new/kdev-php-22.08.0/po/es/kdevphp.po
--- old/kdev-php-22.04.3/po/es/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/es/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2019-11-26 17:56+0100\n"
 "Last-Translator: Eloy Cuadra <[email protected]>\n"
 "Language-Team: Spanish <[email protected]>\n"
@@ -132,7 +132,7 @@
 "archivos.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "cargando documentaci??n..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/et/kdevphp.po 
new/kdev-php-22.08.0/po/et/kdevphp.po
--- old/kdev-php-22.04.3/po/et/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/et/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2020-01-16 21:31+0200\n"
 "Last-Translator: Marek Laane <[email protected]>\n"
 "Language-Team: Estonian <[email protected]>\n"
@@ -130,7 +130,7 @@
 "failidega.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "... dokumentatsiooni laadimine..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/fi/kdevphp.po 
new/kdev-php-22.08.0/po/fi/kdevphp.po
--- old/kdev-php-22.04.3/po/fi/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/fi/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2016-01-08 00:11+0200\n"
 "Last-Translator: Lasse Liehu <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
@@ -146,7 +146,7 @@
 msgstr ""
 "Varmista, ett?? paikalliset kopiot ladataan useiden tiedostojen 
HTML-muodossa."
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "???ladataan dokumentaatiota???"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/fr/kdevphp.po 
new/kdev-php-22.08.0/po/fr/kdevphp.po
--- old/kdev-php-22.04.3/po/fr/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/fr/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2021-12-29 19:47+0100\n"
 "Last-Translator: Xavier Besnard <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
@@ -140,7 +140,7 @@
 "fichiers s??par??s????.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...chargement de la documentation..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/ga/kdevphp.po 
new/kdev-php-22.08.0/po/ga/kdevphp.po
--- old/kdev-php-22.04.3/po/ga/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/ga/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp.po\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2009-01-26 16:06-0500\n"
 "Last-Translator: Kevin Scannell <[email protected]>\n"
 "Language-Team: Irish <[email protected]>\n"
@@ -108,7 +108,7 @@
 "        "
 msgstr ""
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/gl/kdevphp.po 
new/kdev-php-22.08.0/po/gl/kdevphp.po
--- old/kdev-php-22.04.3/po/gl/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/gl/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -13,7 +13,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2019-11-26 22:53+0100\n"
 "Last-Translator: Adri??n Chaves (Gallaecio) <[email protected]>\n"
 "Language-Team: Galician <[email protected]>\n"
@@ -139,7 +139,7 @@
 "ficheiros.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "???estase a cargar a documentaci??n???"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/hr/kdevphp.po 
new/kdev-php-22.08.0/po/hr/kdevphp.po
--- old/kdev-php-22.04.3/po/hr/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/hr/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2010-01-24 17:02+0100\n"
 "Last-Translator: Andrej Dundovic <[email protected]>\n"
 "Language-Team: Croatian <[email protected]>\n"
@@ -111,7 +111,7 @@
 "        "
 msgstr ""
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/hu/kdevphp.po 
new/kdev-php-22.08.0/po/hu/kdevphp.po
--- old/kdev-php-22.04.3/po/hu/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/hu/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2014-02-08 22:58+0100\n"
 "Last-Translator: Bal??zs ??r <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\n"
@@ -155,7 +155,7 @@
 "lett let??ltve.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "???dokument??ci?? bet??lt??se???"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/it/kdevphp.po 
new/kdev-php-22.08.0/po/it/kdevphp.po
--- old/kdev-php-22.04.3/po/it/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/it/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2019-11-29 00:50+0100\n"
 "Last-Translator: Luigi Toscano <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\n"
@@ -132,7 +132,7 @@
 "molti file.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...caricamento della documentazione..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/ja/kdevphp.po 
new/kdev-php-22.08.0/po/ja/kdevphp.po
--- old/kdev-php-22.04.3/po/ja/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/ja/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2009-01-26 21:02+0900\n"
 "Last-Translator: Japanese KDE translation team <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
@@ -105,7 +105,7 @@
 "        "
 msgstr ""
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/kk/kdevphp.po 
new/kdev-php-22.08.0/po/kk/kdevphp.po
--- old/kdev-php-22.04.3/po/kk/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/kk/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2013-11-12 04:13+0600\n"
 "Last-Translator: Sairan Kikkarin <[email protected]>\n"
 "Language-Team: Kazakh <[email protected]>\n"
@@ -155,7 +155,7 @@
 "????????????????????.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...?????????????????? ???????????????? ??????????..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/ko/kdevphp.po 
new/kdev-php-22.08.0/po/ko/kdevphp.po
--- old/kdev-php-22.04.3/po/ko/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/ko/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: kdevelop\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2020-04-05 12:26+0200\n"
 "Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
@@ -124,7 +124,7 @@
 "?????? ??????????????? ?????? ????????? ?????? ????????? ?????? HTML 
???????????? ?????????.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...?????? ???????????? ???..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/lt/kdevphp.po 
new/kdev-php-22.08.0/po/lt/kdevphp.po
--- old/kdev-php-22.04.3/po/lt/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/lt/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2009-01-25 22:33+0200\n"
 "Last-Translator: Andrius ??tikonas <[email protected]>\n"
 "Language-Team: Lithuanian <[email protected]>\n"
@@ -109,7 +109,7 @@
 "        "
 msgstr ""
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/mr/kdevphp.po 
new/kdev-php-22.08.0/po/mr/kdevphp.po
--- old/kdev-php-22.04.3/po/mr/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/mr/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2013-03-13 16:48+0530\n"
 "Last-Translator: Chetan Khona <[email protected]>\n"
 "Language-Team: Marathi <[email protected]>\n"
@@ -108,7 +108,7 @@
 "        "
 msgstr ""
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...????????????????????????????????? ???????????? ????????? 
?????????..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/nb/kdevphp.po 
new/kdev-php-22.08.0/po/nb/kdevphp.po
--- old/kdev-php-22.04.3/po/nb/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/nb/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2010-12-31 14:54+0100\n"
 "Last-Translator: Bj??rn Steensrud <[email protected]>\n"
 "Language-Team: Norwegian Bokm??l <[email protected]>\n"
@@ -112,7 +112,7 @@
 "Se til at lokale kopier er lastet ned i HTML-format med mange filer.\n"
 "    "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "??? laster dokumentasjon?????"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/nds/kdevphp.po 
new/kdev-php-22.08.0/po/nds/kdevphp.po
--- old/kdev-php-22.04.3/po/nds/kdevphp.po      2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/nds/kdevphp.po      2022-08-12 02:14:55.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2010-09-09 11:02+0200\n"
 "Last-Translator: Manfred Wiese <[email protected]>\n"
 "Language-Team: Low Saxon <[email protected]>\n"
@@ -151,7 +151,7 @@
 "Beseker, Dien lokaal Kopie is in't HTML-Formaat mit vele Dateien.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "... Dokmentatschoon warrt laadt..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/nl/kdevphp.po 
new/kdev-php-22.08.0/po/nl/kdevphp.po
--- old/kdev-php-22.04.3/po/nl/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/nl/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2019-11-26 15:18+0100\n"
 "Last-Translator: Freek de Kruijf <[email protected]>\n"
 "Language-Team: Dutch <[email protected]>\n"
@@ -132,7 +132,7 @@
 "vele bestanden.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...laden van documentatie..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/nn/kdevphp.po 
new/kdev-php-22.08.0/po/nn/kdevphp.po
--- old/kdev-php-22.04.3/po/nn/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/nn/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kdev-php\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2020-11-14 14:40+0100\n"
 "Last-Translator: Karl Ove Hufthammer <[email protected]>\n"
 "Language-Team: Norwegian Nynorsk <[email protected]>\n"
@@ -110,7 +110,7 @@
 "        "
 msgstr ""
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "??? lastar dokumentasjon?????"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/pl/kdevphp.po 
new/kdev-php-22.08.0/po/pl/kdevphp.po
--- old/kdev-php-22.04.3/po/pl/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/pl/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2020-12-27 09:42+0100\n"
 "Last-Translator: ??ukasz Wojni??owicz <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
@@ -129,7 +129,7 @@
 "Upewnij si??, ??e lokalne kopie s?? pobrane w formacie HTML z wieloma 
plikami.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...wczytywanie dokumentacji..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/pt/kdevphp.po 
new/kdev-php-22.08.0/po/pt/kdevphp.po
--- old/kdev-php-22.04.3/po/pt/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/pt/kdevphp.po       2022-08-12 02:14:55.000000000 
+0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2019-11-26 11:39+0000\n"
 "Last-Translator: Jos?? Nuno Coelho Pires <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\n"
@@ -129,7 +129,7 @@
 "v??rios ficheiros.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...a carregar a documenta????o..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/pt_BR/kdevphp.po 
new/kdev-php-22.08.0/po/pt_BR/kdevphp.po
--- old/kdev-php-22.04.3/po/pt_BR/kdevphp.po    2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/pt_BR/kdevphp.po    2022-08-12 02:14:55.000000000 
+0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2020-04-20 17:01-0300\n"
 "Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n"
 "Language-Team: Brazilian Portuguese <[email protected]>\n"
@@ -135,7 +135,7 @@
 "v??rios arquivos.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...carregando documenta????o..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/ro/kdevphp.po 
new/kdev-php-22.08.0/po/ro/kdevphp.po
--- old/kdev-php-22.04.3/po/ro/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/ro/kdevphp.po       2022-08-12 02:14:56.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2010-01-19 23:15+0200\n"
 "Last-Translator: Sergiu Bivol <[email protected]>\n"
 "Language-Team: Rom??n?? <[email protected]>\n"
@@ -108,7 +108,7 @@
 "        "
 msgstr ""
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...se ??ncarc?? documenta??ia..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/ru/kdevphp.po 
new/kdev-php-22.08.0/po/ru/kdevphp.po
--- old/kdev-php-22.04.3/po/ru/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/ru/kdevphp.po       2022-08-12 02:14:56.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2022-03-03 17:30+0300\n"
 "Last-Translator: Olesya Gerasimenko <[email protected]>\n"
 "Language-Team: Basealt Translation Team\n"
@@ -134,7 +134,7 @@
 "?????????????????? ?? ??????, ?????? ???????????????????????? 
?????????????????? ?? ???????? ???????????? ???????????? HTML.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "???????????????? ????????????????????????..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/sk/kdevphp.po 
new/kdev-php-22.08.0/po/sk/kdevphp.po
--- old/kdev-php-22.04.3/po/sk/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/sk/kdevphp.po       2022-08-12 02:14:56.000000000 
+0200
@@ -6,8 +6,8 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
-"PO-Revision-Date: 2022-04-09 14:33+0200\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
+"PO-Revision-Date: 2022-04-09 19:21+0200\n"
 "Last-Translator: Roman Paholik <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
 "Language: sk\n"
@@ -128,7 +128,7 @@
 "Uistite sa, ??e miestne k??pie s?? stiahnut?? v HTML form??te s mnoh??mi 
s??bormi.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...na????tavanie dokument??cie..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/sl/kdevphp.po 
new/kdev-php-22.08.0/po/sl/kdevphp.po
--- old/kdev-php-22.04.3/po/sl/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/sl/kdevphp.po       2022-08-12 02:14:56.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2020-10-14 11:11+0200\n"
 "Last-Translator: Matja?? Jeran <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
@@ -131,7 +131,7 @@
 "datotekami.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "... nalaganje dokumentacije ..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/sv/kdevphp.po 
new/kdev-php-22.08.0/po/sv/kdevphp.po
--- old/kdev-php-22.04.3/po/sv/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/sv/kdevphp.po       2022-08-12 02:14:56.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2019-11-30 15:16+0100\n"
 "Last-Translator: Stefan Asserh??ll <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
@@ -128,7 +128,7 @@
 "F??rs??kra dig om att lokala kopior laddas ner med HTML-format i flera 
filer.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "... l??ser in dokumentation ..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/tr/kdevphp.po 
new/kdev-php-22.08.0/po/tr/kdevphp.po
--- old/kdev-php-22.04.3/po/tr/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/tr/kdevphp.po       2022-08-12 02:14:56.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: extragear-kdevelop-kde4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2022-04-07 12:59+0300\n"
 "Last-Translator: Emir SARI <[email protected]>\n"
 "Language-Team: Turkish <[email protected]>\n"
@@ -130,7 +130,7 @@
 "Yerel kopyan??z??n ??ok sayfal?? HTML bi??iminde oldu??undan emin olun.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...belgelendirme y??kleniyor..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/ug/kdevphp.po 
new/kdev-php-22.08.0/po/ug/kdevphp.po
--- old/kdev-php-22.04.3/po/ug/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/ug/kdevphp.po       2022-08-12 02:14:56.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2013-09-08 07:04+0900\n"
 "Last-Translator: Gheyret Kenji <[email protected]>\n"
 "Language-Team: Uyghur Computer Science Association <[email protected]>\n"
@@ -110,7 +110,7 @@
 "        "
 msgstr ""
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/uk/kdevphp.po 
new/kdev-php-22.08.0/po/uk/kdevphp.po
--- old/kdev-php-22.04.3/po/uk/kdevphp.po       2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/uk/kdevphp.po       2022-08-12 02:14:56.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2019-11-26 08:38+0200\n"
 "Last-Translator: Yuri Chornoivan <[email protected]>\n"
 "Language-Team: Ukrainian <[email protected]>\n"
@@ -132,7 +132,7 @@
 "?????????????????????? ?? ???????????????? ????????????.\n"
 "        "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...???????????????????????? ????????????????????????..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/zh_CN/kdevphp.po 
new/kdev-php-22.08.0/po/zh_CN/kdevphp.po
--- old/kdev-php-22.04.3/po/zh_CN/kdevphp.po    2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/zh_CN/kdevphp.po    2022-08-12 02:14:56.000000000 
+0200
@@ -1,19 +1,9 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR This_file_is_part_of_KDE
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR This_file_is_part_of_KDE
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
-"PO-Revision-Date: 2022-07-02 11:02\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
+"PO-Revision-Date: 2022-08-07 13:32\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -136,7 +126,7 @@
 "???????????????????????? HTML ??????????????????\n"
 "      "
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "...??????????????????..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdev-php-22.04.3/po/zh_TW/kdevphp.po 
new/kdev-php-22.08.0/po/zh_TW/kdevphp.po
--- old/kdev-php-22.04.3/po/zh_TW/kdevphp.po    2022-07-05 06:44:51.000000000 
+0200
+++ new/kdev-php-22.08.0/po/zh_TW/kdevphp.po    2022-08-12 02:14:56.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kdevphp\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2021-10-30 00:15+0000\n"
+"POT-Creation-Date: 2022-06-28 00:43+0000\n"
 "PO-Revision-Date: 2018-12-02 23:39+0800\n"
 "Last-Translator: pan93412 <[email protected]>\n"
 "Language-Team: Chinese <[email protected]>\n"
@@ -150,7 +150,7 @@
 "        "
 msgstr "???????????????????????????????????? HTML ????????????????????????"
 
-#: docs/phpdocumentationwidget.cpp:59
+#: docs/phpdocumentationwidget.cpp:44
 #, kde-format
 msgid "...loading documentation..."
 msgstr "... ??????????????? ..."

Reply via email to