Hello community,
here is the log from the commit of package kdevelop5-plugin-php for
openSUSE:Factory checked in at 2018-08-22 14:21:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdevelop5-plugin-php (Old)
and /work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdevelop5-plugin-php"
Wed Aug 22 14:21:09 2018 rev:10 rq:630786 version:5.2.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/kdevelop5-plugin-php/kdevelop5-plugin-php.changes
2018-06-02 12:08:26.720138703 +0200
+++
/work/SRC/openSUSE:Factory/.kdevelop5-plugin-php.new/kdevelop5-plugin-php.changes
2018-08-22 14:21:14.914478933 +0200
@@ -1,0 +2,8 @@
+Tue Aug 21 10:56:11 UTC 2018 - [email protected]
+
+- New upstream release 5.2.4
+ * Determine correct type for relational and equality expressions
+ (kde#305341)
+ * Fix a bug with rescheduling jobs
+
+-------------------------------------------------------------------
Old:
----
kdev-php-5.2.3.tar.xz
New:
----
kdev-php-5.2.4.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kdevelop5-plugin-php.spec ++++++
--- /var/tmp/diff_new_pack.g1L4DK/_old 2018-08-22 14:21:15.286479814 +0200
+++ /var/tmp/diff_new_pack.g1L4DK/_new 2018-08-22 14:21:15.286479814 +0200
@@ -22,13 +22,13 @@
%define rname kdev-php
%define rversion 5.2
Name: kdevelop5-plugin-php
-Version: 5.2.3
+Version: 5.2.4
Release: 0
Summary: PHP plugin for Kdevelop5 Integrated Development Environment
License: GPL-2.0+
Group: Development/Tools/IDE
Url: http://www.kdevelop.org
-Source0: %{rname}-%{version}.tar.xz
+Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/%{rname}-%{version}.tar.xz
BuildRequires: extra-cmake-modules
BuildRequires: grantlee5-devel
BuildRequires: karchive-devel
++++++ kdev-php-5.2.3.tar.xz -> kdev-php-5.2.4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdev-php-5.2.3/CMakeLists.txt
new/kdev-php-5.2.4/CMakeLists.txt
--- old/kdev-php-5.2.3/CMakeLists.txt 2018-05-17 20:39:35.000000000 +0200
+++ new/kdev-php-5.2.4/CMakeLists.txt 2018-08-19 17:00:52.000000000 +0200
@@ -3,7 +3,7 @@
set(KDEVPHP_VERSION_MAJOR 5)
set(KDEVPHP_VERSION_MINOR 2)
-set(KDEVPHP_VERSION_PATCH 3)
+set(KDEVPHP_VERSION_PATCH 4)
# KDevplatform dependency version
set( KDEVPLATFORM_VERSION
"${KDEVPHP_VERSION_MAJOR}.${KDEVPHP_VERSION_MINOR}.${KDEVPHP_VERSION_PATCH}" )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdev-php-5.2.3/docs/kcm_kdevphpdocs.desktop.cmake
new/kdev-php-5.2.4/docs/kcm_kdevphpdocs.desktop.cmake
--- old/kdev-php-5.2.3/docs/kcm_kdevphpdocs.desktop.cmake 2018-05-17
20:39:19.000000000 +0200
+++ new/kdev-php-5.2.4/docs/kcm_kdevphpdocs.desktop.cmake 2018-08-19
17:00:29.000000000 +0200
@@ -20,6 +20,7 @@
Name[es]=Documentación de PHP
Name[et]=PHP dokumentatsioon
Name[fi]=PHP-dokumentaatio
+Name[fr]=Documentation PHP
Name[gl]=Documentación de PHP
Name[it]=Documentazione PHP
Name[ko]=PHP 문서
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdev-php-5.2.3/duchain/expressionvisitor.cpp
new/kdev-php-5.2.4/duchain/expressionvisitor.cpp
--- old/kdev-php-5.2.3/duchain/expressionvisitor.cpp 2018-05-17
20:39:19.000000000 +0200
+++ new/kdev-php-5.2.4/duchain/expressionvisitor.cpp 2018-08-19
17:00:29.000000000 +0200
@@ -743,7 +743,26 @@
DeclarationPointer dec = findDeclarationImport(ClassDeclarationType,
id);
usingDeclaration(node->instanceofType->identifier->namespaceNameSequence->back()->element,
dec);
buildNamespaceUses(node->instanceofType->identifier, id);
- m_result.setDeclaration(dec);
+
+ m_result.setType(AbstractType::Ptr(new
IntegralType(IntegralType::TypeBoolean)));
+ }
+}
+
+void
ExpressionVisitor::visitRelationalExpressionRest(RelationalExpressionRestAst
*node)
+{
+ DefaultVisitor::visitRelationalExpressionRest(node);
+
+ m_result.setType(AbstractType::Ptr(new
IntegralType(IntegralType::TypeBoolean)));
+}
+
+void ExpressionVisitor::visitEqualityExpressionRest(EqualityExpressionRestAst
*node)
+{
+ DefaultVisitor::visitEqualityExpressionRest(node);
+
+ if (node->operation && node->operation == OperationSpaceship) {
+ m_result.setType(AbstractType::Ptr(new
IntegralType(IntegralType::TypeInt)));
+ } else {
+ m_result.setType(AbstractType::Ptr(new
IntegralType(IntegralType::TypeBoolean)));
}
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdev-php-5.2.3/duchain/expressionvisitor.h
new/kdev-php-5.2.4/duchain/expressionvisitor.h
--- old/kdev-php-5.2.3/duchain/expressionvisitor.h 2018-05-17
20:39:19.000000000 +0200
+++ new/kdev-php-5.2.4/duchain/expressionvisitor.h 2018-08-19
17:00:29.000000000 +0200
@@ -72,6 +72,8 @@
void visitFunctionCallParameterList( FunctionCallParameterListAst* node )
override;
void
visitFunctionCallParameterListElement(FunctionCallParameterListElementAst*
node) override;
void visitRelationalExpression(RelationalExpressionAst* node) override;
+ void visitRelationalExpressionRest(RelationalExpressionRestAst* node)
override;
+ void visitEqualityExpressionRest(EqualityExpressionRestAst* node) override;
QString stringForNode(AstNode* id);
KDevelop::QualifiedIdentifier identifierForNode(IdentifierAst* id);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kdev-php-5.2.3/duchain/tests/duchain_multiplefiles.cpp
new/kdev-php-5.2.4/duchain/tests/duchain_multiplefiles.cpp
--- old/kdev-php-5.2.3/duchain/tests/duchain_multiplefiles.cpp 2018-05-17
20:39:19.000000000 +0200
+++ new/kdev-php-5.2.4/duchain/tests/duchain_multiplefiles.cpp 2018-08-19
17:00:29.000000000 +0200
@@ -80,10 +80,9 @@
f2.parse(features);
TestFile f1(QStringLiteral("<? class A {}"), QStringLiteral("php"),
project);
- f1.parse(features, 100); //low priority, to make sure f2 is parsed first
+ f1.parseAndWait(features, 100, 2000); //low priority, to make sure f2 is
parsed first
- QVERIFY(f1.waitForParsed());
- QTest::qWait(100);
+ QVERIFY(f1.isReady());
DUChainWriteLocker lock(DUChain::lock());
QVERIFY(f2.topContext()->imports(f1.topContext(), CursorInRevision(0, 0)));
@@ -118,14 +117,12 @@
f2.parse(features);
TestFile f1(QStringLiteral("<? function foo2() {}"),
QStringLiteral("php"), project);
- f1.parse(features, 100); //low priority, to make sure f2 is parsed first
+ f1.parseAndWait(features, 100, 2000); //low priority, to make sure f2 is
parsed first
- QVERIFY(f2.waitForParsed());
- QTest::qWait(100);
+ QVERIFY(f1.isReady());
DUChainWriteLocker lock(DUChain::lock());
QVERIFY(f2.topContext()->imports(f1.topContext(), CursorInRevision(0, 0)));
-
}
void TestDUChainMultipleFiles::testNonExistingGlobalFunction()
@@ -156,10 +153,9 @@
f2.parse(features);
TestFile f1(QStringLiteral("<? class C { public static function foo() {}
}"), QStringLiteral("php"), project);
- f1.parse(features, 100); //low priority, to make sure f2 is parsed first
+ f1.parseAndWait(features, 100, 2000); //low priority, to make sure f2 is
parsed first
- QVERIFY(f2.waitForParsed());
- QTest::qWait(100);
+ QVERIFY(f1.isReady());
DUChainWriteLocker lock(DUChain::lock());
QVERIFY(f2.topContext()->imports(f1.topContext(), CursorInRevision(0, 0)));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdev-php-5.2.3/duchain/tests/expressionparser.cpp
new/kdev-php-5.2.4/duchain/tests/expressionparser.cpp
--- old/kdev-php-5.2.3/duchain/tests/expressionparser.cpp 2018-05-17
20:39:19.000000000 +0200
+++ new/kdev-php-5.2.4/duchain/tests/expressionparser.cpp 2018-08-19
17:00:29.000000000 +0200
@@ -439,6 +439,22 @@
res = p.evaluateType(QByteArray("$foo **= 1"), DUContextPointer(top),
CursorInRevision(1, 0));
QVERIFY(IntegralType::Ptr::dynamicCast(res.type()));
QVERIFY(IntegralType::Ptr::staticCast(res.type())->dataType() ==
IntegralType::TypeInt);
+
+ res = p.evaluateType(QByteArray("$foo = 3 > 1"), DUContextPointer(top),
CursorInRevision(1, 0));
+ QVERIFY(IntegralType::Ptr::dynamicCast(res.type()));
+ QVERIFY(IntegralType::Ptr::staticCast(res.type())->dataType() ==
IntegralType::TypeBoolean);
+
+ res = p.evaluateType(QByteArray("$foo = 3 != 1"), DUContextPointer(top),
CursorInRevision(1, 0));
+ QVERIFY(IntegralType::Ptr::dynamicCast(res.type()));
+ QVERIFY(IntegralType::Ptr::staticCast(res.type())->dataType() ==
IntegralType::TypeBoolean);
+
+ res = p.evaluateType(QByteArray("$foo = $a instanceof A"),
DUContextPointer(top), CursorInRevision(1, 0));
+ QVERIFY(IntegralType::Ptr::dynamicCast(res.type()));
+ QVERIFY(IntegralType::Ptr::staticCast(res.type())->dataType() ==
IntegralType::TypeBoolean);
+
+ res = p.evaluateType(QByteArray("$foo = 3 <=> 2"), DUContextPointer(top),
CursorInRevision(1, 0));
+ QVERIFY(IntegralType::Ptr::dynamicCast(res.type()));
+ QVERIFY(IntegralType::Ptr::staticCast(res.type())->dataType() ==
IntegralType::TypeInt);
}
void TestExpressionParser::findArg()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdev-php-5.2.3/org.kde.kdev-php.metainfo.xml
new/kdev-php-5.2.4/org.kde.kdev-php.metainfo.xml
--- old/kdev-php-5.2.3/org.kde.kdev-php.metainfo.xml 2018-05-17
20:39:19.000000000 +0200
+++ new/kdev-php-5.2.4/org.kde.kdev-php.metainfo.xml 2018-08-19
17:00:29.000000000 +0200
@@ -41,7 +41,7 @@
<project_license>GPL-2.0+</project_license>
<metadata_license>CC0-1.0</metadata_license>
<url type="homepage">https://kdevelop.org</url>
- <url
type="bugtracker">https://bugs.kde.org/enter_bug.cgi?format=guided&product=kdevelop&component=Language
Support%3A PHP</url>
+ <url
type="bugtracker">https://bugs.kde.org/enter_bug.cgi?format=guided&product=kdevelop&component=Language%20Support%3A%20PHP</url>
<url type="help">https://docs.kde.org/index.php?application=kdevelop</url>
<url
type="donation">https://www.kde.org/community/donations/?app=kdevelop</url>
<project_group>KDE</project_group>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdev-php-5.2.3/parser/php.g
new/kdev-php-5.2.4/parser/php.g
--- old/kdev-php-5.2.3/parser/php.g 2018-05-17 20:39:19.000000000 +0200
+++ new/kdev-php-5.2.4/parser/php.g 2018-08-19 17:00:29.000000000 +0200
@@ -135,7 +135,8 @@
OperationOr,
OperationXor,
OperationSl,
- OperationSr
+ OperationSr,
+ OperationSpaceship,
};
:]
@@ -454,9 +455,11 @@
(#additionalExpression=equalityExpressionRest)*
-> equalityExpression ;;
- ( IS_EQUAL | IS_NOT_EQUAL | IS_IDENTICAL | IS_NOT_IDENTICAL | SPACESHIP )
+ ( IS_EQUAL | IS_NOT_EQUAL | IS_IDENTICAL | IS_NOT_IDENTICAL | SPACESHIP [:
(*yynode)->operation = OperationSpaceship; :] )
expression=relationalExpression
--> equalityExpressionRest ;;
+-> equalityExpressionRest [
+ member variable operation: OperationType;
+];;
expression=shiftExpression
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdev-php-5.2.3/phpparsejob.cpp
new/kdev-php-5.2.4/phpparsejob.cpp
--- old/kdev-php-5.2.3/phpparsejob.cpp 2018-05-17 20:39:19.000000000 +0200
+++ new/kdev-php-5.2.4/phpparsejob.cpp 2018-08-19 17:00:29.000000000 +0200
@@ -153,7 +153,7 @@
}
if (hadUnresolvedIdentifiers) {
- if (!(minimumFeatures() & Resheduled) &&
KDevelop::ICore::self()->languageController()->backgroundParser()->queuedCount())
{
+ if (!(minimumFeatures() & Resheduled)) {
// Need to create new parse job with lower priority
qCDebug(PHP) << "Reschedule file " << document().str() << "for
parsing";
KDevelop::TopDUContext::Features feat =
static_cast<KDevelop::TopDUContext::Features>(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdev-php-5.2.3/po/ca/kdevphp.po
new/kdev-php-5.2.4/po/ca/kdevphp.po
--- old/kdev-php-5.2.3/po/ca/kdevphp.po 2018-05-17 20:39:28.000000000 +0200
+++ new/kdev-php-5.2.4/po/ca/kdevphp.po 2018-08-19 17:00:39.000000000 +0200
@@ -1,18 +1,18 @@
# Translation of kdevphp.po to Catalan
-# Copyright (C) 2009-2017 This_file_is_part_of_KDE
+# Copyright (C) 2009-2018 This_file_is_part_of_KDE
# This file is distributed under the license LGPL version 2.1 or
# version 3 or later versions approved by the membership of KDE e.V.
#
# Manuel Tortosa Moreno <[email protected]>, 2009, 2010.
# Josep Ma. Ferrer <[email protected]>, 2010, 2012, 2013, 2015, 2017.
-# Antoni Bella Pérez <[email protected]>, 2013, 2014, 2015, 2016, 2017.
+# Antoni Bella Pérez <[email protected]>, 2013, 2014, 2015, 2016, 2017,
2018.
msgid ""
msgstr ""
"Project-Id-Version: kdevphp\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2017-08-29 05:15+0200\n"
-"PO-Revision-Date: 2017-12-08 19:50+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"PO-Revision-Date: 2018-06-14 12:09+0100\n"
+"Last-Translator: Antoni Bella Pérez <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -232,7 +232,7 @@
#, kde-format
msgid "Default value for parameters with a class type hint can only be NULL."
msgstr ""
-"El valor per omissió per paràmetres amb tipus suggerit de classe només pot "
+"El valor per omissió pels paràmetres amb tipus de classe suggerit només pot "
"ser NULL."
#: duchain/builders/declarationbuilder.cpp:765
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdev-php-5.2.3/po/ca@valencia/kdevphp.po
new/kdev-php-5.2.4/po/ca@valencia/kdevphp.po
--- old/kdev-php-5.2.3/po/ca@valencia/kdevphp.po 2018-05-17
20:39:28.000000000 +0200
+++ new/kdev-php-5.2.4/po/ca@valencia/kdevphp.po 2018-08-19
17:00:39.000000000 +0200
@@ -1,18 +1,18 @@
# Translation of kdevphp.po to Catalan (Valencian)
-# Copyright (C) 2009-2017 This_file_is_part_of_KDE
+# Copyright (C) 2009-2018 This_file_is_part_of_KDE
# This file is distributed under the license LGPL version 2.1 or
# version 3 or later versions approved by the membership of KDE e.V.
#
# Manuel Tortosa Moreno <[email protected]>, 2009, 2010.
# Josep Ma. Ferrer <[email protected]>, 2010, 2012, 2013, 2015, 2017.
-# Antoni Bella Pérez <[email protected]>, 2013, 2014, 2015, 2016, 2017.
+# Antoni Bella Pérez <[email protected]>, 2013, 2014, 2015, 2016, 2017,
2018.
msgid ""
msgstr ""
"Project-Id-Version: kdevphp\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2017-08-29 05:15+0200\n"
-"PO-Revision-Date: 2017-12-08 19:50+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"PO-Revision-Date: 2018-06-14 12:09+0100\n"
+"Last-Translator: Antoni Bella Pérez <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\n"
"Language: ca@valencia\n"
"MIME-Version: 1.0\n"
@@ -232,7 +232,7 @@
#, kde-format
msgid "Default value for parameters with a class type hint can only be NULL."
msgstr ""
-"El valor per omissió per paràmetres amb tipus suggerit de classe només pot "
+"El valor per omissió pels paràmetres amb tipus de classe suggerit només pot "
"ser NULL."
#: duchain/builders/declarationbuilder.cpp:765
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdev-php-5.2.3/po/fr/kdevphp.po
new/kdev-php-5.2.4/po/fr/kdevphp.po
--- old/kdev-php-5.2.3/po/fr/kdevphp.po 2018-05-17 20:39:29.000000000 +0200
+++ new/kdev-php-5.2.4/po/fr/kdevphp.po 2018-08-19 17:00:41.000000000 +0200
@@ -12,7 +12,7 @@
"Project-Id-Version: kdevphp\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2017-08-29 05:15+0200\n"
-"PO-Revision-Date: 2018-01-12 18:20+0800\n"
+"PO-Revision-Date: 2018-06-01 15:24+0800\n"
"Last-Translator: Simon Depiets <[email protected]>\n"
"Language-Team: French <[email protected]>\n"
"Language: fr\n"
@@ -54,7 +54,7 @@
#: docs/phpdocsconfig.ui:20
#, kde-format
msgid "PHP Manual Integration"
-msgstr "Intégration manuelle de PHP"
+msgstr "Intégration du manuel PHP"
#. i18n: ectx: property (text), widget (QLabel, PhpDocNote)
#: docs/phpdocsconfig.ui:36
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdev-php-5.2.3/po/it/kdevphp.po
new/kdev-php-5.2.4/po/it/kdevphp.po
--- old/kdev-php-5.2.3/po/it/kdevphp.po 2018-05-17 20:39:30.000000000 +0200
+++ new/kdev-php-5.2.4/po/it/kdevphp.po 2018-08-19 17:00:44.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 kdevphp package.
# Simone Solinas <[email protected]>, 2009, 2010, 2012, 2013, 2014.
-# Luigi Toscano <[email protected]>, 2016, 2017.
+# Luigi Toscano <[email protected]>, 2016, 2017, 2018.
#
msgid ""
msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kdev-php-5.2.3/po/zh_CN/kdevphp.po
new/kdev-php-5.2.4/po/zh_CN/kdevphp.po
--- old/kdev-php-5.2.3/po/zh_CN/kdevphp.po 2018-05-17 20:39:34.000000000
+0200
+++ new/kdev-php-5.2.4/po/zh_CN/kdevphp.po 2018-08-19 17:00:52.000000000
+0200
@@ -9,7 +9,7 @@
"Project-Id-Version: kdeorg\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2017-08-29 05:15+0200\n"
-"PO-Revision-Date: 2018-04-26 06:10-0400\n"
+"PO-Revision-Date: 2018-07-24 08:47\n"
"Last-Translator: guoyunhebrave <[email protected]>\n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\n"
@@ -90,7 +90,7 @@
#: docs/phpdocsconfig.ui:57
#, kde-format
msgid "Location:"
-msgstr "位置:"
+msgstr "饱和度:"
#: docs/phpdocsmodel.cpp:110
#, kde-format
@@ -351,7 +351,7 @@
#, kde-format
msgctxt "as in list of int, set of string"
msgid "%1 of %2"
-msgstr "%1 的 %2"
+msgstr "%1 of %2"
#: parser/main.cpp:38
#, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kdev-php-5.2.3/testprovider/kdevphpunitprovider.desktop.cmake
new/kdev-php-5.2.4/testprovider/kdevphpunitprovider.desktop.cmake
--- old/kdev-php-5.2.3/testprovider/kdevphpunitprovider.desktop.cmake
2018-05-17 20:39:19.000000000 +0200
+++ new/kdev-php-5.2.4/testprovider/kdevphpunitprovider.desktop.cmake
2018-08-19 17:00:29.000000000 +0200
@@ -6,6 +6,7 @@
Comment[bs]=Traži i pokreće PHPUnit testove.
Comment[ca]=Cerca i executa proves del PHPUnit.
Comment[ca@valencia]=Cerca i executa proves del PHPUnit.
+Comment[cs]=Hledá a spouští testy PHPUnit.
Comment[da]=Finder og kører PHPUnit-tests.
Comment[de]=Sucht und führt PHPUnit-Tests aus.
Comment[el]=Βρίσκει και εκτελεί PHPUnit tests.
@@ -41,6 +42,7 @@
Name[bs]=PHPUnit Integracija
Name[ca]=Integració del PHPUnit
Name[ca@valencia]=Integració del PHPUnit
+Name[cs]=Integrace PHPUnit
Name[da]=Integration af PHPUnit
Name[de]=PHPUnit-Integration
Name[el]=PHPUnit Integration
@@ -77,6 +79,7 @@
GenericName[bs]=PHPUnit Integracija
GenericName[ca]=Integració del PHPUnit
GenericName[ca@valencia]=Integració del PHPUnit
+GenericName[cs]=Integrace PHPUnit
GenericName[da]=Integration af PHPUnit
GenericName[de]=PHPUnit-Integration
GenericName[el]=PHPUnit Integration