diff -Nru kdevelop-php-docs-1.3.0/CHANGELOG.1.3.0 kdevelop-php-docs-1.3.1/CHANGELOG.1.3.0 --- kdevelop-php-docs-1.3.0/CHANGELOG.1.3.0 2012-03-11 18:11:22.000000000 +0000 +++ kdevelop-php-docs-1.3.1/CHANGELOG.1.3.0 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -ChangeLog for php-docs v1.3.0 -============================= - -* Milian Wolff: set version to 1.3.0 and depend on kdevplatform 1.3.0 -* Milian Wolff: add gitignore file -* Milian Wolff: simplify release management, plugin version is now also set from the CMakeLists.txt diff -Nru kdevelop-php-docs-1.3.0/CHANGELOG.1.3.1 kdevelop-php-docs-1.3.1/CHANGELOG.1.3.1 --- kdevelop-php-docs-1.3.0/CHANGELOG.1.3.1 1970-01-01 00:00:00.000000000 +0000 +++ kdevelop-php-docs-1.3.1/CHANGELOG.1.3.1 2012-04-13 20:02:31.000000000 +0000 @@ -0,0 +1,3 @@ +ChangeLog for php-docs v1.3.1 +============================= + diff -Nru kdevelop-php-docs-1.3.0/CMakeLists.txt kdevelop-php-docs-1.3.1/CMakeLists.txt --- kdevelop-php-docs-1.3.0/CMakeLists.txt 2012-03-11 18:15:27.000000000 +0000 +++ kdevelop-php-docs-1.3.1/CMakeLists.txt 2012-04-13 20:06:05.000000000 +0000 @@ -2,7 +2,7 @@ set(KDEVPHPDOCS_VERSION_MAJOR 1) set(KDEVPHPDOCS_VERSION_MINOR 3) -set(KDEVPHPDOCS_VERSION_PATCH 0) +set(KDEVPHPDOCS_VERSION_PATCH 1) configure_file( "${phpdocs_SOURCE_DIR}/kdevphpdocsversion.h.cmake" "${phpdocs_BINARY_DIR}/kdevphpdocsversion.h" @ONLY ) diff -Nru kdevelop-php-docs-1.3.0/debian/changelog kdevelop-php-docs-1.3.1/debian/changelog --- kdevelop-php-docs-1.3.0/debian/changelog 2012-03-22 13:08:47.000000000 +0000 +++ kdevelop-php-docs-1.3.1/debian/changelog 2012-04-17 12:02:02.000000000 +0000 @@ -1,3 +1,10 @@ +kdevelop-php-docs (1.3.1-0ubuntu1) precise-proposed; urgency=low + + * New upstream bugfix release + * Add watch file + + -- Rohan Garg Sun, 15 Apr 2012 22:24:46 +0200 + kdevelop-php-docs (1.3.0-0ubuntu1) precise; urgency=low * New upstream release diff -Nru kdevelop-php-docs-1.3.0/debian/control kdevelop-php-docs-1.3.1/debian/control --- kdevelop-php-docs-1.3.0/debian/control 2012-03-22 13:08:30.000000000 +0000 +++ kdevelop-php-docs-1.3.1/debian/control 2012-04-15 20:25:32.000000000 +0000 @@ -6,7 +6,7 @@ Uploaders: Fathi Boudra Build-Depends: cmake (>= 2.8.0), debhelper (>= 7.4.15), - kdevplatform-dev (>= 1.2.90), + kdevplatform-dev (>= 1.3.1), libqtwebkit-dev, pkg-kde-tools (>= 0.6.4) Standards-Version: 3.9.0 diff -Nru kdevelop-php-docs-1.3.0/debian/watch kdevelop-php-docs-1.3.1/debian/watch --- kdevelop-php-docs-1.3.0/debian/watch 1970-01-01 00:00:00.000000000 +0000 +++ kdevelop-php-docs-1.3.1/debian/watch 2012-04-15 20:25:00.000000000 +0000 @@ -0,0 +1,3 @@ +version=3 + +ftp://ftp.kde.org/pub/kde/stable/kdevelop/([\d.]+)/src/kdevelop-php-docs-([\d.]+).tar.bz2 diff -Nru kdevelop-php-docs-1.3.0/phpdocsplugin.cpp kdevelop-php-docs-1.3.1/phpdocsplugin.cpp --- kdevelop-php-docs-1.3.0/phpdocsplugin.cpp 2012-03-11 18:11:22.000000000 +0000 +++ kdevelop-php-docs-1.3.1/phpdocsplugin.cpp 2012-04-13 20:02:31.000000000 +0000 @@ -207,6 +207,12 @@ ICore::self()->documentationController()->showDocumentation(doc); } +void PhpDocsPlugin::addToHistory(const QUrl& url) +{ + KSharedPtr doc = documentationForUrl(url, url.toString()); + emit addHistory(doc); +} + KSharedPtr< IDocumentation > PhpDocsPlugin::documentationForUrl(const KUrl& url, const QString& name, const QByteArray& description) const { return KSharedPtr(new PhpDocumentation( url, name, description, const_cast(this))); diff -Nru kdevelop-php-docs-1.3.0/phpdocsplugin.h kdevelop-php-docs-1.3.1/phpdocsplugin.h --- kdevelop-php-docs-1.3.0/phpdocsplugin.h 2012-03-11 18:11:22.000000000 +0000 +++ kdevelop-php-docs-1.3.1/phpdocsplugin.h 2012-04-13 20:02:31.000000000 +0000 @@ -45,6 +45,8 @@ virtual QString name() const; virtual KSharedPtr< KDevelop::IDocumentation > homePage() const; + void addToHistory(const QUrl& url); + signals: void addHistory( const KSharedPtr< KDevelop::IDocumentation >& doc ) const; diff -Nru kdevelop-php-docs-1.3.0/phpdocumentation.h kdevelop-php-docs-1.3.1/phpdocumentation.h --- kdevelop-php-docs-1.3.0/phpdocumentation.h 2012-03-11 18:11:22.000000000 +0000 +++ kdevelop-php-docs-1.3.1/phpdocumentation.h 2012-04-13 20:02:31.000000000 +0000 @@ -30,7 +30,6 @@ class QWidget; class QStackedWidget; -class KHTMLPart; class PhpDocsPlugin; diff -Nru kdevelop-php-docs-1.3.0/phpdocumentationwidget.cpp kdevelop-php-docs-1.3.1/phpdocumentationwidget.cpp --- kdevelop-php-docs-1.3.0/phpdocumentationwidget.cpp 2012-03-11 18:11:22.000000000 +0000 +++ kdevelop-php-docs-1.3.1/phpdocumentationwidget.cpp 2012-04-13 20:02:31.000000000 +0000 @@ -20,22 +20,25 @@ #include "phpdocumentationwidget.h" -#include #include #include #include #include +#include + +#include +#include #include "phpdocsplugin.h" #include -QSharedPointer createStyleSheet() +QTemporaryFile* createStyleSheet(QObject* parent) { - QSharedPointer file(new QTemporaryFile); + QTemporaryFile* file = new QTemporaryFile(parent); bool ret = file->open(); Q_ASSERT(ret); - QTextStream ts(file.data()); + QTextStream ts(file); ts << QString( "#headnav,#headsearch,#footnav,#leftbar{display:none !important;}" "body{font-size:80% !important;}" "option,select{font-size:80% !important;}" @@ -44,12 +47,15 @@ return file; } -static QSharedPointer phpDocStyleSheet=createStyleSheet(); - -PhpDocumentationWidget::PhpDocumentationWidget(KDevelop::DocumentationFindWidget* find, const KUrl &url, PhpDocsPlugin* provider, QWidget* parent) - : QStackedWidget(parent), m_loading(new QWidget(this)) +PhpDocumentationWidget::PhpDocumentationWidget(KDevelop::DocumentationFindWidget* find, const KUrl &url, + PhpDocsPlugin* provider, QWidget* parent) +: QStackedWidget(parent) +, m_loading(new QWidget(this)) +, m_styleSheet(createStyleSheet(this)) +, m_provider(provider) { - m_part=new KDevelop::StandardDocumentationView(find, this); + m_part = new KDevelop::StandardDocumentationView(find, this); + m_part->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks); addWidget(m_part); addWidget(m_loading); @@ -73,15 +79,21 @@ setCurrentWidget(m_loading); - connect(m_part, SIGNAL(linkClicked(QUrl)), provider, SLOT(loadUrl(QUrl))); + connect(m_part, SIGNAL(linkClicked(QUrl)), this, SLOT(linkClicked(QUrl))); connect(m_part, SIGNAL(loadFinished(bool)), this, SLOT(documentLoaded()) ); m_part->load( url ); } +void PhpDocumentationWidget::linkClicked(const QUrl& url) +{ + m_part->load(url); + m_provider->addToHistory(url); +} + void PhpDocumentationWidget::documentLoaded() { - m_part->settings()->setUserStyleSheetUrl(KUrl(phpDocStyleSheet->fileName())); + m_part->settings()->setUserStyleSheetUrl(KUrl(m_styleSheet->fileName())); setCurrentWidget(m_part); removeWidget(m_loading); diff -Nru kdevelop-php-docs-1.3.0/phpdocumentationwidget.h kdevelop-php-docs-1.3.1/phpdocumentationwidget.h --- kdevelop-php-docs-1.3.0/phpdocumentationwidget.h 2012-03-11 18:11:22.000000000 +0000 +++ kdevelop-php-docs-1.3.1/phpdocumentationwidget.h 2012-04-13 20:02:31.000000000 +0000 @@ -23,7 +23,9 @@ #include -#include +class QTemporaryFile; +class KUrl; +class QUrl; namespace KDevelop { class StandardDocumentationView; @@ -37,15 +39,19 @@ Q_OBJECT public: - explicit PhpDocumentationWidget(KDevelop::DocumentationFindWidget* find, const KUrl &url, PhpDocsPlugin* provider, QWidget* parent = 0); + explicit PhpDocumentationWidget(KDevelop::DocumentationFindWidget* find, const KUrl &url, + PhpDocsPlugin* provider, QWidget* parent = 0); private slots: /// used to inject some custom CSS to alter the remote php.net site void documentLoaded(); + void linkClicked(const QUrl& url); private: KDevelop::StandardDocumentationView* m_part; QWidget* m_loading; + QTemporaryFile* m_styleSheet; + PhpDocsPlugin* m_provider; }; #endif // PHPDOCUMENTATIONWIDGET_H diff -Nru kdevelop-php-docs-1.3.0/po/ca/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/ca/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/ca/kdevphpdocs.po 2012-03-11 18:11:51.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/ca/kdevphpdocs.po 2012-04-13 20:02:57.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2011-02-25 22:49+0100\n" "Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" @@ -24,10 +24,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...s'està carregant la documentació..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -44,10 +40,14 @@ msgid "Maintainer" msgstr "Mantenidor" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "Documentació PHP" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...s'està carregant la documentació..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/ca@valencia/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/ca@valencia/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/ca@valencia/kdevphpdocs.po 2012-03-11 18:11:53.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/ca@valencia/kdevphpdocs.po 2012-04-13 20:02:59.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2011-02-25 22:49+0100\n" "Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" @@ -24,10 +24,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...s'està carregant la documentació..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -44,10 +40,14 @@ msgid "Maintainer" msgstr "Mantenidor" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "Documentació PHP" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...s'està carregant la documentació..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/CMakeLists.txt kdevelop-php-docs-1.3.1/po/CMakeLists.txt --- kdevelop-php-docs-1.3.0/po/CMakeLists.txt 2012-03-11 18:15:27.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/CMakeLists.txt 2012-04-13 20:06:05.000000000 +0000 @@ -5,26 +5,26 @@ if (NOT GETTEXT_MSGFMT_EXECUTABLE) MESSAGE(FATAL_ERROR "Please install msgmerge binary") endif (NOT GETTEXT_MSGFMT_EXECUTABLE) -add_subdirectory(da) -add_subdirectory(pt) -add_subdirectory(nb) add_subdirectory(nds) -add_subdirectory(en_GB) add_subdirectory(zh_CN) -add_subdirectory(de) -add_subdirectory(ca) -add_subdirectory(ru) +add_subdirectory(pl) add_subdirectory(pt_BR) -add_subdirectory(it) -add_subdirectory(sk) -add_subdirectory(ca@valencia) -add_subdirectory(et) add_subdirectory(nl) add_subdirectory(es) -add_subdirectory(fr) -add_subdirectory(fi) -add_subdirectory(sv) -add_subdirectory(uk) -add_subdirectory(pl) +add_subdirectory(pt) +add_subdirectory(sk) add_subdirectory(zh_TW) +add_subdirectory(et) +add_subdirectory(it) add_subdirectory(gl) +add_subdirectory(ru) +add_subdirectory(ca) +add_subdirectory(sv) +add_subdirectory(de) +add_subdirectory(uk) +add_subdirectory(fr) +add_subdirectory(nb) +add_subdirectory(ca@valencia) +add_subdirectory(da) +add_subdirectory(fi) +add_subdirectory(en_GB) diff -Nru kdevelop-php-docs-1.3.0/po/da/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/da/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/da/kdevphpdocs.po 2012-03-11 18:12:05.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/da/kdevphpdocs.po 2012-04-13 20:03:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2011-01-02 12:49+0100\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -22,10 +22,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...indlæser dokumentation..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -42,10 +38,14 @@ msgid "Maintainer" msgstr "Vedligeholder" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "PHP-dokumentation" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...indlæser dokumentation..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/de/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/de/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/de/kdevphpdocs.po 2012-03-11 18:12:07.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/de/kdevphpdocs.po 2012-04-13 20:03:12.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2011-02-08 22:04+0100\n" "Last-Translator: Frederik Schwarzer \n" "Language-Team: German \n" @@ -20,10 +20,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "... Dokumentation wird geladen ..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -40,10 +36,14 @@ msgid "Maintainer" msgstr "Betreuer" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "PHP-Dokumentation" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "... Dokumentation wird geladen ..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/en_GB/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/en_GB/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/en_GB/kdevphpdocs.po 2012-03-11 18:12:12.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/en_GB/kdevphpdocs.po 2012-04-13 20:03:16.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2010-09-19 13:01+0100\n" "Last-Translator: Andrew Coles \n" "Language-Team: British English \n" @@ -21,10 +21,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...loading documentation..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -41,10 +37,14 @@ msgid "Maintainer" msgstr "Maintainer" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "PHP Documentation" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...loading documentation..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/es/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/es/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/es/kdevphpdocs.po 2012-03-11 18:12:17.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/es/kdevphpdocs.po 2012-04-13 20:03:20.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2010-11-25 18:59+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" @@ -21,10 +21,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "cargando documentación..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -41,10 +37,14 @@ msgid "Maintainer" msgstr "Encargado" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "Documentación PHP" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "cargando documentación..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/et/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/et/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/et/kdevphpdocs.po 2012-03-11 18:12:19.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/et/kdevphpdocs.po 2012-04-13 20:03:22.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2010-09-28 01:15+0300\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -21,10 +21,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "... dokumentatsiooni laadimine..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -41,10 +37,14 @@ msgid "Maintainer" msgstr "Hooldaja" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "PHP dokumentatsioon" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "... dokumentatsiooni laadimine..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/fi/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/fi/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/fi/kdevphpdocs.po 2012-03-11 18:12:26.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/fi/kdevphpdocs.po 2012-04-13 20:03:29.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2011-11-12 20:25+0200\n" "Last-Translator: Lasse Liehu \n" "Language-Team: Finnish \n" @@ -21,10 +21,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...ladataan dokumentaatiota..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -41,10 +37,14 @@ msgid "Maintainer" msgstr "Ylläpitäjä" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "PHP-dokumentaatio" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...ladataan dokumentaatiota..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/fr/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/fr/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/fr/kdevphpdocs.po 2012-03-11 18:12:29.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/fr/kdevphpdocs.po 2012-04-13 20:03:31.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdevphpdocs\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2010-09-20 18:37+0200\n" "Last-Translator: Joëlle Cornavin \n" "Language-Team: French <>\n" @@ -22,10 +22,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...chargement de la documentation..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -42,10 +38,14 @@ msgid "Maintainer" msgstr "Mainteneur" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "Documentation de PHP" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...chargement de la documentation..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/gl/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/gl/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/gl/kdevphpdocs.po 2012-03-11 18:12:36.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/gl/kdevphpdocs.po 2012-04-13 20:03:37.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2012-02-16 00:26+0100\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" @@ -25,10 +25,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...estase a cargar a documentación..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -45,10 +41,14 @@ msgid "Maintainer" msgstr "Mantenedor" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "Documentación de PHP" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...estase a cargar a documentación..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/it/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/it/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/it/kdevphpdocs.po 2012-03-11 18:13:06.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/it/kdevphpdocs.po 2012-04-13 20:04:04.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdevphpdocs\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2010-10-02 20:11+0200\n" "Last-Translator: Simone Solinas \n" "Language-Team: Italian \n" @@ -21,10 +21,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...caricamento documentazione..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -41,10 +37,14 @@ msgid "Maintainer" msgstr "Responsabile" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "Documentazione PHP" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...caricamento documentazione..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/nb/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/nb/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/nb/kdevphpdocs.po 2012-03-11 18:13:45.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/nb/kdevphpdocs.po 2012-04-13 20:04:39.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-01-10 17:22+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2011-01-09 22:25+0100\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" @@ -23,30 +23,30 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "… laster dokumentasjon …" - -#: phpdocsplugin.cpp:54 +#: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" -#: phpdocsplugin.cpp:55 +#: phpdocsplugin.cpp:56 msgid "Check PHP.net documentation" msgstr "Sjekk PHP.net-dokumentasjon" -#: phpdocsplugin.cpp:56 +#: phpdocsplugin.cpp:57 msgid "Milian Wolff" msgstr "Milian Wolff" -#: phpdocsplugin.cpp:57 +#: phpdocsplugin.cpp:58 msgid "Maintainer" msgstr "Vedlikeholder" -#: phpdocsplugin.cpp:222 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "PHP-dokumentasjon" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "… laster dokumentasjon …" + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/nds/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/nds/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/nds/kdevphpdocs.po 2012-03-11 18:13:48.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/nds/kdevphpdocs.po 2012-04-13 20:04:42.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdevphpdocs\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2010-10-07 08:39+0200\n" "Last-Translator: Manfred Wiese \n" "Language-Team: Low Saxon \n" @@ -22,10 +22,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "... Dokmentatschoon warrt laadt..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -42,10 +38,14 @@ msgid "Maintainer" msgstr "Pleger" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "PHP-Dokmentatschoon" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "... Dokmentatschoon warrt laadt..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/nl/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/nl/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/nl/kdevphpdocs.po 2012-03-11 18:13:52.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/nl/kdevphpdocs.po 2012-04-13 20:04:46.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdevphpdocs\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2010-11-26 10:37+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" @@ -22,10 +22,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...laden van documentatie..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -42,10 +38,14 @@ msgid "Maintainer" msgstr "Onderhouder" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "PHP-documentatie" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...laden van documentatie..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/pl/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/pl/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/pl/kdevphpdocs.po 2012-03-11 18:14:06.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/pl/kdevphpdocs.po 2012-04-13 20:04:58.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2011-07-28 12:36+0200\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" @@ -22,10 +22,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...wczytywanie dokumentacji..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -42,10 +38,14 @@ msgid "Maintainer" msgstr "Opiekun" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "Dokumentacja PHP" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...wczytywanie dokumentacji..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/pt/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/pt/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/pt/kdevphpdocs.po 2012-03-11 18:14:11.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/pt/kdevphpdocs.po 2012-04-13 20:05:02.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kdevphpdocs\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2010-09-18 11:01+0000\n" "Last-Translator: José Nuno Coelho Pires \n" "Language-Team: Portuguese \n" @@ -18,10 +18,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...a carregar a documentação..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -38,10 +34,14 @@ msgid "Maintainer" msgstr "Manutenção" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "Documentação de PHP" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...a carregar a documentação..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/pt_BR/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/pt_BR/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/pt_BR/kdevphpdocs.po 2012-03-11 18:14:13.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/pt_BR/kdevphpdocs.po 2012-04-13 20:05:04.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdevphpdocs\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2010-11-27 10:00-0300\n" "Last-Translator: Marcus Vinícius de Andrade Gama \n" "Language-Team: Brazilian Portuguese \n" @@ -22,10 +22,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...carregando documentação..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -42,10 +38,14 @@ msgid "Maintainer" msgstr "Mantenedor" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "Documentação de PHP" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...carregando documentação..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/ru/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/ru/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/ru/kdevphpdocs.po 2012-03-11 18:14:18.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/ru/kdevphpdocs.po 2012-04-13 20:05:09.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2011-01-22 09:59+0300\n" "Last-Translator: Alexander Potashev \n" "Language-Team: Russian \n" @@ -26,10 +26,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "Загрузка документации..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -46,10 +42,14 @@ msgid "Maintainer" msgstr "Сопровождающий" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "Документация PHP" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "Загрузка документации..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/sk/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/sk/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/sk/kdevphpdocs.po 2012-03-11 18:14:27.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/sk/kdevphpdocs.po 2012-04-13 20:05:17.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: kdevphpdocs\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2012-02-12 19:19+0100\n" "Last-Translator: Roman Paholík \n" "Language-Team: Slovak \n" @@ -19,10 +19,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...načítavanie dokumentácie..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -39,10 +35,14 @@ msgid "Maintainer" msgstr "Správca" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "Dokumentácia PHP" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...načítavanie dokumentácie..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/sv/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/sv/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/sv/kdevphpdocs.po 2012-03-11 18:14:49.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/sv/kdevphpdocs.po 2012-04-13 20:05:32.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2010-09-18 21:20+0200\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" @@ -21,10 +21,6 @@ msgid "" msgstr "" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "... läser in dokumentation ..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PHP-dokumentation" @@ -41,10 +37,14 @@ msgid "Maintainer" msgstr "Underhåll" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "PHP-dokumentation" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "... läser in dokumentation ..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/uk/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/uk/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/uk/kdevphpdocs.po 2012-03-11 18:15:08.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/uk/kdevphpdocs.po 2012-04-13 20:05:48.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2011-07-20 19:51+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -22,10 +22,6 @@ msgid "" msgstr "<пропущене оголошення>" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...завантаження документації..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "Документація з PHP" @@ -42,10 +38,14 @@ msgid "Maintainer" msgstr "Супровідник" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "Документація з PHP" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...завантаження документації..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/zh_CN/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/zh_CN/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/zh_CN/kdevphpdocs.po 2012-03-11 18:15:22.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/zh_CN/kdevphpdocs.po 2012-04-13 20:06:01.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2010-11-16 14:21+0800\n" "Last-Translator: Ni Hui \n" "Language-Team: Chinese Simplified \n" @@ -21,10 +21,6 @@ msgid "" msgstr "<缺少声明>" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "...正在装入文档..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "PhpDocs" @@ -41,10 +37,14 @@ msgid "Maintainer" msgstr "维护者" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "PHP 文档" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "...正在装入文档..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" diff -Nru kdevelop-php-docs-1.3.0/po/zh_TW/kdevphpdocs.po kdevelop-php-docs-1.3.1/po/zh_TW/kdevphpdocs.po --- kdevelop-php-docs-1.3.0/po/zh_TW/kdevphpdocs.po 2012-03-11 18:15:26.000000000 +0000 +++ kdevelop-php-docs-1.3.1/po/zh_TW/kdevphpdocs.po 2012-04-13 20:06:05.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2012-02-25 12:27+0100\n" +"POT-Creation-Date: 2012-03-31 14:05+0200\n" "PO-Revision-Date: 2010-10-29 09:05+0800\n" "Last-Translator: Franklin Weng \n" "Language-Team: Chinese Traditional \n" @@ -23,10 +23,6 @@ msgid "" msgstr "<遺失的宣告>" -#: phpdocumentationwidget.cpp:67 -msgid "...loading documentation..." -msgstr "... 載入文件中 ..." - #: phpdocsplugin.cpp:55 msgid "PhpDocs" msgstr "Php 文件" @@ -43,10 +39,14 @@ msgid "Maintainer" msgstr "維護者" -#: phpdocsplugin.cpp:223 +#: phpdocsplugin.cpp:229 msgid "PHP Documentation" msgstr "PHP 文件" +#: phpdocumentationwidget.cpp:73 +msgid "...loading documentation..." +msgstr "... 載入文件中 ..." + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names"