diff -Nru kdevelop-python-5.3.1/app_templates/django_project/django_project.kdevtemplate kdevelop-python-5.3.2/app_templates/django_project/django_project.kdevtemplate --- kdevelop-python-5.3.1/app_templates/django_project/django_project.kdevtemplate 2018-12-06 09:52:07.000000000 +0000 +++ kdevelop-python-5.3.2/app_templates/django_project/django_project.kdevtemplate 2019-03-07 07:07:44.000000000 +0000 @@ -14,6 +14,7 @@ Name[pl]=Django 1.11 Name[pt]=Django 1.11 Name[pt_BR]=Django 1.11 +Name[ru]=Django 1.11 Name[sk]=Django 1.11 Name[sv]=Django 1.11 Name[tr]=Django 1.11 @@ -40,6 +41,6 @@ Comment[tr]=Uygulama ile birlikte bir Django projesi Comment[uk]=Проект Django із однією програмою Comment[x-test]=xxA Django project with one applicationxx -Comment[zh_CN]=有一个应用的 Django 工程 +Comment[zh_CN]=有一个应用的 Django 项目 Comment[zh_TW]=包含一個應用程式的 Django 專案 ShowFilesAfterGeneration=%{PROJECTDIR}/%{APPNAMELC}/urls.py diff -Nru kdevelop-python-5.3.1/CMakeLists.txt kdevelop-python-5.3.2/CMakeLists.txt --- kdevelop-python-5.3.1/CMakeLists.txt 2018-12-06 09:52:32.000000000 +0000 +++ kdevelop-python-5.3.2/CMakeLists.txt 2019-03-07 07:07:54.000000000 +0000 @@ -4,7 +4,7 @@ # write the plugin version to a file set(KDEVPYTHON_VERSION_MAJOR 5) set(KDEVPYTHON_VERSION_MINOR 3) -set(KDEVPYTHON_VERSION_PATCH 1) +set(KDEVPYTHON_VERSION_PATCH 2) # KDevplatform dependency version set( KDEVPLATFORM_VERSION "${KDEVPYTHON_VERSION_MAJOR}.${KDEVPYTHON_VERSION_MINOR}" ) diff -Nru kdevelop-python-5.3.1/debian/changelog kdevelop-python-5.3.2/debian/changelog --- kdevelop-python-5.3.1/debian/changelog 2018-12-20 21:40:02.000000000 +0000 +++ kdevelop-python-5.3.2/debian/changelog 2019-03-10 21:01:40.000000000 +0000 @@ -1,3 +1,9 @@ +kdevelop-python (5.3.2-0ubuntu1) disco; urgency=medium + + * New upstream bugfix release (5.3.2). + + -- Rik Mills Sun, 10 Mar 2019 21:01:40 +0000 + kdevelop-python (5.3.1-2) unstable; urgency=medium * Upload to unstable. diff -Nru kdevelop-python-5.3.1/debian/control kdevelop-python-5.3.2/debian/control --- kdevelop-python-5.3.1/debian/control 2018-12-20 21:38:58.000000000 +0000 +++ kdevelop-python-5.3.2/debian/control 2019-03-10 21:01:40.000000000 +0000 @@ -14,7 +14,7 @@ libkf5newstuff-dev (>= 5.15.0), libkf5texteditor-dev (>= 5.15.0), libkf5threadweaver-dev (>= 5.15.0), - kdevelop-dev (>= 4:5.3.1), + kdevelop-dev (>= 4:5.3.2), pkg-kde-tools (>= 0.15.16), python3.7-dev, Standards-Version: 4.2.1 diff -Nru kdevelop-python-5.3.1/debugger/kdevpdb.json kdevelop-python-5.3.2/debugger/kdevpdb.json --- kdevelop-python-5.3.1/debugger/kdevpdb.json 2018-12-06 09:52:07.000000000 +0000 +++ kdevelop-python-5.3.2/debugger/kdevpdb.json 2019-03-07 07:07:44.000000000 +0000 @@ -66,6 +66,7 @@ "Name[en_GB]": "Python Debugger (PDB) support", "Name[es]": "Implementación del depurador Python (PDB)", "Name[fr]": "Prise en charge du débogueur Python (pdb)", + "Name[gl]": "Compatibilidade co depurador de Python (PDB)", "Name[it]": "Supporto al debugger di Python (PDB)", "Name[nl]": "Ondersteuning voor Python-debugger", "Name[pl]": "Obsługa debuggera (PDB) Python", diff -Nru kdevelop-python-5.3.1/duchain/declarationbuilder.cpp kdevelop-python-5.3.2/duchain/declarationbuilder.cpp --- kdevelop-python-5.3.1/duchain/declarationbuilder.cpp 2018-12-06 09:52:07.000000000 +0000 +++ kdevelop-python-5.3.2/duchain/declarationbuilder.cpp 2019-03-07 07:07:44.000000000 +0000 @@ -1345,6 +1345,8 @@ } void DeclarationBuilder::visitAnnotationAssignment(AnnotationAssignmentAst* node) { + AstDefaultVisitor::visitAnnotationAssignment(node); + ExpressionVisitor v(currentContext()); v.visitNode(node->target); v.visitNode(node->value); diff -Nru kdevelop-python-5.3.1/duchain/tests/pyduchaintest.cpp kdevelop-python-5.3.2/duchain/tests/pyduchaintest.cpp --- kdevelop-python-5.3.1/duchain/tests/pyduchaintest.cpp 2018-12-06 09:52:07.000000000 +0000 +++ kdevelop-python-5.3.2/duchain/tests/pyduchaintest.cpp 2019-03-07 07:07:44.000000000 +0000 @@ -443,6 +443,10 @@ "def crash(): return f'expr={ {x: y for x, y in [(1, 2), ]}}'"; #endif QTest::newRow("comprehension_in_lambda") << "lambda foo: [bar for bar in foo]"; + QTest::newRow("comprehension_in_annassign_1") << "foo: int = [x for x in (42,)][0]"; + QTest::newRow("comprehension_in_annassign_2") << "foo: [t for t in (int,)][0] = 42"; + QTest::newRow("lambda_in_annassign_1") << "foo: int = (lambda: 42)()"; + QTest::newRow("lambda_in_annassign_2") << "foo: (lambda: int)() = 42"; QTest::newRow("definition_in_baseclass_1") << "class Foo(lambda x: 1): pass"; QTest::newRow("definition_in_baseclass_2") << "class Foo([x for x in (1, 2)]): pass"; } diff -Nru kdevelop-python-5.3.1/org.kde.kdev-python.metainfo.xml kdevelop-python-5.3.2/org.kde.kdev-python.metainfo.xml --- kdevelop-python-5.3.1/org.kde.kdev-python.metainfo.xml 2018-12-06 09:52:07.000000000 +0000 +++ kdevelop-python-5.3.2/org.kde.kdev-python.metainfo.xml 2019-03-07 07:07:44.000000000 +0000 @@ -20,6 +20,7 @@ KDevelop Python-stöd Підтримка Python у KDevelop xxKDevelop Python Supportxx + KDevelop Python 支持 KDevelop Python 支援 Python language support for KDevelop Implementació del llenguatge Python al KDevelop diff -Nru kdevelop-python-5.3.1/po/ast/kdevpython.po kdevelop-python-5.3.2/po/ast/kdevpython.po --- kdevelop-python-5.3.1/po/ast/kdevpython.po 2018-12-06 09:52:17.000000000 +0000 +++ kdevelop-python-5.3.2/po/ast/kdevpython.po 2019-03-07 07:07:48.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2015-04-06 02:22+0100\n" "Last-Translator: enolp \n" "Language-Team: Asturian \n" @@ -418,23 +418,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "" diff -Nru kdevelop-python-5.3.1/po/bs/kdevpython.po kdevelop-python-5.3.2/po/bs/kdevpython.po --- kdevelop-python-5.3.1/po/bs/kdevpython.po 2018-12-06 09:52:19.000000000 +0000 +++ kdevelop-python-5.3.2/po/bs/kdevpython.po 2019-03-07 07:07:49.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: desktop files\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2014-11-27 13:41+0000\n" "Last-Translator: Mirza Bulbulusic \n" "Language-Team: bs \n" @@ -463,23 +463,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Deklaracija \"%1\" nije pronađena u naznačenom modulu" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "Prvi argument od __new__ metode se ne zove cls, to nije dozvoljeno" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "Prvi argument metode klase se ne naziva self, taj naziv je zastario" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "Nestatična metoda klase bez argumenata, mora imati barem jedan (self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Naredba povratka bez deklaracije funkcije" diff -Nru kdevelop-python-5.3.1/po/ca/kdevpython.po kdevelop-python-5.3.2/po/ca/kdevpython.po --- kdevelop-python-5.3.1/po/ca/kdevpython.po 2018-12-06 09:52:19.000000000 +0000 +++ kdevelop-python-5.3.2/po/ca/kdevpython.po 2019-03-07 07:07:49.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-12-08 19:54+0100\n" "Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" @@ -446,20 +446,20 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "No s'ha trobat la declaració per a «%1» en el mòdul especificat" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "El primer argument del mètode __new__ no s'anomena «cls», es desaconsella" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "El primer argument del mètode de la classe no es crida a si mateix, es " "desaconsella" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" @@ -467,7 +467,7 @@ "Mètode de classe no estàtic sense arguments. Com a mínim n'ha de contenir un " "(a si mateix)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "La sentència retornada no està present a la declaració de la funció" diff -Nru kdevelop-python-5.3.1/po/ca@valencia/kdevpython.po kdevelop-python-5.3.2/po/ca@valencia/kdevpython.po --- kdevelop-python-5.3.1/po/ca@valencia/kdevpython.po 2018-12-06 09:52:19.000000000 +0000 +++ kdevelop-python-5.3.2/po/ca@valencia/kdevpython.po 2019-03-07 07:07:49.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-12-08 19:54+0100\n" "Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" @@ -446,20 +446,20 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "No s'ha trobat la declaració per a «%1» en el mòdul especificat" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "El primer argument del mètode __new__ no s'anomena «cls», es desaconsella" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "El primer argument del mètode de la classe no es crida a si mateix, es " "desaconsella" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" @@ -467,7 +467,7 @@ "Mètode de classe no estàtic sense arguments. Com a mínim n'ha de contindre " "un (a si mateix)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "La sentència retornada no està present a la declaració de la funció" diff -Nru kdevelop-python-5.3.1/po/cs/kdevpython.po kdevelop-python-5.3.2/po/cs/kdevpython.po --- kdevelop-python-5.3.1/po/cs/kdevpython.po 2018-12-06 09:52:19.000000000 +0000 +++ kdevelop-python-5.3.2/po/cs/kdevpython.po 2019-03-07 07:07:49.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-08-03 13:58+0100\n" "Last-Translator: Vít Pelčák \n" "Language-Team: Czech \n" @@ -418,23 +418,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "" diff -Nru kdevelop-python-5.3.1/po/da/kdevpython.po kdevelop-python-5.3.2/po/da/kdevpython.po --- kdevelop-python-5.3.1/po/da/kdevpython.po 2018-12-06 09:52:19.000000000 +0000 +++ kdevelop-python-5.3.2/po/da/kdevpython.po 2019-03-07 07:07:49.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2014-02-23 14:14+0100\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -458,26 +458,26 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Erklæringen for \"%1\" blev ikke fundet i det angivne modul" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "Første argument i en __ny__ metode kaldes ikke cls, dette bør ikke bruges " "mere" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "Klassemetodes første argument kaldes ikke self, dette bør ikke bruges mere" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "Ikke-statisk klassemetode uden argumenter, skal have mindst en (self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Return-sætning ikke indenfor funktionserklæring" diff -Nru kdevelop-python-5.3.1/po/de/kdevpython.po kdevelop-python-5.3.2/po/de/kdevpython.po --- kdevelop-python-5.3.1/po/de/kdevpython.po 2018-12-06 09:52:19.000000000 +0000 +++ kdevelop-python-5.3.2/po/de/kdevpython.po 2019-03-07 07:07:49.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-11-26 17:10+0100\n" "Last-Translator: Burkhard Lück \n" "Language-Team: German \n" @@ -450,20 +450,20 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Die Deklaration für „%1“ wurde im angegebenen Modul nicht gefunden" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "Das erste Argument der Methode „__new__“ heißt nicht „cls“. Dies ist " "veraltet." -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "Das erste Argument der Klassenmethode heißt nicht „self“. Dies ist veraltet." -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" @@ -471,7 +471,7 @@ "Nichtstatische Klassenmethode ohne Argumente. Es muss mindestens eines " "verwendet werden („self“)." -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Return-Anweisung nicht innerhalb der Funktionsdeklaration" diff -Nru kdevelop-python-5.3.1/po/en_GB/kdevpython.po kdevelop-python-5.3.2/po/en_GB/kdevpython.po --- kdevelop-python-5.3.1/po/en_GB/kdevpython.po 2018-12-06 09:52:20.000000000 +0000 +++ kdevelop-python-5.3.2/po/en_GB/kdevpython.po 2019-03-07 07:07:49.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-11-26 20:49+0000\n" "Last-Translator: Steve Allewell \n" "Language-Team: British English \n" @@ -434,24 +434,24 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Declaration for \"%1\" not found in specified module" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "First argument of __new__ method is not called cls, this is deprecated" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "First argument of class method is not called self, this is deprecated" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" "Non-static class method without arguments, must have at least one (self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Return statement not within function declaration" diff -Nru kdevelop-python-5.3.1/po/eo/kdevpython.po kdevelop-python-5.3.2/po/eo/kdevpython.po --- kdevelop-python-5.3.1/po/eo/kdevpython.po 2018-12-06 09:52:20.000000000 +0000 +++ kdevelop-python-5.3.2/po/eo/kdevpython.po 2019-03-07 07:07:49.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2009-11-15 12:06+0100\n" "Last-Translator: Axel Rousseau \n" "Language-Team: esperanto \n" @@ -417,23 +417,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "" diff -Nru kdevelop-python-5.3.1/po/es/kdevpython.po kdevelop-python-5.3.2/po/es/kdevpython.po --- kdevelop-python-5.3.1/po/es/kdevpython.po 2018-12-06 09:52:20.000000000 +0000 +++ kdevelop-python-5.3.2/po/es/kdevpython.po 2019-03-07 07:07:49.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-08-29 20:27+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" @@ -446,28 +446,28 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Declaración para «%1» no encontrada en el módulo especificado" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "El primer argumento del método __new__ no se llama «cls», lo que está " "desaconsejado" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "El primer argumento del método de la clase no se llama «self», lo que está " "desaconsejado" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" "Método de clase no estático sin argumentos; debe tener al menos uno (self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "La sentencia de retorno no está dentro de la declaración de la función" diff -Nru kdevelop-python-5.3.1/po/et/kdevpython.po kdevelop-python-5.3.2/po/et/kdevpython.po --- kdevelop-python-5.3.1/po/et/kdevpython.po 2018-12-06 09:52:20.000000000 +0000 +++ kdevelop-python-5.3.2/po/et/kdevpython.po 2019-03-07 07:07:49.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2016-07-30 21:39+0300\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -440,17 +440,17 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "\"%1\" deklaratsiooni määratud moodulis ei leitud" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "__new__ meetodi esimeseks argumendiks ei ole cls, see on iganenud" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "Klassi meetodi esimeseks argumendiks ei ole self, see on iganenud" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" @@ -458,7 +458,7 @@ "Mittestaatiline klassi meetod ilma argumentidega, peab olema vähemalt üks " "(self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Funktsiooni deklaratsioonis mitteleiduva lause tagastamine" diff -Nru kdevelop-python-5.3.1/po/fi/kdevpython.po kdevelop-python-5.3.2/po/fi/kdevpython.po --- kdevelop-python-5.3.1/po/fi/kdevpython.po 2018-12-06 09:52:20.000000000 +0000 +++ kdevelop-python-5.3.2/po/fi/kdevpython.po 2019-03-07 07:07:50.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2018-08-19 17:06+0200\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \n" @@ -434,21 +434,21 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Esittelyä ”%1” ei löydy määrämoduulista" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "__new__-metodin ensimmäinen parametri ei ole nimeltään cls. Tämä on " "vanhentunut ominaisuus" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "Luokkametodin ensimmäinen parametri ei ole nimeltään self. Tämä on " "vanhentunut ominaisuus" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" @@ -456,7 +456,7 @@ "Ei-staattinen luokkametodi ilman parametreja. Niitä täytyy olla ainakin yksi " "(self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Return-lause ei ole funktioesittelyn sisällä" diff -Nru kdevelop-python-5.3.1/po/fr/kdevpython.po kdevelop-python-5.3.2/po/fr/kdevpython.po --- kdevelop-python-5.3.1/po/fr/kdevpython.po 2018-12-06 09:52:20.000000000 +0000 +++ kdevelop-python-5.3.2/po/fr/kdevpython.po 2019-03-07 07:07:50.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2018-02-11 15:21+0100\n" "Last-Translator: Thomas Vergnaud \n" "Language-Team: French \n" @@ -461,21 +461,21 @@ msgstr "" "Impossible de trouver la déclaration pour « %1 » dans le module spécifié" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "Le premier argument de la méthode __new__ n'est pas appelé cls. Cette " "utilisation est déconseillée" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "Le premier argument de la méthode de classe n'est pas appelé lui-même. Cette " "utilisation est déconseillée" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" @@ -483,7 +483,7 @@ "Méthode de classe non statique sans argument. Elle doit en comporter au " "moins un (lui-même)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Instruction de retour non présente dans la déclaration de fonction" diff -Nru kdevelop-python-5.3.1/po/ga/kdevpython.po kdevelop-python-5.3.2/po/ga/kdevpython.po --- kdevelop-python-5.3.1/po/ga/kdevpython.po 2018-12-06 09:52:21.000000000 +0000 +++ kdevelop-python-5.3.2/po/ga/kdevpython.po 2019-03-07 07:07:50.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2012-12-07 20:23-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -418,23 +418,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "" diff -Nru kdevelop-python-5.3.1/po/gl/kdevpython.po kdevelop-python-5.3.2/po/gl/kdevpython.po --- kdevelop-python-5.3.1/po/gl/kdevpython.po 2018-12-06 09:52:21.000000000 +0000 +++ kdevelop-python-5.3.2/po/gl/kdevpython.po 2019-03-07 07:07:50.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2018-04-18 20:09+0100\n" "Last-Translator: Adrian Chaves \n" "Language-Team: Galician \n" @@ -446,21 +446,21 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Non se atopou a declaración de «%1» no módulo indicado." -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "O primeiro argumento do método __new__ non se chama «cls», iso está " "obsoleto." -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "O primeiro argumento do método da clase non se chama «self», iso está " "obsoleto." -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" @@ -468,7 +468,7 @@ "Método non estático dunha clase sen argumentos; debe ter polo menos un: " "«self»." -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "A instrución de devolución non está dentro da declaración da función." diff -Nru kdevelop-python-5.3.1/po/hu/kdevpython.po kdevelop-python-5.3.2/po/hu/kdevpython.po --- kdevelop-python-5.3.1/po/hu/kdevpython.po 2018-12-06 09:52:23.000000000 +0000 +++ kdevelop-python-5.3.2/po/hu/kdevpython.po 2019-03-07 07:07:51.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2014-01-20 20:24+0100\n" "Last-Translator: Balázs Úr \n" "Language-Team: Hungarian \n" @@ -427,23 +427,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Deklaráció nem található a megadott modulban ehhez: „%1”" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "" diff -Nru kdevelop-python-5.3.1/po/it/kdevpython.po kdevelop-python-5.3.2/po/it/kdevpython.po --- kdevelop-python-5.3.1/po/it/kdevpython.po 2018-12-06 09:52:24.000000000 +0000 +++ kdevelop-python-5.3.2/po/it/kdevpython.po 2019-03-07 07:07:51.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-06-20 01:16+0100\n" "Last-Translator: Luigi Toscano \n" "Language-Team: Italian \n" @@ -442,27 +442,27 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Dichiarazione per «%1» non trovata nel modulo specificato" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "Il primo argomento del metodo __new__ non è chiamato cls, questo è deprecato" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "Il primo argomento del metodo di classe non è chiamato self, questo è " "deprecato" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" "Metodo di classe non statico senza argomenti, deve averne almeno uno (self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Istruzione di ritorno non all'interno della dichiarazione di funzione" diff -Nru kdevelop-python-5.3.1/po/ja/kdevpython.po kdevelop-python-5.3.2/po/ja/kdevpython.po --- kdevelop-python-5.3.1/po/ja/kdevpython.po 2018-12-06 09:52:24.000000000 +0000 +++ kdevelop-python-5.3.2/po/ja/kdevpython.po 2019-03-07 07:07:51.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2009-01-26 21:02+0900\n" "Last-Translator: Japanese KDE translation team \n" "Language-Team: Japanese \n" @@ -415,23 +415,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "" diff -Nru kdevelop-python-5.3.1/po/kk/kdevpython.po kdevelop-python-5.3.2/po/kk/kdevpython.po --- kdevelop-python-5.3.1/po/kk/kdevpython.po 2018-12-06 09:52:24.000000000 +0000 +++ kdevelop-python-5.3.2/po/kk/kdevpython.po 2019-03-07 07:07:51.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2013-11-15 05:35+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -456,7 +456,7 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Келтірілген модулінде \"%1\" үшін мәлімдеме жоқ" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, fuzzy, kde-format #| msgid "" #| "First argument of class method is not called self, this is deprecated" @@ -465,20 +465,20 @@ "Клас әдісінің бірінші аргументі өзі бөлек (self) шақырылмады. Ол ескірген " "тәсіл." -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "Клас әдісінің бірінші аргументі өзі бөлек (self) шақырылмады. Ол ескірген " "тәсіл." -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "Статикалық емес әдіс аргументсіз, кемінде біреуі (self) болу тиіс" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Return нұсқасы функция мәлімдемеден тыс жерде" diff -Nru kdevelop-python-5.3.1/po/ko/kdevpython.po kdevelop-python-5.3.2/po/ko/kdevpython.po --- kdevelop-python-5.3.1/po/ko/kdevpython.po 2018-12-06 09:52:24.000000000 +0000 +++ kdevelop-python-5.3.2/po/ko/kdevpython.po 2019-03-07 07:07:51.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: kdevelop\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2015-01-17 23:41+0900\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" @@ -416,23 +416,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "" diff -Nru kdevelop-python-5.3.1/po/lt/kdevpython.po kdevelop-python-5.3.2/po/lt/kdevpython.po --- kdevelop-python-5.3.1/po/lt/kdevpython.po 2018-12-06 09:52:24.000000000 +0000 +++ kdevelop-python-5.3.2/po/lt/kdevpython.po 2019-03-07 07:07:51.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2009-01-25 22:33+0200\n" "Last-Translator: Andrius Štikonas \n" "Language-Team: Lithuanian \n" @@ -419,23 +419,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "" diff -Nru kdevelop-python-5.3.1/po/mai/kdevpython.po kdevelop-python-5.3.2/po/mai/kdevpython.po --- kdevelop-python-5.3.1/po/mai/kdevpython.po 2018-12-06 09:52:25.000000000 +0000 +++ kdevelop-python-5.3.2/po/mai/kdevpython.po 2019-03-07 07:07:51.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2010-09-24 13:22+0530\n" "Last-Translator: Rajesh Ranjan \n" "Language-Team: Maithili \n" @@ -419,23 +419,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "" diff -Nru kdevelop-python-5.3.1/po/mr/kdevpython.po kdevelop-python-5.3.2/po/mr/kdevpython.po --- kdevelop-python-5.3.1/po/mr/kdevpython.po 2018-12-06 09:52:25.000000000 +0000 +++ kdevelop-python-5.3.2/po/mr/kdevpython.po 2019-03-07 07:07:51.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2013-03-09 15:00+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" @@ -418,23 +418,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "" diff -Nru kdevelop-python-5.3.1/po/nds/kdevpython.po kdevelop-python-5.3.2/po/nds/kdevpython.po --- kdevelop-python-5.3.1/po/nds/kdevpython.po 2018-12-06 09:52:26.000000000 +0000 +++ kdevelop-python-5.3.2/po/nds/kdevpython.po 2019-03-07 07:07:52.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2014-03-17 18:44+0100\n" "Last-Translator: Manfred Wiese \n" "Language-Team: Low Saxon \n" @@ -425,23 +425,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Deklaratschoon för \"%1\" nich binnen angeven Moduul funnen" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "" diff -Nru kdevelop-python-5.3.1/po/nl/kdevpython.po kdevelop-python-5.3.2/po/nl/kdevpython.po --- kdevelop-python-5.3.1/po/nl/kdevpython.po 2018-12-06 09:52:27.000000000 +0000 +++ kdevelop-python-5.3.2/po/nl/kdevpython.po 2019-03-07 07:07:52.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-08-29 12:47+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" @@ -438,19 +438,19 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Declaratie voor \"%1\" niet gevonden in de gespecificeerde module" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "Eerste argument van __new__ methode heeft geen naam cls, dit is verouderd" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "Eerste argument van klasse methode is niet zelf aangeroepen, dit is verouderd" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" @@ -458,7 +458,7 @@ "Niet-statische klasse methode zonder argumenten, moet er minstens één hebben " "(zichzelf)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Return-statement niet in de functiedeclaratie" diff -Nru kdevelop-python-5.3.1/po/pl/kdevpython.po kdevelop-python-5.3.2/po/pl/kdevpython.po --- kdevelop-python-5.3.1/po/pl/kdevpython.po 2018-12-06 09:52:28.000000000 +0000 +++ kdevelop-python-5.3.2/po/pl/kdevpython.po 2019-03-07 07:07:52.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-09-03 08:37+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" @@ -441,26 +441,26 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Nie znaleziono deklaracji dla \"%1\" w podanym module" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "Pierwszy argument metody __new__ nie jest nazywany cls, jest to przestarzałe" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "Pierwszy argument metody klasy nie jest nazywany self, jest to przestarzałe" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" "Niestatyczna metoda klasy bez argumentów, musi mieć co najmniej jedno (self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Instrukcja powrotu nie jest wewnątrz deklaracji funkcji" diff -Nru kdevelop-python-5.3.1/po/pt/kdevpython.po kdevelop-python-5.3.2/po/pt/kdevpython.po --- kdevelop-python-5.3.1/po/pt/kdevpython.po 2018-12-06 09:52:28.000000000 +0000 +++ kdevelop-python-5.3.2/po/pt/kdevpython.po 2019-03-07 07:07:52.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-08-29 10:56+0100\n" "Last-Translator: José Nuno Coelho Pires \n" "Language-Team: Portuguese \n" @@ -441,21 +441,21 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "A declaração de \"%1\" não foi encontrada no módulo indicado" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "O primeiro argumento do método __new__ da classe não se chama 'cls'; isso " "está descontinuado" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "O primeiro argumento do método da classe não se chama 'self'; isso está " "descontinuado" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" @@ -463,7 +463,7 @@ "Um método da classe não estático e sem argumentos deverá ter pelo menos um " "(o 'self')" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "A instrução 'return' está fora de uma declaração de função" diff -Nru kdevelop-python-5.3.1/po/pt_BR/kdevpython.po kdevelop-python-5.3.2/po/pt_BR/kdevpython.po --- kdevelop-python-5.3.1/po/pt_BR/kdevpython.po 2018-12-06 09:52:28.000000000 +0000 +++ kdevelop-python-5.3.2/po/pt_BR/kdevpython.po 2019-03-07 07:07:52.000000000 +0000 @@ -3,20 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # André Marcelo Alvarenga , 2013, 2014, 2015, 2016. +# Luiz Fernando Ranghetti , 2019. msgid "" msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" -"PO-Revision-Date: 2016-03-06 14:32-0300\n" -"Last-Translator: André Marcelo Alvarenga \n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" +"PO-Revision-Date: 2019-02-05 16:05-0200\n" +"Last-Translator: Luiz Fernando Ranghetti \n" +"Language-Team: Portuguese \n" "Language: pt_BR\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 2.0\n" +"X-Generator: Lokalize 18.12.1\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -249,8 +250,7 @@ msgstr "Gerar..." #: docfilekcm/docfilemanagerwidget.cpp:70 -#, fuzzy, kde-format -#| msgid "Import from editor" +#, kde-format msgid "Import From Editor" msgstr "Importar do editor" @@ -264,22 +264,18 @@ "documentação" #: docfilekcm/docfilemanagerwidget.cpp:83 -#, fuzzy, kde-format -#| msgid "Open file manager" +#, kde-format msgid "Open File Manager" msgstr "Abrir o gerenciador de arquivos" #: docfilekcm/docfilemanagerwidget.cpp:85 -#, fuzzy, kde-format -#| msgctxt "Edit selected files" -#| msgid "Edit selected" +#, kde-format msgctxt "Edit selected files" msgid "Edit Selected" msgstr "Editar selecionados" #: docfilekcm/docfilemanagerwidget.cpp:87 -#, fuzzy, kde-format -#| msgid "Search paths..." +#, kde-format msgid "Search Paths..." msgstr "Locais de pesquisa..." @@ -424,8 +420,7 @@ "não sejam sobrescritas pela nova geração do arquivo.\n" #: docfilekcm/kcm_docfiles.cpp:61 -#, fuzzy, kde-format -#| msgid "Manage documentation files used by the Python plugin" +#, kde-format msgid "Manage Documentation Files Used by the Python Plugin" msgstr "Gerencia os arquivos de documentação usados pelo plugin de Python" @@ -449,21 +444,21 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "A declaração para \"%1\" não foi encontrada no módulo específico" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "O primeiro argumento do método __new__ não se chama 'cls', pois isto foi " "descontinuado" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "O primeiro argumento do método da classe não se chama 'self', pois isto foi " "descontinuado" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" @@ -471,7 +466,7 @@ "Um método da classe não estático e sem argumentos deverá ter pelo menos um " "(self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "A instrução 'return' está fora de uma declaração de função" @@ -525,8 +520,7 @@ msgstr "O atributo \"%1\" não foi encontrado no objeto acessado" #: pep8kcm/kcm_pep8.cpp:76 -#, fuzzy, kde-format -#| msgid "Configure Python style checking" +#, kde-format msgid "Configure Python Style Checking" msgstr "Configurar a verificação do estilo do Python" @@ -537,36 +531,34 @@ #. i18n: ectx: property (title), widget (QGroupBox, enableChecking) #: pep8kcm/pep8.ui:29 -#, fuzzy, kde-format -#| msgid "Enable PEP8 checking:" +#, kde-format msgid "Enable Style Checking" -msgstr "Ativar a verificação do PEP8:" +msgstr "Ativar a verificação de estilo" #. i18n: ectx: property (placeholderText), widget (QLineEdit, disableErrors) #. i18n: ectx: property (placeholderText), widget (QLineEdit, enableErrors) #: pep8kcm/pep8.ui:44 pep8kcm/pep8.ui:58 -#, fuzzy, kde-format -#| msgid "A comma separated list of modules required for the type" +#, kde-format msgid "Comma-separated list of error codes" -msgstr "Uma lista separada por vírgulas, de módulos necessários para o tipo" +msgstr "Uma lista separada por vírgulas dos códigos de erro" #. i18n: ectx: property (text), widget (QLabel, label_2) #: pep8kcm/pep8.ui:51 #, kde-format msgid "Enable these errors and warnings:" -msgstr "" +msgstr "Habilitar estes erros e avisos:" #. i18n: ectx: property (text), widget (QLabel, label_3) #: pep8kcm/pep8.ui:65 #, kde-format msgid "Maximum line length:" -msgstr "" +msgstr "Comprimento máximo da linha:" #. i18n: ectx: property (text), widget (QLabel, label) #: pep8kcm/pep8.ui:88 #, kde-format msgid "Disable these errors and warnings:" -msgstr "" +msgstr "Desabilitar estes erros e avisos:" #. i18n: ectx: property (text), widget (QLabel, label_4) #: pep8kcm/pep8.ui:100 @@ -575,25 +567,26 @@ "The `pycodestyle` Python module must be installed in order to use style " "checking." msgstr "" +"O módulo Python `pycodestyle` deve ser instalado para poder usar a " +"verificação de estilo." #. i18n: ectx: property (text), widget (QLabel, label) #: projectconfig/projectconfig.ui:19 -#, fuzzy, kde-format -#| msgid "Unsupported interpreter" +#, kde-format msgid "Python interpreter:" -msgstr "Interpretador não suportado" +msgstr "Interpretador Python:" #. i18n: ectx: property (placeholderText), widget (QLineEdit, pythonInterpreter) #: projectconfig/projectconfig.ui:26 #, kde-format msgid "Full path to python interpreter, leave empty for default" msgstr "" +"Caminho completo para o interpretador Python, deixe vazio para usar o padrão" #: projectconfig/projectconfigpage.cpp:56 -#, fuzzy, kde-format -#| msgid "Python Documentation" +#, kde-format msgid "Python Settings" -msgstr "Documentação do Python" +msgstr "Configurações do Python" #: pythonlanguagesupport.cpp:152 #, kde-format @@ -606,10 +599,6 @@ msgstr "Erro de verificação do PEP8: %1" #: pythonstylechecking.cpp:206 -#, fuzzy, kde-format -#| msgid "" -#| "The selected PEP8 syntax checker \"%1\" does not seem to work correctly." +#, kde-format msgid "The PEP8 syntax checker does not seem to work correctly." -msgstr "" -"O analisador de sintaxe PEP8 selecionado \"%1\" parece não funcionar " -"corretamente." \ No newline at end of file +msgstr "O analisador de sintaxe PEP8 parece não funcionar corretamente." \ No newline at end of file diff -Nru kdevelop-python-5.3.1/po/ro/kdevpython.po kdevelop-python-5.3.2/po/ro/kdevpython.po --- kdevelop-python-5.3.1/po/ro/kdevpython.po 2018-12-06 09:52:29.000000000 +0000 +++ kdevelop-python-5.3.2/po/ro/kdevpython.po 2019-03-07 07:07:53.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2012-12-21 03:14+0200\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -420,23 +420,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "" diff -Nru kdevelop-python-5.3.1/po/ru/kdevpython.po kdevelop-python-5.3.2/po/ru/kdevpython.po --- kdevelop-python-5.3.1/po/ru/kdevpython.po 2018-12-06 09:52:29.000000000 +0000 +++ kdevelop-python-5.3.2/po/ru/kdevpython.po 2019-03-07 07:07:53.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2013-08-24 12:25+0400\n" "Last-Translator: Alexander Lakhin \n" "Language-Team: Russian \n" @@ -460,19 +460,19 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Объявление «%1» не найдено в указанном модуле" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, fuzzy, kde-format #| msgid "" #| "First argument of class method is not called self, this is deprecated" msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "Первый аргумент метода класса называется не self — эта запись устарела" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "Первый аргумент метода класса называется не self — эта запись устарела" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" @@ -480,7 +480,7 @@ "Не статический метод класса не имеет аргументов, а должен иметь минимум один " "(self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Оператор return вне объявления функции" diff -Nru kdevelop-python-5.3.1/po/sk/kdevpython.po kdevelop-python-5.3.2/po/sk/kdevpython.po --- kdevelop-python-5.3.1/po/sk/kdevpython.po 2018-12-06 09:52:30.000000000 +0000 +++ kdevelop-python-5.3.2/po/sk/kdevpython.po 2019-03-07 07:07:53.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-09-03 21:29+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" @@ -432,23 +432,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Deklarácia pre \"%1\" nenájdená v určenom module" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "Prvý argument metódy __new__ nie je volaný cls, čo je zastaralé" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "Prvý argument metódy triedy nie je volaný sám, čo je zastaralé" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "Nestatická metóda triedy bez argumentov, musí mať aspoň jednu (self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Návratové vyhlásenie nie je v deklarácii funkcie" diff -Nru kdevelop-python-5.3.1/po/sl/kdevpython.po kdevelop-python-5.3.2/po/sl/kdevpython.po --- kdevelop-python-5.3.1/po/sl/kdevpython.po 2018-12-06 09:52:30.000000000 +0000 +++ kdevelop-python-5.3.2/po/sl/kdevpython.po 2019-03-07 07:07:53.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-03-24 21:11+0100\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" @@ -439,24 +439,24 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Deklaracija za \"%1\" ni bila najdena v podanem modulu" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "Prvi argument metode __new__ se ne imenuje cls, to je opuščeno." -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "Prvi argument metode razreda se ne imenuje self, to je opuščeno." -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" "Ne-statična metoda razreda brez argumentov mora imeti vsaj enega (self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Vrnitvena izjava ni znotraj deklaracije funkcije" diff -Nru kdevelop-python-5.3.1/po/sv/kdevpython.po kdevelop-python-5.3.2/po/sv/kdevpython.po --- kdevelop-python-5.3.1/po/sv/kdevpython.po 2018-12-06 09:52:30.000000000 +0000 +++ kdevelop-python-5.3.2/po/sv/kdevpython.po 2019-03-07 07:07:53.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-06-08 17:32+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" @@ -438,24 +438,24 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Deklaration av \"%1\" hittades inte i angiven modul" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "Första argumentet i metoden __new__ kallas inte cls, det avråds från" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "Första argumentet i en klassmetod kallas inte self, det avråds från" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" "Icke-statisk klassmetod utan argument, det måste finnas minst ett (self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Retursats utanför funktionsdeklaration" diff -Nru kdevelop-python-5.3.1/po/th/kdevpython.po kdevelop-python-5.3.2/po/th/kdevpython.po --- kdevelop-python-5.3.1/po/th/kdevpython.po 2018-12-06 09:52:31.000000000 +0000 +++ kdevelop-python-5.3.2/po/th/kdevpython.po 2019-03-07 07:07:54.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2009-01-25 08:34+0700\n" "Last-Translator: Narachai Sakorn \n" "Language-Team: Thai \n" @@ -420,23 +420,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "" diff -Nru kdevelop-python-5.3.1/po/tr/kdevpython.po kdevelop-python-5.3.2/po/tr/kdevpython.po --- kdevelop-python-5.3.1/po/tr/kdevpython.po 2018-12-06 09:52:31.000000000 +0000 +++ kdevelop-python-5.3.2/po/tr/kdevpython.po 2019-03-07 07:07:54.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: extragear-kdevelop-kde4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-08-13 05:54+0000\n" "Last-Translator: Kaan \n" "Language-Team: Turkish \n" @@ -440,27 +440,27 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "Belirtilen modülde \"%1\" bildirimi bulunamadı" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "__new__method metodunun ilk değişkeni cls 'yi çağırmıyor, kullanımdan " "çıkarılmış" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "class metodunun ilk değişkeni kendisini çağırmıyor, kullanımdan çıkarılmış" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" "Değişkensiz statik olmayan sınıf metodu, en az bir taneye (self) sahip olmalı" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Dönüş ifadesi fonksiyon bildirimi içinde değil" diff -Nru kdevelop-python-5.3.1/po/ug/kdevpython.po kdevelop-python-5.3.2/po/ug/kdevpython.po --- kdevelop-python-5.3.1/po/ug/kdevpython.po 2018-12-06 09:52:32.000000000 +0000 +++ kdevelop-python-5.3.2/po/ug/kdevpython.po 2019-03-07 07:07:54.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2013-09-08 07:04+0900\n" "Last-Translator: Gheyret Kenji \n" "Language-Team: Uyghur Computer Science Association \n" @@ -418,23 +418,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "" diff -Nru kdevelop-python-5.3.1/po/uk/kdevpython.po kdevelop-python-5.3.2/po/uk/kdevpython.po --- kdevelop-python-5.3.1/po/uk/kdevpython.po 2018-12-06 09:52:32.000000000 +0000 +++ kdevelop-python-5.3.2/po/uk/kdevpython.po 2019-03-07 07:07:54.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2017-08-29 20:43+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -449,21 +449,21 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "У вказаному модулі не знайдено оголошення «%1»" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "" "Перший аргумент методу __new__ не названо cls. Такий варіант коду вважається " "застарілим." -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "" "Перший аргумент методу класу не викликається автономно (self), такі " "синтаксичні конструкції вважаються застарілими" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" @@ -471,7 +471,7 @@ "Нестатичний метод класу без аргументів. Має бути принаймні один аргумент " "(self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Інструкція return поза межами оголошення функції" diff -Nru kdevelop-python-5.3.1/po/zh_CN/kdevpython.po kdevelop-python-5.3.2/po/zh_CN/kdevpython.po --- kdevelop-python-5.3.1/po/zh_CN/kdevpython.po 2018-12-06 09:52:32.000000000 +0000 +++ kdevelop-python-5.3.2/po/zh_CN/kdevpython.po 2019-03-07 07:07:54.000000000 +0000 @@ -6,8 +6,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" -"PO-Revision-Date: 2018-11-12 09:25\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" +"PO-Revision-Date: 2019-02-20 23:31\n" "Last-Translator: guoyunhe \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -154,7 +154,7 @@ #: codegen/correctionfilegenerator.cpp:125 #, kde-format msgid "Local variable" -msgstr "本地变量" +msgstr "局部变量" #: codegen/correctionfilegenerator.cpp:161 #, kde-format @@ -201,32 +201,32 @@ #: codegen/correctionwidget.ui:77 #, kde-format msgid "A comma separated list of modules required for the type" -msgstr "" +msgstr "类型所需模块的逗号分隔列表" #: debugger/debugsession.cpp:176 #, kde-format msgid "The program being debugged raised an uncaught exception." -msgstr "" +msgstr "正在调试的程序引发了一个未被捕获的异常。" #: debugger/debugsession.cpp:177 #, kde-format msgid "You can now inspect the status of the program after it exited." -msgstr "" +msgstr "您现在可以在退出后检查程序的状态。" #: debugger/debugsession.cpp:178 #, kde-format msgid "The debugger will silently stop when the next command is triggered." -msgstr "" +msgstr "当下一个命令被触发时,调试器将静默停止。" #: debugger/pdblauncher.cpp:58 #, kde-format msgid "A plugin to debug Python applications with pdb." -msgstr "" +msgstr "用 pdb 调试 Python 应用程序的插件。" #: debugger/pdblauncher.cpp:90 #, kde-format msgid "Sorry, debugging is only supported for Python 3.x applications." -msgstr "" +msgstr "抱歉,只有Python 3.x应用程序支持调试。" #: debugger/pdblauncher.cpp:91 #, kde-format @@ -236,7 +236,7 @@ #: docfilekcm/docfilemanagerwidget.cpp:54 #, kde-format msgid "Failed to find a valid data directory for kdevpythonsupport." -msgstr "" +msgstr "无法找到有效的 kdevpythonsupport 数据目录。" #: docfilekcm/docfilemanagerwidget.cpp:68 #, kde-format @@ -253,7 +253,7 @@ msgid "" "Copy the contents of the active editor window to a new file in the " "documentation directory" -msgstr "" +msgstr "将活动编辑器窗口的内容复制到文档目录中的新文件" #: docfilekcm/docfilemanagerwidget.cpp:83 #, kde-format @@ -275,12 +275,12 @@ #, kde-format msgctxt "displays a list of search paths below" msgid "Paths searched for documentation by kdev-python (in this order):" -msgstr "" +msgstr "通过 kdev-python 搜索文档的路径 (按此顺序) :" #: docfilekcm/docfilemanagerwidget.cpp:158 #, kde-format msgid "Enter a relative target path to copy %1 to:" -msgstr "" +msgstr "输入将 %1 复制到的相对目标路径:" #: docfilekcm/docfilemanagerwidget.cpp:162 #, kde-format @@ -288,16 +288,18 @@ "This path must match what you use in Python to import this module. For " "example, enter \"numpy/fft.py\" for numpy.fft" msgstr "" +"此路径必须与您在 Python 中用于导入此模块的路径相匹配。 例如,为 numpy.fft 输" +"入 numpy/fft.py" #: docfilekcm/docfilemanagerwidget.cpp:164 #, kde-format msgid "After copying, you will be editing the new document." -msgstr "" +msgstr "复制后,您将编辑新文档。" #: docfilekcm/docfilemanagerwidget.cpp:183 #, kde-format msgid "Please select at least one file from the list for editing." -msgstr "" +msgstr "请从列表中选择至少一个文件进行编辑。" #: docfilekcm/docfilewizard.cpp:56 #, kde-format @@ -312,13 +314,13 @@ #: docfilekcm/docfilewizard.cpp:64 #, kde-format msgid "Select a python module to generate documentation for" -msgstr "" +msgstr "选择一个 Python 模块来生成文档" #: docfilekcm/docfilewizard.cpp:68 #, kde-format msgctxt "refers to selecting a python module to perform some operation on" msgid "Target module (e.g. \"math\")" -msgstr "" +msgstr "目标模块 (例如 math)" #: docfilekcm/docfilewizard.cpp:70 #, kde-format @@ -333,7 +335,7 @@ #: docfilekcm/docfilewizard.cpp:78 docfilekcm/docfilewizard.cpp:84 #, kde-format msgid "The process has not been run yet." -msgstr "" +msgstr "进程尚未运行。" #: docfilekcm/docfilewizard.cpp:90 #, kde-format @@ -363,13 +365,13 @@ #: docfilekcm/docfilewizard.cpp:153 #, kde-format msgid "Couldn't find the introspect.py script; check your installation!" -msgstr "" +msgstr "找不到 introspect.py 脚本;请检查您的安装!" #: docfilekcm/docfilewizard.cpp:157 #, kde-format msgid "" "Couldn't find a valid kdev-python data directory; check your installation!" -msgstr "" +msgstr "找不到有效的 kdev-python 数据目录;请检查您的安装!" #: docfilekcm/docfilewizard.cpp:163 #, kde-format @@ -380,7 +382,7 @@ #, kde-format msgid "" "The output file
%1
already exists, do you want to overwrite it?" -msgstr "" +msgstr "输出文件
%1
已存在,是否要覆盖它?" #: docfilekcm/docfilewizard.cpp:217 #, kde-format @@ -395,6 +397,11 @@ "Make sure to keep a copy of your changes so you don't accidentally\n" "overwrite them by re-generating the file.\n" msgstr "" +"此文件包含从 Python 运行时信息自动生成的文档。它被 KDevelop\n" +"分析以提供一些特性,比如代码补全,语法高亮。如果您发现\n" +"KDevelop 对此模块支持的错误,您可以编辑此文件以修正它们。\n" +"比如您可以给函数添加额外的返回语句以控制分析用的返回类型。\n" +"请确保备份您的修改,以免自动生成文件时意外覆盖。\n" #: docfilekcm/kcm_docfiles.cpp:61 #, kde-format @@ -419,25 +426,25 @@ #: duchain/declarationbuilder.cpp:784 #, kde-format msgid "Declaration for \"%1\" not found in specified module" -msgstr "" +msgstr "在指定模块中找不到 %1 的声明" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" -msgstr "" +msgstr "__new__ 方法的第一个参数不叫 cls,这是不推荐使用的" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" -msgstr "" +msgstr "类方法的第一个参数不叫 self,这是不推荐使用的" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" -msgstr "" +msgstr "没有参数的非静态类方法,必须至少有一个参数 (self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "返回语句不在函数声明内" diff -Nru kdevelop-python-5.3.1/po/zh_TW/kdevpython.po kdevelop-python-5.3.2/po/zh_TW/kdevpython.po --- kdevelop-python-5.3.1/po/zh_TW/kdevpython.po 2018-12-06 09:52:32.000000000 +0000 +++ kdevelop-python-5.3.2/po/zh_TW/kdevpython.po 2019-03-07 07:07:54.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdevpython\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-10-10 07:41+0200\n" +"POT-Creation-Date: 2019-01-11 07:17+0100\n" "PO-Revision-Date: 2014-04-23 15:03+0800\n" "Last-Translator: Franklin Weng \n" "Language-Team: Chinese Traditional \n" @@ -451,23 +451,23 @@ msgid "Declaration for \"%1\" not found in specified module" msgstr "在指定的模組找不到宣告 \"%1\"" -#: duchain/declarationbuilder.cpp:1539 +#: duchain/declarationbuilder.cpp:1541 #, kde-format msgid "First argument of __new__ method is not called cls, this is deprecated" msgstr "__new__ 方法的第一個參數非 cls,這種方式已被廢棄" -#: duchain/declarationbuilder.cpp:1544 +#: duchain/declarationbuilder.cpp:1546 #, kde-format msgid "First argument of class method is not called self, this is deprecated" msgstr "類別方法的第一個參數非 self,這種方式已被廢棄" -#: duchain/declarationbuilder.cpp:1564 +#: duchain/declarationbuilder.cpp:1566 #, kde-format msgid "" "Non-static class method without arguments, must have at least one (self)" msgstr "非靜態類別方法沒有參數。您必須至少指定一個參數(self)" -#: duchain/declarationbuilder.cpp:1725 +#: duchain/declarationbuilder.cpp:1727 #, kde-format msgid "Return statement not within function declaration" msgstr "Return 敘述不在函式宣告內"