forked from hluk/CopyQ
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
Adam Batkin <[email protected]> | ||
Giacomo Margarito <[email protected]> | ||
Greg Carp <[email protected]> | ||
Ilya Plenne <[email protected]> | ||
Jörg Thalheim <[email protected]> | ||
Kim Jzhone <[email protected]> | ||
Kos Ivantsov <[email protected]> | ||
lightonflux <[email protected]> | ||
Lukas Holecek <[email protected]> | ||
Martin Lepadusch <[email protected]> | ||
Matt d'Entremont <[email protected]> | ||
Michal Čihař <[email protected]> | ||
Patricio M. Ros <[email protected]> | ||
Ryan Wooden <[email protected]> | ||
Scott Kostyshak <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ QString helpLink(const QString &name, const QString &link) | |
QString helpDeveloper(const char *name, const char *mail) | ||
{ | ||
return QString("<div>%1 <span class='h3'>%2</span></div>") | ||
.arg(name) | ||
.arg(QString::fromUtf8(name)) | ||
.arg(mail); | ||
} | ||
|
||
|
@@ -125,7 +125,7 @@ QString AboutDialog::aboutPage() | |
|
||
"<p>" | ||
"<table class='links'>" | ||
+ helpLink( tr("Author"), "Lukáš Holeček" ) | ||
+ helpLink( tr("Author"), QString::fromUtf8("Lukáš Holeček") ) | ||
+ helpLink( tr("E-mail"), helpMail("[email protected]") ) | ||
+ helpLink( tr("Web"), helpUrl("http://hluk.github.io/CopyQ/") ) | ||
+ helpLink( tr("Wiki"), helpUrl("https://sourceforge.net/p/copyq/wiki/Home/") ) | ||
|
@@ -142,11 +142,17 @@ QString AboutDialog::aboutPage() | |
"<p class=\"pp\">" | ||
// developers | ||
+ helpDeveloper("Adam Batkin", "[email protected]") | ||
+ helpDeveloper("Giacomo Margarito", "[email protected]") | ||
+ helpDeveloper("Greg Carp", "[email protected]") | ||
+ helpDeveloper("Ilya Plenne", "[email protected]") | ||
+ helpDeveloper("Jörg Thalheim", "[email protected]") | ||
+ helpDeveloper("Jörg Thalheim", "[email protected]") | ||
+ helpDeveloper("Kim Jzhone", "[email protected]") | ||
+ helpDeveloper("Kos Ivantsov", "[email protected]") | ||
+ helpDeveloper("lightonflux", "[email protected]") | ||
+ helpDeveloper("Lukas Holecek", "[email protected]") | ||
+ helpDeveloper("Martin Lepadusch", "[email protected]") | ||
+ helpDeveloper("Matt d'Entremont", "[email protected]") | ||
+ helpDeveloper("Michal Čihař", "[email protected]") | ||
+ helpDeveloper("Patricio M. Ros", "[email protected]") | ||
+ helpDeveloper("Ryan Wooden", "[email protected]") | ||
+ helpDeveloper("Scott Kostyshak", "[email protected]") | ||
|