~ubuntu-branches/ubuntu/maverick/minitube/maverick

« back to all changes in this revision

Viewing changes to src/AboutView.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jakob Haufe
  • Date: 2010-07-27 23:04:09 UTC
  • mto: (1.1.3 sid)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100727230409-u3tr25drgif3b4pm
Tags: upstream-1.1
Import upstream version 1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include "AboutView.h"
2
 
#include "Constants.h"
 
2
#include "constants.h"
3
3
 
4
4
AboutView::AboutView(QWidget *parent) : QWidget(parent) {
5
5
 
20
20
                   "<p>" + tr("There's life outside the browser!") + "</p>"
21
21
                   "<p>" + tr("Version %1").arg(Constants::VERSION) + "</p>"
22
22
                   + QString("<p><a href=\"%1/\">%1</a></p>").arg(Constants::WEBSITE) +
23
 
 
 
23
#if !defined(APP_MAC) && !defined(Q_WS_WIN)
24
24
                   "<p>" +  tr("%1 is Free Software but its development takes precious time.").arg(Constants::APP_NAME) + "<br/>"
25
25
                   + tr("Please <a href='%1'>donate</a> to support the continued development of %2.")
26
26
                   .arg(QString(Constants::WEBSITE).append("#donate"), Constants::APP_NAME) + "</p>"
27
 
 
 
27
#endif
28
28
                   "<p>" + tr("Report bugs and send in your ideas to %1")
29
29
                   .arg(QString("<a href=\"mailto:%1\">%1</a>").arg(Constants::EMAIL)) + "</p>"
30
30
 
45
45
                                                      "Yaron Shahrabani (he_IL), "
46
46
                                                      "Oleksandr Korneta (uk), "
47
47
                                                      "Inga Muste (lat), "
48
 
                                                      "Srecko Belaic (hr_HR), "
 
48
                                                      "Srecko Belaic & Zvonimir Đeri (hr_HR), "
49
49
                                                      "Miguel Anxo Bouzada (es, gl), "
50
50
                                                      "Guillaume Betous & Mathieu Dimanche (fr_FR), "
51
51
                                                      "Krisztián Horváth (hu_HU), "
57
57
                                                      "Sderawi (ar), "
58
58
                                                      "Daniel Rodrigues (pt_PT), "
59
59
                                                      "Jesse Jaara (fi_FI), "
60
 
                                                      "Tsvyatko Makazchiev (bg_BG)"
 
60
                                                      "Tsvyatko Makazchiev (bg_BG), "
 
61
                                                      "Changtai Liang (zh_CN)"
61
62
                                                      ) + "</p>"
62
 
 
 
63
#if !defined(APP_MAC) && !defined(Q_WS_WIN)
63
64
                   "<p>" + tr("Released under the <a href='%1'>GNU General Public License</a>")
64
65
                   .arg("http://www.gnu.org/licenses/gpl.html") + "</p>"
65
 
 
 
66
#endif
66
67
                   "<p>&copy; 2009-2010 " + Constants::ORG_NAME + "</p>";
67
68
    QLabel *infoLabel = new QLabel(info, this);
68
69
    infoLabel->setOpenExternalLinks(true);