thanks to translators in 'about' dialog
This commit is contained in:
parent
c879dff20e
commit
fae96f00de
|
@ -39,7 +39,7 @@ About::About(QWidget *parent)
|
||||||
|
|
||||||
authors_ << Person("David Sansome", "me@davidsansome.com")
|
authors_ << Person("David Sansome", "me@davidsansome.com")
|
||||||
<< Person("John Maguire", "john.maguire@gmail.com")
|
<< Person("John Maguire", "john.maguire@gmail.com")
|
||||||
<< Person("Keiran", "keirangtp@gmail.com");
|
<< Person(QString::fromUtf8("Paweł Bara"), "keirangtp@gmail.com");
|
||||||
thanks_to_ << Person("Mark Kretschmann", "kretschmann@kde.org")
|
thanks_to_ << Person("Mark Kretschmann", "kretschmann@kde.org")
|
||||||
<< Person("Max Howell", "max.howell@methylblue.com")
|
<< Person("Max Howell", "max.howell@methylblue.com")
|
||||||
<< Person(QString::fromUtf8("Bartłomiej Burdukiewicz"), "dev.strikeu@gmail.com")
|
<< Person(QString::fromUtf8("Bartłomiej Burdukiewicz"), "dev.strikeu@gmail.com")
|
||||||
|
@ -68,6 +68,8 @@ QString About::MakeHtml() const {
|
||||||
|
|
||||||
foreach (const Person& person, thanks_to_)
|
foreach (const Person& person, thanks_to_)
|
||||||
ret += "<br />" + MakeHtml(person);
|
ret += "<br />" + MakeHtml(person);
|
||||||
|
ret += QString("<br />" + tr("All the translators") + " <<a href=\"https://translations.launchpad.net/clementine\">"
|
||||||
|
"https://translations.launchpad.net/clementine</a>>");
|
||||||
|
|
||||||
ret += QString("<br />%1</p>").arg(tr("...and all the Amarok contributors"));
|
ret += QString("<br />%1</p>").arg(tr("...and all the Amarok contributors"));
|
||||||
ret += QString("<p><b>%1</b>").arg(tr("And:"));
|
ret += QString("<p><b>%1</b>").arg(tr("And:"));
|
||||||
|
|
|
@ -6,8 +6,8 @@
|
||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>488</width>
|
<width>652</width>
|
||||||
<height>415</height>
|
<height>470</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowIcon">
|
<property name="windowIcon">
|
||||||
|
|
Loading…
Reference in New Issue