From ea725cb5f7cb501be45928c10207813e4acd1b56 Mon Sep 17 00:00:00 2001 From: David Sansome Date: Mon, 6 Dec 2010 21:11:11 +0000 Subject: [PATCH] Add ari-tczew to the about box, and sort the list of people --- src/translations/de.po | 45 ++++++++++++++++++++++++++++++++++++++++++ src/ui/about.cpp | 6 +++++- src/ui/about.h | 2 ++ 3 files changed, 52 insertions(+), 1 deletion(-) diff --git a/src/translations/de.po b/src/translations/de.po index 0ce3e6205..6539e5c71 100644 --- a/src/translations/de.po +++ b/src/translations/de.po @@ -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" diff --git a/src/ui/about.cpp b/src/ui/about.cpp index 9f1dca9d7..e1eb275c5 100644 --- a/src/ui/about.cpp +++ b/src/ui/about.cpp @@ -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()); } diff --git a/src/ui/about.h b/src/ui/about.h index a080de9b5..285f2c509 100644 --- a/src/ui/about.h +++ b/src/ui/about.h @@ -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; };