diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-02-19 10:20:48 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-02-19 10:20:48 +0000 |
| commit | d693d842a6b2293f13bcbf4f093d581a180cdc5a (patch) | |
| tree | 0bd54e412fc6bc7b6b7564b626825cf2708a1361 /src | |
| parent | f6a2b91ab1a5b581c15457bd22d51368ee77d9a2 (diff) | |
| download | qmmp-d693d842a6b2293f13bcbf4f093d581a180cdc5a.tar.gz qmmp-d693d842a6b2293f13bcbf4f093d581a180cdc5a.tar.bz2 qmmp-d693d842a6b2293f13bcbf4f093d581a180cdc5a.zip | |
improved lyrics plugin
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@797 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src')
9 files changed, 239 insertions, 99 deletions
diff --git a/src/plugins/General/lyrics/lyricswindow.cpp b/src/plugins/General/lyrics/lyricswindow.cpp index dc781bcc4..d5c733b71 100644 --- a/src/plugins/General/lyrics/lyricswindow.cpp +++ b/src/plugins/General/lyrics/lyricswindow.cpp @@ -30,7 +30,8 @@ LyricsWindow::LyricsWindow(const QString &artist, const QString &title, QWidget ui.setupUi(this); setWindowFlags(Qt::Dialog); setAttribute(Qt::WA_DeleteOnClose); - setWindowTitle(QString(tr("Lyrics: %1 - %2")).arg(artist).arg(title)); + ui.artistLineEdit->setText(artist); + ui.titleLineEdit->setText(title); m_http = new QHttp(this); //load global proxy settings if (Qmmp::useProxy()) @@ -41,7 +42,7 @@ LyricsWindow::LyricsWindow(const QString &artist, const QString &title, QWidget connect(m_http, SIGNAL(done(bool)), SLOT(showText(bool))); connect(m_http, SIGNAL(stateChanged(int)), SLOT(showState (int))); m_http->setHost("lyricwiki.org"); - m_http->get("/api.php?func=getSong&artist=" + QUrl::toPercentEncoding(artist) +"&song=" + QUrl::toPercentEncoding(title) +"&fmt=html"); + on_searchPushButton_clicked(); } @@ -83,3 +84,10 @@ void LyricsWindow::showState(int state) ui.stateLabel->setText(tr("Closing connection...")); } } + +void LyricsWindow::on_searchPushButton_clicked() +{ + setWindowTitle(QString(tr("Lyrics: %1 - %2")).arg(ui.artistLineEdit->text()).arg(ui.titleLineEdit->text())); + m_http->get("/api.php?func=getSong&artist=" + QUrl::toPercentEncoding(ui.artistLineEdit->text()) + +"&song=" + QUrl::toPercentEncoding(ui.titleLineEdit->text()) +"&fmt=html"); +} diff --git a/src/plugins/General/lyrics/lyricswindow.h b/src/plugins/General/lyrics/lyricswindow.h index 9d0f97a0b..51e8218b3 100644 --- a/src/plugins/General/lyrics/lyricswindow.h +++ b/src/plugins/General/lyrics/lyricswindow.h @@ -40,6 +40,7 @@ public: private slots: void showText(bool error); void showState(int state); + void on_searchPushButton_clicked(); private: Ui::LyricsWindow ui; diff --git a/src/plugins/General/lyrics/lyricswindow.ui b/src/plugins/General/lyrics/lyricswindow.ui index 25c916f30..a63f99424 100644 --- a/src/plugins/General/lyrics/lyricswindow.ui +++ b/src/plugins/General/lyrics/lyricswindow.ui @@ -1,50 +1,79 @@ -<ui version="4.0" > +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> <class>LyricsWindow</class> - <widget class="QWidget" name="LyricsWindow" > - <property name="geometry" > + <widget class="QWidget" name="LyricsWindow"> + <property name="geometry"> <rect> <x>0</x> <y>0</y> - <width>464</width> - <height>400</height> + <width>513</width> + <height>420</height> </rect> </property> - <property name="windowTitle" > + <property name="windowTitle"> <string>Lyrics Plugin</string> </property> - <layout class="QGridLayout" name="gridLayout" > - <property name="leftMargin" > - <number>4</number> + <layout class="QGridLayout" name="gridLayout"> + <property name="leftMargin"> + <number>6</number> </property> - <property name="topMargin" > - <number>9</number> + <property name="rightMargin"> + <number>6</number> </property> - <property name="rightMargin" > - <number>4</number> + <property name="bottomMargin"> + <number>6</number> </property> - <property name="bottomMargin" > - <number>4</number> - </property> - <item row="0" column="0" colspan="3" > - <widget class="QTextEdit" name="textEdit" > - <property name="readOnly" > + <item row="0" column="0" colspan="3"> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QLabel" name="label"> + <property name="text"> + <string>Artist:</string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="artistLineEdit"/> + </item> + <item> + <widget class="QLabel" name="label_2"> + <property name="text"> + <string>Title:</string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="titleLineEdit"/> + </item> + <item> + <widget class="QPushButton" name="searchPushButton"> + <property name="text"> + <string>Search</string> + </property> + </widget> + </item> + </layout> + </item> + <item row="1" column="0" colspan="3"> + <widget class="QTextEdit" name="textEdit"> + <property name="readOnly"> <bool>true</bool> </property> </widget> </item> - <item row="1" column="0" > - <widget class="QLabel" name="stateLabel" > - <property name="text" > + <item row="2" column="0"> + <widget class="QLabel" name="stateLabel"> + <property name="text"> <string>No connection</string> </property> </widget> </item> - <item row="1" column="1" > - <spacer name="horizontalSpacer" > - <property name="orientation" > + <item row="2" column="1"> + <spacer name="horizontalSpacer"> + <property name="orientation"> <enum>Qt::Horizontal</enum> </property> - <property name="sizeHint" stdset="0" > + <property name="sizeHint" stdset="0"> <size> <width>383</width> <height>20</height> @@ -52,9 +81,9 @@ </property> </spacer> </item> - <item row="1" column="2" > - <widget class="QPushButton" name="pushButton" > - <property name="text" > + <item row="2" column="2"> + <widget class="QPushButton" name="pushButton"> + <property name="text"> <string>Close</string> </property> </widget> @@ -69,11 +98,11 @@ <receiver>LyricsWindow</receiver> <slot>close()</slot> <hints> - <hint type="sourcelabel" > + <hint type="sourcelabel"> <x>440</x> <y>333</y> </hint> - <hint type="destinationlabel" > + <hint type="destinationlabel"> <x>174</x> <y>343</y> </hint> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_cs.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_cs.ts index 8ee2c207f..91c5cdd1e 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_cs.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_cs.ts @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS><TS version="1.1"> +<!DOCTYPE TS> +<TS version="2.0"> <context> <name>Lyrics</name> <message> @@ -39,52 +40,68 @@ <context> <name>LyricsWindow</name> <message> - <location filename="../lyricswindow.cpp" line="32"/> + <location filename="../lyricswindow.cpp" line="90"/> <source>Lyrics: %1 - %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.ui" line="38"/> + <location filename="../lyricswindow.cpp" line="66"/> + <location filename="../lyricswindow.ui" line="67"/> <source>No connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="62"/> + <location filename="../lyricswindow.cpp" line="69"/> <source>Looking up host...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="65"/> + <location filename="../lyricswindow.cpp" line="72"/> <source>Connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="68"/> + <location filename="../lyricswindow.cpp" line="75"/> <source>Sending request...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="71"/> + <location filename="../lyricswindow.cpp" line="78"/> <source>Receiving</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="74"/> + <location filename="../lyricswindow.cpp" line="81"/> <source>Connected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="77"/> + <location filename="../lyricswindow.cpp" line="84"/> <source>Closing connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.ui" line="13"/> + <location filename="../lyricswindow.ui" line="14"/> <source>Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.ui" line="58"/> + <location filename="../lyricswindow.ui" line="31"/> + <source>Artist:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="41"/> + <source>Title:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="51"/> + <source>Search</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="87"/> <source>Close</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_de.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_de.ts index 280bf90ee..6f04c9cf0 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_de.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_de.ts @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS><TS version="1.1" language="de"> +<!DOCTYPE TS> +<TS version="2.0" language="de"> <defaultcodec></defaultcodec> <context> <name>Lyrics</name> @@ -40,52 +41,68 @@ <context> <name>LyricsWindow</name> <message> - <location filename="../lyricswindow.cpp" line="32"/> + <location filename="../lyricswindow.cpp" line="90"/> <source>Lyrics: %1 - %2</source> <translation>Liedtext: %1 - %2</translation> </message> <message> - <location filename="../lyricswindow.ui" line="38"/> + <location filename="../lyricswindow.cpp" line="66"/> + <location filename="../lyricswindow.ui" line="67"/> <source>No connection</source> <translation>Keine Verbindung</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="62"/> + <location filename="../lyricswindow.cpp" line="69"/> <source>Looking up host...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="65"/> + <location filename="../lyricswindow.cpp" line="72"/> <source>Connecting...</source> <translation>Verbinde...</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="68"/> + <location filename="../lyricswindow.cpp" line="75"/> <source>Sending request...</source> <translation>Sende Anfrage...</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="71"/> + <location filename="../lyricswindow.cpp" line="78"/> <source>Receiving</source> <translation>Empfange</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="74"/> + <location filename="../lyricswindow.cpp" line="81"/> <source>Connected</source> <translation>Verbunden</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="77"/> + <location filename="../lyricswindow.cpp" line="84"/> <source>Closing connection...</source> <translation>Beende Verbindung...</translation> </message> <message> - <location filename="../lyricswindow.ui" line="13"/> + <location filename="../lyricswindow.ui" line="14"/> <source>Lyrics Plugin</source> <translation>Liedtext-Plugin</translation> </message> <message> - <location filename="../lyricswindow.ui" line="58"/> + <location filename="../lyricswindow.ui" line="31"/> + <source>Artist:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="41"/> + <source>Title:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="51"/> + <source>Search</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="87"/> <source>Close</source> <translation>Schließen</translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_ru.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_ru.ts index 1a09bccf9..528d6adec 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_ru.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_ru.ts @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS><TS version="1.1" language="pl"> +<!DOCTYPE TS> +<TS version="2.0" language="ru_RU"> <context> <name>Lyrics</name> <message> @@ -39,52 +40,68 @@ <context> <name>LyricsWindow</name> <message> - <location filename="../lyricswindow.cpp" line="32"/> + <location filename="../lyricswindow.cpp" line="90"/> <source>Lyrics: %1 - %2</source> <translation>Текст песни: %1 - %2</translation> </message> <message> - <location filename="../lyricswindow.ui" line="38"/> + <location filename="../lyricswindow.cpp" line="66"/> + <location filename="../lyricswindow.ui" line="67"/> <source>No connection</source> <translation>Нет соединения</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="62"/> + <location filename="../lyricswindow.cpp" line="69"/> <source>Looking up host...</source> <translation>Поиск сервера...</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="65"/> + <location filename="../lyricswindow.cpp" line="72"/> <source>Connecting...</source> <translation>Соединение...</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="68"/> + <location filename="../lyricswindow.cpp" line="75"/> <source>Sending request...</source> <translation>Отправка запроса...</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="71"/> + <location filename="../lyricswindow.cpp" line="78"/> <source>Receiving</source> <translation>Получение</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="74"/> + <location filename="../lyricswindow.cpp" line="81"/> <source>Connected</source> <translation>Соединено</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="77"/> + <location filename="../lyricswindow.cpp" line="84"/> <source>Closing connection...</source> <translation>Завершение соединения...</translation> </message> <message> - <location filename="../lyricswindow.ui" line="13"/> + <location filename="../lyricswindow.ui" line="14"/> <source>Lyrics Plugin</source> <translation>Модуль показа текстов</translation> </message> <message> - <location filename="../lyricswindow.ui" line="58"/> + <location filename="../lyricswindow.ui" line="31"/> + <source>Artist:</source> + <translation>Исполнитель:</translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="41"/> + <source>Title:</source> + <translation>Название:</translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="51"/> + <source>Search</source> + <translation>Поиск</translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="87"/> <source>Close</source> <translation>Закрыть</translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_uk_UA.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_uk_UA.ts index e8f590ad9..7b958cda8 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_uk_UA.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_uk_UA.ts @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS><TS version="1.1" language="uk"> +<!DOCTYPE TS> +<TS version="2.0" language="uk"> <context> <name>Lyrics</name> <message> @@ -39,52 +40,68 @@ <context> <name>LyricsWindow</name> <message> - <location filename="../lyricswindow.cpp" line="32"/> + <location filename="../lyricswindow.cpp" line="90"/> <source>Lyrics: %1 - %2</source> <translation>Тексти: %1 - %2</translation> </message> <message> - <location filename="../lyricswindow.ui" line="38"/> + <location filename="../lyricswindow.cpp" line="66"/> + <location filename="../lyricswindow.ui" line="67"/> <source>No connection</source> <translation>Немає з'єднання</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="62"/> + <location filename="../lyricswindow.cpp" line="69"/> <source>Looking up host...</source> <translation>Пошук хоста...</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="65"/> + <location filename="../lyricswindow.cpp" line="72"/> <source>Connecting...</source> <translation>З'єднання...</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="68"/> + <location filename="../lyricswindow.cpp" line="75"/> <source>Sending request...</source> <translation>Відсилання запиту...</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="71"/> + <location filename="../lyricswindow.cpp" line="78"/> <source>Receiving</source> <translation>Отримання</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="74"/> + <location filename="../lyricswindow.cpp" line="81"/> <source>Connected</source> <translation>З'єднано</translation> </message> <message> - <location filename="../lyricswindow.cpp" line="77"/> + <location filename="../lyricswindow.cpp" line="84"/> <source>Closing connection...</source> <translation>Закриття з'єднання...</translation> </message> <message> - <location filename="../lyricswindow.ui" line="13"/> + <location filename="../lyricswindow.ui" line="14"/> <source>Lyrics Plugin</source> <translation>Модуль текстів</translation> </message> <message> - <location filename="../lyricswindow.ui" line="58"/> + <location filename="../lyricswindow.ui" line="31"/> + <source>Artist:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="41"/> + <source>Title:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="51"/> + <source>Search</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="87"/> <source>Close</source> <translation>Закрити</translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_zh_CN.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_zh_CN.ts index 8ee2c207f..91c5cdd1e 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_zh_CN.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_zh_CN.ts @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS><TS version="1.1"> +<!DOCTYPE TS> +<TS version="2.0"> <context> <name>Lyrics</name> <message> @@ -39,52 +40,68 @@ <context> <name>LyricsWindow</name> <message> - <location filename="../lyricswindow.cpp" line="32"/> + <location filename="../lyricswindow.cpp" line="90"/> <source>Lyrics: %1 - %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.ui" line="38"/> + <location filename="../lyricswindow.cpp" line="66"/> + <location filename="../lyricswindow.ui" line="67"/> <source>No connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="62"/> + <location filename="../lyricswindow.cpp" line="69"/> <source>Looking up host...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="65"/> + <location filename="../lyricswindow.cpp" line="72"/> <source>Connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="68"/> + <location filename="../lyricswindow.cpp" line="75"/> <source>Sending request...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="71"/> + <location filename="../lyricswindow.cpp" line="78"/> <source>Receiving</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="74"/> + <location filename="../lyricswindow.cpp" line="81"/> <source>Connected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="77"/> + <location filename="../lyricswindow.cpp" line="84"/> <source>Closing connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.ui" line="13"/> + <location filename="../lyricswindow.ui" line="14"/> <source>Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.ui" line="58"/> + <location filename="../lyricswindow.ui" line="31"/> + <source>Artist:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="41"/> + <source>Title:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="51"/> + <source>Search</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="87"/> <source>Close</source> <translation type="unfinished"></translation> </message> diff --git a/src/plugins/General/lyrics/translations/lyrics_plugin_zh_TW.ts b/src/plugins/General/lyrics/translations/lyrics_plugin_zh_TW.ts index 8ee2c207f..91c5cdd1e 100644 --- a/src/plugins/General/lyrics/translations/lyrics_plugin_zh_TW.ts +++ b/src/plugins/General/lyrics/translations/lyrics_plugin_zh_TW.ts @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS><TS version="1.1"> +<!DOCTYPE TS> +<TS version="2.0"> <context> <name>Lyrics</name> <message> @@ -39,52 +40,68 @@ <context> <name>LyricsWindow</name> <message> - <location filename="../lyricswindow.cpp" line="32"/> + <location filename="../lyricswindow.cpp" line="90"/> <source>Lyrics: %1 - %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.ui" line="38"/> + <location filename="../lyricswindow.cpp" line="66"/> + <location filename="../lyricswindow.ui" line="67"/> <source>No connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="62"/> + <location filename="../lyricswindow.cpp" line="69"/> <source>Looking up host...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="65"/> + <location filename="../lyricswindow.cpp" line="72"/> <source>Connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="68"/> + <location filename="../lyricswindow.cpp" line="75"/> <source>Sending request...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="71"/> + <location filename="../lyricswindow.cpp" line="78"/> <source>Receiving</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="74"/> + <location filename="../lyricswindow.cpp" line="81"/> <source>Connected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.cpp" line="77"/> + <location filename="../lyricswindow.cpp" line="84"/> <source>Closing connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.ui" line="13"/> + <location filename="../lyricswindow.ui" line="14"/> <source>Lyrics Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../lyricswindow.ui" line="58"/> + <location filename="../lyricswindow.ui" line="31"/> + <source>Artist:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="41"/> + <source>Title:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="51"/> + <source>Search</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../lyricswindow.ui" line="87"/> <source>Close</source> <translation type="unfinished"></translation> </message> |
