Add some more people to the about box

This commit is contained in:
David Sansome 2010-04-07 19:01:41 +00:00
parent 333ac7d90d
commit ef24cd8c5b
11 changed files with 657 additions and 572 deletions

View File

@ -19,6 +19,8 @@
#include <QCoreApplication>
const char* About::kUrl = "http://code.google.com/p/clementine-player/";
About::About(QWidget *parent)
: QDialog(parent)
{
@ -27,4 +29,36 @@ About::About(QWidget *parent)
setWindowTitle(tr("About %1").arg(QCoreApplication::applicationName()));
ui_.title->setText(QCoreApplication::applicationName());
ui_.version->setText(tr("Version %1").arg(QCoreApplication::applicationVersion()));
authors_ << Person("David Sansome", "me@davidsansome.com")
<< Person("John Maguire", "john.maguire@gmail.com");
thanks_to_ << Person("Mark Kretschmann", "markey@web.de")
<< Person("Max Howell", "max.howell@methylblue.com")
<< Person("Jakub Stachowski", "qbast@go2.pl")
<< Person("Paul Cifarelli", "paul@cifarelli.net")
<< Person("Felipe Rivera", "liebremx@users.sourceforge.net");
ui_.content->setHtml(MakeHtml());
}
QString About::MakeHtml() const {
QString ret = QString("<p><a href=\"%1\">%2</a></p>"
"<p><b>%3:</b>").arg(kUrl, kUrl, tr("Authors"));
foreach (const Person& person, authors_)
ret += "<br />" + MakeHtml(person);
ret += QString("</p><p><b>%3:</b>").arg(tr("Thanks to"));
foreach (const Person& person, thanks_to_)
ret += "<br />" + MakeHtml(person);
ret += "</p>";
return ret;
}
QString About::MakeHtml(const Person& person) const {
return QString("%1 &lt;<a href=\"mailto:%2\">%3</a>&gt;")
.arg(person.name, person.email, person.email);
}

View File

@ -26,8 +26,24 @@ class About : public QDialog {
public:
About(QWidget* parent = 0);
static const char* kUrl;
struct Person {
Person(const QString& n, const QString& e) : name(n), email(e) {}
QString name;
QString email;
};
private:
QString MakeHtml() const;
QString MakeHtml(const Person& person) const;
private:
Ui::About ui_;
QList<Person> authors_;
QList<Person> thanks_to_;
};
#endif // ABOUT_H

View File

@ -111,22 +111,7 @@
</widget>
</item>
<item>
<widget class="QTextBrowser" name="textBrowser">
<property name="html">
<string>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;a href=&quot;http://code.google.com/p/clementine-player/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0057ae;&quot;&gt;http://code.google.com/p/clementine-player/&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Authors:&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;David Sansome &amp;lt;&lt;a href=&quot;mailto:me@davidsansome.com&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0057ae;&quot;&gt;me@davidsansome.com&lt;/span&gt;&lt;/a&gt;&amp;gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Thanks to:&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Mark Kretschmann &amp;lt;&lt;a href=&quot;mailto:markey@web.de&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0057ae;&quot;&gt;markey@web.de&lt;/span&gt;&lt;/a&gt;&amp;gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Max Howell &amp;lt;&lt;a href=&quot;mailto:max.howell@methylblue.com&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0057ae;&quot;&gt;max.howell@methylblue.com&lt;/span&gt;&lt;/a&gt;&amp;gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;... and all the Amarok contributors&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<widget class="QTextBrowser" name="content">
<property name="openExternalLinks">
<bool>true</bool>
</property>

View File

@ -333,6 +333,12 @@ msgstr "O %1"
msgid "Version %1"
msgstr "Verze %1"
msgid "Authors"
msgstr ""
msgid "Thanks to"
msgstr ""
msgid "Add another stream..."
msgstr "Přidat další proud..."
@ -794,85 +800,6 @@ msgstr ""
msgid "Version"
msgstr "Verze"
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
"google.com/p/clementine-player/\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">http://code.google.com/p/clementine-player/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Authors:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a href="
"\"mailto:me@davidsansome.com\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Thanks to:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
"href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
"\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
"underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">... and all the Amarok "
"contributors</p></body></html>"
msgstr ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
"google.com/p/clementine-player/\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">http://code.google.com/p/clementine-player/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Autoři:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a href="
"\"mailto:me@davidsansome.com\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Poděkování:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
"href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
"\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
"underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">... a všem přispěvatelům "
"Amaroku</p></body></html>"
msgid "Add Stream"
msgstr "Přidat proud"
@ -957,6 +884,99 @@ msgstr ""
msgid "Enable equalizer"
msgstr ""
#, fuzzy
#~ msgid ""
#~ "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
#~ "REC-html40/strict.dtd\">\n"
#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/"
#~ "css\">\n"
#~ "p, li { white-space: pre-wrap; }\n"
#~ "</style></head><body style=\" font-family:'Sans'; font-size:9pt; font-"
#~ "weight:400; font-style:normal;\">\n"
#~ "<table style=\"-qt-table-type: root; margin-top:4px; margin-bottom:4px; "
#~ "margin-left:4px; margin-right:4px;\">\n"
#~ "<tr>\n"
#~ "<td style=\"border: none;\">\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
#~ "google.com/p/clementine-player/\"><span style=\" font-family:'Sans "
#~ "Serif'; text-decoration: underline; color:#0057ae;\">http://code.google."
#~ "com/p/clementine-player/</span></a></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; "
#~ "font-family:'Sans Serif';\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif'; font-weight:600;\">Authors:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">David Sansome &lt;</span><a href=\"mailto:"
#~ "me@davidsansome.com\"><span style=\" font-family:'Sans Serif'; text-"
#~ "decoration: underline; color:#0057ae;\">me@davidsansome.com</span></"
#~ "a><span style=\" font-family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; "
#~ "font-family:'Sans Serif';\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif'; font-weight:600;\">Thanks to:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">Mark Kretschmann &lt;</span><a href=\"mailto:"
#~ "markey@web.de\"><span style=\" font-family:'Sans Serif'; text-decoration: "
#~ "underline; color:#0057ae;\">markey@web.de</span></a><span style=\" font-"
#~ "family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">Max Howell &lt;</span><a href=\"mailto:max."
#~ "howell@methylblue.com\"><span style=\" font-family:'Sans Serif'; text-"
#~ "decoration: underline; color:#0057ae;\">max.howell@methylblue.com</span></"
#~ "a><span style=\" font-family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">... and all the Amarok contributors</span></p></"
#~ "td></tr></table></body></html>"
#~ msgstr ""
#~ "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
#~ "REC-html40/strict.dtd\">\n"
#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/"
#~ "css\">\n"
#~ "p, li { white-space: pre-wrap; }\n"
#~ "</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; "
#~ "font-weight:400; font-style:normal;\">\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
#~ "google.com/p/clementine-player/\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">http://code.google.com/p/clementine-player/</"
#~ "span></a></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"
#~ "\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "weight:600;\">Autoři:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a "
#~ "href=\"mailto:me@davidsansome.com\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"
#~ "\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "weight:600;\">Poděkování:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
#~ "href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
#~ "color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
#~ "\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">... a všem "
#~ "přispěvatelům Amaroku</p></body></html>"
#~ msgid "&Hide tray icon"
#~ msgstr "S&krýt ikonu v systémovém panelu"

View File

@ -333,6 +333,12 @@ msgstr "Περί %1"
msgid "Version %1"
msgstr "Έκδοση %1"
msgid "Authors"
msgstr ""
msgid "Thanks to"
msgstr ""
msgid "Add another stream..."
msgstr "Προσθήκη άλλης ροής..."
@ -798,47 +804,6 @@ msgstr "Επέλεξε χρώμα..."
msgid "Version"
msgstr "Έκδοση"
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
"google.com/p/clementine-player/\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">http://code.google.com/p/clementine-player/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Authors:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a href="
"\"mailto:me@davidsansome.com\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Thanks to:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
"href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
"\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
"underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">... and all the Amarok "
"contributors</p></body></html>"
msgstr ""
msgid "Add Stream"
msgstr "Προσθήκη ροής"

View File

@ -332,6 +332,12 @@ msgstr "Sobre %1"
msgid "Version %1"
msgstr "Versión %1"
msgid "Authors"
msgstr ""
msgid "Thanks to"
msgstr ""
msgid "Add another stream..."
msgstr "Añadir un flujo de radio..."
@ -801,85 +807,6 @@ msgstr "Elegir color..."
msgid "Version"
msgstr "Versión"
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
"google.com/p/clementine-player/\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">http://code.google.com/p/clementine-player/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Authors:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a href="
"\"mailto:me@davidsansome.com\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Thanks to:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
"href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
"\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
"underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">... and all the Amarok "
"contributors</p></body></html>"
msgstr ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
"google.com/p/clementine-player/\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">http://code.google.com/p/clementine-player/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Autores:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a href="
"\"mailto:me@davidsansome.com\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Gracias a:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
"href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
"\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
"underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">... y a todos los que "
"contribuyeron con Amarok</p></body></html>"
msgid "Add Stream"
msgstr "Añadir Flujo de Radio"
@ -966,6 +893,99 @@ msgstr ""
msgid "Enable equalizer"
msgstr ""
#, fuzzy
#~ msgid ""
#~ "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
#~ "REC-html40/strict.dtd\">\n"
#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/"
#~ "css\">\n"
#~ "p, li { white-space: pre-wrap; }\n"
#~ "</style></head><body style=\" font-family:'Sans'; font-size:9pt; font-"
#~ "weight:400; font-style:normal;\">\n"
#~ "<table style=\"-qt-table-type: root; margin-top:4px; margin-bottom:4px; "
#~ "margin-left:4px; margin-right:4px;\">\n"
#~ "<tr>\n"
#~ "<td style=\"border: none;\">\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
#~ "google.com/p/clementine-player/\"><span style=\" font-family:'Sans "
#~ "Serif'; text-decoration: underline; color:#0057ae;\">http://code.google."
#~ "com/p/clementine-player/</span></a></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; "
#~ "font-family:'Sans Serif';\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif'; font-weight:600;\">Authors:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">David Sansome &lt;</span><a href=\"mailto:"
#~ "me@davidsansome.com\"><span style=\" font-family:'Sans Serif'; text-"
#~ "decoration: underline; color:#0057ae;\">me@davidsansome.com</span></"
#~ "a><span style=\" font-family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; "
#~ "font-family:'Sans Serif';\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif'; font-weight:600;\">Thanks to:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">Mark Kretschmann &lt;</span><a href=\"mailto:"
#~ "markey@web.de\"><span style=\" font-family:'Sans Serif'; text-decoration: "
#~ "underline; color:#0057ae;\">markey@web.de</span></a><span style=\" font-"
#~ "family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">Max Howell &lt;</span><a href=\"mailto:max."
#~ "howell@methylblue.com\"><span style=\" font-family:'Sans Serif'; text-"
#~ "decoration: underline; color:#0057ae;\">max.howell@methylblue.com</span></"
#~ "a><span style=\" font-family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">... and all the Amarok contributors</span></p></"
#~ "td></tr></table></body></html>"
#~ msgstr ""
#~ "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
#~ "REC-html40/strict.dtd\">\n"
#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/"
#~ "css\">\n"
#~ "p, li { white-space: pre-wrap; }\n"
#~ "</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; "
#~ "font-weight:400; font-style:normal;\">\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
#~ "google.com/p/clementine-player/\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">http://code.google.com/p/clementine-player/</"
#~ "span></a></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"
#~ "\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "weight:600;\">Autores:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a "
#~ "href=\"mailto:me@davidsansome.com\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"
#~ "\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "weight:600;\">Gracias a:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
#~ "href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
#~ "color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
#~ "\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">... y a todos los que "
#~ "contribuyeron con Amarok</p></body></html>"
#~ msgid "&Hide tray icon"
#~ msgstr "&Ocultar icono de la bandeja"

View File

@ -335,6 +335,12 @@ msgstr "À propos de %1"
msgid "Version %1"
msgstr "Version %1"
msgid "Authors"
msgstr ""
msgid "Thanks to"
msgstr ""
msgid "Add another stream..."
msgstr "Ajouter un autre flux..."
@ -799,85 +805,6 @@ msgstr "Choisir une couleur..."
msgid "Version"
msgstr "Version"
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
"google.com/p/clementine-player/\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">http://code.google.com/p/clementine-player/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Authors:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a href="
"\"mailto:me@davidsansome.com\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Thanks to:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
"href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
"\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
"underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">... and all the Amarok "
"contributors</p></body></html>"
msgstr ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
"google.com/p/clementine-player/\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">http://code.google.com/p/clementine-player/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Auteurs :</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a href="
"\"mailto:me@davidsansome.com\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Remerciements à :</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
"href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
"\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
"underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">... ainsi qu'à tous ceux "
"qui ont contribué à Amarok</p></body></html>"
msgid "Add Stream"
msgstr "Ajouter un flux"
@ -962,6 +889,99 @@ msgstr ""
msgid "Enable equalizer"
msgstr ""
#, fuzzy
#~ msgid ""
#~ "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
#~ "REC-html40/strict.dtd\">\n"
#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/"
#~ "css\">\n"
#~ "p, li { white-space: pre-wrap; }\n"
#~ "</style></head><body style=\" font-family:'Sans'; font-size:9pt; font-"
#~ "weight:400; font-style:normal;\">\n"
#~ "<table style=\"-qt-table-type: root; margin-top:4px; margin-bottom:4px; "
#~ "margin-left:4px; margin-right:4px;\">\n"
#~ "<tr>\n"
#~ "<td style=\"border: none;\">\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
#~ "google.com/p/clementine-player/\"><span style=\" font-family:'Sans "
#~ "Serif'; text-decoration: underline; color:#0057ae;\">http://code.google."
#~ "com/p/clementine-player/</span></a></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; "
#~ "font-family:'Sans Serif';\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif'; font-weight:600;\">Authors:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">David Sansome &lt;</span><a href=\"mailto:"
#~ "me@davidsansome.com\"><span style=\" font-family:'Sans Serif'; text-"
#~ "decoration: underline; color:#0057ae;\">me@davidsansome.com</span></"
#~ "a><span style=\" font-family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; "
#~ "font-family:'Sans Serif';\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif'; font-weight:600;\">Thanks to:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">Mark Kretschmann &lt;</span><a href=\"mailto:"
#~ "markey@web.de\"><span style=\" font-family:'Sans Serif'; text-decoration: "
#~ "underline; color:#0057ae;\">markey@web.de</span></a><span style=\" font-"
#~ "family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">Max Howell &lt;</span><a href=\"mailto:max."
#~ "howell@methylblue.com\"><span style=\" font-family:'Sans Serif'; text-"
#~ "decoration: underline; color:#0057ae;\">max.howell@methylblue.com</span></"
#~ "a><span style=\" font-family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">... and all the Amarok contributors</span></p></"
#~ "td></tr></table></body></html>"
#~ msgstr ""
#~ "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
#~ "REC-html40/strict.dtd\">\n"
#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/"
#~ "css\">\n"
#~ "p, li { white-space: pre-wrap; }\n"
#~ "</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; "
#~ "font-weight:400; font-style:normal;\">\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
#~ "google.com/p/clementine-player/\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">http://code.google.com/p/clementine-player/</"
#~ "span></a></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"
#~ "\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "weight:600;\">Auteurs :</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a "
#~ "href=\"mailto:me@davidsansome.com\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"
#~ "\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "weight:600;\">Remerciements à :</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
#~ "href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
#~ "color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
#~ "\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">... ainsi qu'à tous "
#~ "ceux qui ont contribué à Amarok</p></body></html>"
#~ msgid "&Hide tray icon"
#~ msgstr "&Masquer l'icône"

View File

@ -332,6 +332,12 @@ msgstr "O programie %1"
msgid "Version %1"
msgstr "Wersja %1"
msgid "Authors"
msgstr ""
msgid "Thanks to"
msgstr ""
msgid "Add another stream..."
msgstr "Dodaj następny strumień..."
@ -791,85 +797,6 @@ msgstr "Wybierz kolor..."
msgid "Version"
msgstr "Wersja"
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
"google.com/p/clementine-player/\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">http://code.google.com/p/clementine-player/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Authors:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a href="
"\"mailto:me@davidsansome.com\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Thanks to:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
"href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
"\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
"underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">... and all the Amarok "
"contributors</p></body></html>"
msgstr ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
"google.com/p/clementine-player/\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">http://code.google.com/p/clementine-player/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Autorzy:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a href="
"\"mailto:me@davidsansome.com\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Podziękowania dla:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
"href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
"\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
"underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">...oraz dla wszystkich "
"zaangażowanych w rozwój Amaroka.</p></body></html>"
msgid "Add Stream"
msgstr "Dodaj URL"
@ -954,5 +881,98 @@ msgstr ""
msgid "Enable equalizer"
msgstr ""
#, fuzzy
#~ msgid ""
#~ "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
#~ "REC-html40/strict.dtd\">\n"
#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/"
#~ "css\">\n"
#~ "p, li { white-space: pre-wrap; }\n"
#~ "</style></head><body style=\" font-family:'Sans'; font-size:9pt; font-"
#~ "weight:400; font-style:normal;\">\n"
#~ "<table style=\"-qt-table-type: root; margin-top:4px; margin-bottom:4px; "
#~ "margin-left:4px; margin-right:4px;\">\n"
#~ "<tr>\n"
#~ "<td style=\"border: none;\">\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
#~ "google.com/p/clementine-player/\"><span style=\" font-family:'Sans "
#~ "Serif'; text-decoration: underline; color:#0057ae;\">http://code.google."
#~ "com/p/clementine-player/</span></a></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; "
#~ "font-family:'Sans Serif';\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif'; font-weight:600;\">Authors:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">David Sansome &lt;</span><a href=\"mailto:"
#~ "me@davidsansome.com\"><span style=\" font-family:'Sans Serif'; text-"
#~ "decoration: underline; color:#0057ae;\">me@davidsansome.com</span></"
#~ "a><span style=\" font-family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; "
#~ "font-family:'Sans Serif';\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif'; font-weight:600;\">Thanks to:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">Mark Kretschmann &lt;</span><a href=\"mailto:"
#~ "markey@web.de\"><span style=\" font-family:'Sans Serif'; text-decoration: "
#~ "underline; color:#0057ae;\">markey@web.de</span></a><span style=\" font-"
#~ "family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">Max Howell &lt;</span><a href=\"mailto:max."
#~ "howell@methylblue.com\"><span style=\" font-family:'Sans Serif'; text-"
#~ "decoration: underline; color:#0057ae;\">max.howell@methylblue.com</span></"
#~ "a><span style=\" font-family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">... and all the Amarok contributors</span></p></"
#~ "td></tr></table></body></html>"
#~ msgstr ""
#~ "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
#~ "REC-html40/strict.dtd\">\n"
#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/"
#~ "css\">\n"
#~ "p, li { white-space: pre-wrap; }\n"
#~ "</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; "
#~ "font-weight:400; font-style:normal;\">\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
#~ "google.com/p/clementine-player/\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">http://code.google.com/p/clementine-player/</"
#~ "span></a></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"
#~ "\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "weight:600;\">Autorzy:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a "
#~ "href=\"mailto:me@davidsansome.com\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"
#~ "\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "weight:600;\">Podziękowania dla:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
#~ "href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
#~ "color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
#~ "\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">...oraz dla wszystkich "
#~ "zaangażowanych w rozwój Amaroka.</p></body></html>"
#~ msgid "&Hide tray icon"
#~ msgstr "&Ukryj ikonę w trayu"

View File

@ -333,6 +333,12 @@ msgstr "О программе %1"
msgid "Version %1"
msgstr "Версия %1"
msgid "Authors"
msgstr ""
msgid "Thanks to"
msgstr ""
msgid "Add another stream..."
msgstr "Добавить другой поток..."
@ -790,85 +796,6 @@ msgstr ""
msgid "Version"
msgstr "Версия"
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
"google.com/p/clementine-player/\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">http://code.google.com/p/clementine-player/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Authors:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a href="
"\"mailto:me@davidsansome.com\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Thanks to:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
"href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
"\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
"underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">... and all the Amarok "
"contributors</p></body></html>"
msgstr ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
"google.com/p/clementine-player/\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">http://code.google.com/p/clementine-player/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Авторы:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a href="
"\"mailto:me@davidsansome.com\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Выражаем благодарность:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
"href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
"\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
"underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">... и всем создателям "
"Amarok</p></body></html>"
msgid "Add Stream"
msgstr "Добавить поток"
@ -953,5 +880,98 @@ msgstr ""
msgid "Enable equalizer"
msgstr ""
#, fuzzy
#~ msgid ""
#~ "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
#~ "REC-html40/strict.dtd\">\n"
#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/"
#~ "css\">\n"
#~ "p, li { white-space: pre-wrap; }\n"
#~ "</style></head><body style=\" font-family:'Sans'; font-size:9pt; font-"
#~ "weight:400; font-style:normal;\">\n"
#~ "<table style=\"-qt-table-type: root; margin-top:4px; margin-bottom:4px; "
#~ "margin-left:4px; margin-right:4px;\">\n"
#~ "<tr>\n"
#~ "<td style=\"border: none;\">\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
#~ "google.com/p/clementine-player/\"><span style=\" font-family:'Sans "
#~ "Serif'; text-decoration: underline; color:#0057ae;\">http://code.google."
#~ "com/p/clementine-player/</span></a></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; "
#~ "font-family:'Sans Serif';\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif'; font-weight:600;\">Authors:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">David Sansome &lt;</span><a href=\"mailto:"
#~ "me@davidsansome.com\"><span style=\" font-family:'Sans Serif'; text-"
#~ "decoration: underline; color:#0057ae;\">me@davidsansome.com</span></"
#~ "a><span style=\" font-family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; "
#~ "font-family:'Sans Serif';\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif'; font-weight:600;\">Thanks to:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">Mark Kretschmann &lt;</span><a href=\"mailto:"
#~ "markey@web.de\"><span style=\" font-family:'Sans Serif'; text-decoration: "
#~ "underline; color:#0057ae;\">markey@web.de</span></a><span style=\" font-"
#~ "family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">Max Howell &lt;</span><a href=\"mailto:max."
#~ "howell@methylblue.com\"><span style=\" font-family:'Sans Serif'; text-"
#~ "decoration: underline; color:#0057ae;\">max.howell@methylblue.com</span></"
#~ "a><span style=\" font-family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">... and all the Amarok contributors</span></p></"
#~ "td></tr></table></body></html>"
#~ msgstr ""
#~ "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
#~ "REC-html40/strict.dtd\">\n"
#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/"
#~ "css\">\n"
#~ "p, li { white-space: pre-wrap; }\n"
#~ "</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; "
#~ "font-weight:400; font-style:normal;\">\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
#~ "google.com/p/clementine-player/\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">http://code.google.com/p/clementine-player/</"
#~ "span></a></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"
#~ "\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "weight:600;\">Авторы:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a "
#~ "href=\"mailto:me@davidsansome.com\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"
#~ "\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "weight:600;\">Выражаем благодарность:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
#~ "href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
#~ "color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
#~ "\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">... и всем создателям "
#~ "Amarok</p></body></html>"
#~ msgid "Don't show notifications"
#~ msgstr "Не показывать"

View File

@ -332,6 +332,12 @@ msgstr "O programe %1"
msgid "Version %1"
msgstr "Verzia %1"
msgid "Authors"
msgstr ""
msgid "Thanks to"
msgstr ""
msgid "Add another stream..."
msgstr "Pridať ďalší stream..."
@ -796,85 +802,6 @@ msgstr "Vybrať farbu..."
msgid "Version"
msgstr "Verzia"
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
"google.com/p/clementine-player/\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">http://code.google.com/p/clementine-player/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Authors:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a href="
"\"mailto:me@davidsansome.com\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Thanks to:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
"href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
"\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
"underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">... and all the Amarok "
"contributors</p></body></html>"
msgstr ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
"google.com/p/clementine-player/\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">http://code.google.com/p/clementine-player/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Autori:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a href="
"\"mailto:me@davidsansome.com\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Poďakovanie:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
"href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
"\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
"underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">... a všetkým "
"prispievateľom Amarok-u.</p></body></html>"
msgid "Add Stream"
msgstr "Pridať stream"
@ -959,6 +886,99 @@ msgstr ""
msgid "Enable equalizer"
msgstr ""
#, fuzzy
#~ msgid ""
#~ "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
#~ "REC-html40/strict.dtd\">\n"
#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/"
#~ "css\">\n"
#~ "p, li { white-space: pre-wrap; }\n"
#~ "</style></head><body style=\" font-family:'Sans'; font-size:9pt; font-"
#~ "weight:400; font-style:normal;\">\n"
#~ "<table style=\"-qt-table-type: root; margin-top:4px; margin-bottom:4px; "
#~ "margin-left:4px; margin-right:4px;\">\n"
#~ "<tr>\n"
#~ "<td style=\"border: none;\">\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
#~ "google.com/p/clementine-player/\"><span style=\" font-family:'Sans "
#~ "Serif'; text-decoration: underline; color:#0057ae;\">http://code.google."
#~ "com/p/clementine-player/</span></a></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; "
#~ "font-family:'Sans Serif';\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif'; font-weight:600;\">Authors:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">David Sansome &lt;</span><a href=\"mailto:"
#~ "me@davidsansome.com\"><span style=\" font-family:'Sans Serif'; text-"
#~ "decoration: underline; color:#0057ae;\">me@davidsansome.com</span></"
#~ "a><span style=\" font-family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; "
#~ "font-family:'Sans Serif';\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif'; font-weight:600;\">Thanks to:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">Mark Kretschmann &lt;</span><a href=\"mailto:"
#~ "markey@web.de\"><span style=\" font-family:'Sans Serif'; text-decoration: "
#~ "underline; color:#0057ae;\">markey@web.de</span></a><span style=\" font-"
#~ "family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">Max Howell &lt;</span><a href=\"mailto:max."
#~ "howell@methylblue.com\"><span style=\" font-family:'Sans Serif'; text-"
#~ "decoration: underline; color:#0057ae;\">max.howell@methylblue.com</span></"
#~ "a><span style=\" font-family:'Sans Serif';\">&gt;</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "family:'Sans Serif';\">... and all the Amarok contributors</span></p></"
#~ "td></tr></table></body></html>"
#~ msgstr ""
#~ "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
#~ "REC-html40/strict.dtd\">\n"
#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/"
#~ "css\">\n"
#~ "p, li { white-space: pre-wrap; }\n"
#~ "</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; "
#~ "font-weight:400; font-style:normal;\">\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
#~ "google.com/p/clementine-player/\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">http://code.google.com/p/clementine-player/</"
#~ "span></a></p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"
#~ "\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "weight:600;\">Autori:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a "
#~ "href=\"mailto:me@davidsansome.com\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"
#~ "\"></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
#~ "weight:600;\">Poďakovanie:</span></p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
#~ "href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
#~ "color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
#~ "\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
#~ "underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">... a všetkým "
#~ "prispievateľom Amarok-u.</p></body></html>"
#~ msgid "&Hide tray icon"
#~ msgstr "&Skryť tray ikonu"

View File

@ -331,6 +331,12 @@ msgstr ""
msgid "Version %1"
msgstr ""
msgid "Authors"
msgstr ""
msgid "Thanks to"
msgstr ""
msgid "Add another stream..."
msgstr ""
@ -780,47 +786,6 @@ msgstr ""
msgid "Version"
msgstr ""
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://code."
"google.com/p/clementine-player/\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">http://code.google.com/p/clementine-player/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Authors:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">David Sansome &lt;<a href="
"\"mailto:me@davidsansome.com\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">me@davidsansome.com</span></a>&gt;</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Thanks to:</span></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Mark Kretschmann &lt;<a "
"href=\"mailto:markey@web.de\"><span style=\" text-decoration: underline; "
"color:#0057ae;\">markey@web.de</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Max Howell &lt;<a href="
"\"mailto:max.howell@methylblue.com\"><span style=\" text-decoration: "
"underline; color:#0057ae;\">max.howell@methylblue.com</span></a>&gt;</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">... and all the Amarok "
"contributors</p></body></html>"
msgstr ""
msgid "Add Stream"
msgstr ""