-rw-r--r-- | kmicromail/mainwindow.cpp | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/kmicromail/mainwindow.cpp b/kmicromail/mainwindow.cpp index 24196b4..e020297 100644 --- a/kmicromail/mainwindow.cpp +++ b/kmicromail/mainwindow.cpp @@ -175,9 +175,34 @@ void MainWindow::showLicence() KApplication::showLicence(); } void MainWindow::showAbout() { - qDebug("MainWindow::showAbout() "); + QString version; +#include <../version> + + QString cap = "About KOpieMail/Pi"; + QString text = i18n("KOpieMail/Platform-independent\n") + + "(OM/Pi) " + version + " - " + +#ifdef DESKTOP_VERSION + "Desktop Edition\n" +#else + "PDA-Edition\nfor: Zaurus 5x00 / 7x0 / 8x0\n" +#endif + "www.pi-sync.net\n\n" + + + +"Copyright (c) 2004 Lutz Rogowski <lutz@pi-sync.net>\n" + "KOpieMail/Pi is based on Opie Mail\n" + "Copyright (c) Rajko Albrecht and the Opie team\n" + "KOpieMail/Pi is licensed under the GPL\n" + "\n" + "KOpieMail/Pi uses LibEtPan - a mail stuff library\n" + "Copyright (C) 2001, 2002 - DINH Viet Hoa\n" + "libEtPan has its own licence - see LibEtPan licence\n"; + + KApplication::showText( cap, text ); } void MainWindow::showEtpanLicence() { KApplication::showFile( "LibEtPan licence", "kdepim/kmicromail/COPYRIGHTlibetpan" ); |