Add ari-tczew to the about box, and sort the list of people

This commit is contained in:
David Sansome 2010-12-06 21:11:11 +00:00
parent d17703d39a
commit ea725cb5f7
3 changed files with 52 additions and 1 deletions

View File

@ -588,6 +588,51 @@ msgstr "Überblenden bei automatischem Stückwechsel"
msgid "Cross-fade when changing tracks manually"
msgstr "Überblenden bei manuellem Stückwechsel"
msgid "Ctrl+Alt+V"
msgstr ""
msgid "Ctrl+B"
msgstr ""
msgid "Ctrl+E"
msgstr ""
msgid "Ctrl+H"
msgstr ""
msgid "Ctrl+J"
msgstr ""
msgid "Ctrl+K"
msgstr ""
msgid "Ctrl+L"
msgstr ""
msgid "Ctrl+M"
msgstr ""
msgid "Ctrl+N"
msgstr ""
msgid "Ctrl+O"
msgstr ""
msgid "Ctrl+P"
msgstr ""
msgid "Ctrl+Q"
msgstr ""
msgid "Ctrl+S"
msgstr ""
msgid "Ctrl+Shift+A"
msgstr ""
msgid "Ctrl+Shift+O"
msgstr ""
msgid "Custom"
msgstr "Benutzerdefiniert"

View File

@ -44,7 +44,11 @@ About::About(QWidget *parent)
<< Person("Jakub Stachowski", "qbast@go2.pl")
<< Person("Paul Cifarelli", "paul@cifarelli.net")
<< Person("Felipe Rivera", "liebremx@users.sourceforge.net")
<< Person("Alexander Peitz");
<< Person("Alexander Peitz")
<< Person("Artur Rona", "artur.rona@gmail.com");
qSort(authors_);
qSort(thanks_to_);
ui_.content->setHtml(MakeHtml());
}

View File

@ -32,6 +32,8 @@ class About : public QDialog {
struct Person {
Person(const QString& n, const QString& e = QString()) : name(n), email(e) {}
bool operator <(const Person& other) const { return name < other.name; }
QString name;
QString email;
};