~ubuntu-branches/ubuntu/breezy/koffice/breezy

« back to all changes in this revision

Viewing changes to kword/kwaboutdata.h

  • Committer: Bazaar Package Importer
  • Author(s): Ben Burton
  • Date: 2004-05-09 11:33:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040509113300-vfrdadqsvjfuhn3b
Tags: 1:1.3.1-1
* New upstream bugfix release.
* Built against newer imagemagick (closes: #246623).
* Made koffice-libs/kformula recommend/depend on latex-xft-fonts, which
  provides mathematical fonts that the formula editor can use.  Also
  patched the kformula part to make these fonts the default.
* Changed kword menu hint from "WordProcessors" to "Word processors"
  (closes: #246209).
* Spellchecker configuration is now fixed (closes: #221256, #227568).

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <kaboutdata.h>
24
24
#include <klocale.h>
 
25
#include <config.h> // for VERSION
25
26
 
26
27
static const char* KWORD_DESCRIPTION=I18N_NOOP("KOffice Word Processor");
27
28
// First official public release Oct 2000 version 0.8
28
29
// KOffice-1.1-beta1: version 0.9
29
30
// KOffice-1.1-beta2: version 1.1 (to remove confusion)
30
 
static const char* KWORD_VERSION="1.1.1";
 
31
// KOffice-1.2: version 1.2
 
32
// From then on: always the same as the KOffice version
 
33
static const char* KWORD_VERSION=VERSION;
31
34
 
32
35
KAboutData * newKWordAboutData()
33
36
{
34
37
    KAboutData * aboutData=new KAboutData( "kword", I18N_NOOP("KWord"),
35
 
                                           KWORD_VERSION, KWORD_DESCRIPTION, KAboutData::License_GPL,
36
 
                                           I18N_NOOP("(c) 1998-2001, The KWord Team"), 0, 
 
38
                                           KWORD_VERSION, KWORD_DESCRIPTION, KAboutData::License_LGPL,
 
39
                                           I18N_NOOP("(c) 1998-2004, The KWord Team"), 0,
37
40
                                           "http://www.koffice.org/kword/" );
 
41
    aboutData->addAuthor("David Faure", 0, "faure@kde.org");
38
42
    aboutData->addAuthor("Reginald Stadlbauer", 0, "reggie@kde.org");
39
 
    aboutData->addAuthor("Thomas Zander", 0, "zander@kde.org");
40
 
    aboutData->addAuthor("David Faure", 0, "david@mandrakesoft.com");
41
 
    aboutData->addAuthor("Laurent Montel", 0, "lmontel@mandrakesoft.com");
 
43
    aboutData->addAuthor("Thomas Zander");
 
44
    aboutData->addAuthor("Laurent Montel", 0, "montel@kde.org");
42
45
    aboutData->addAuthor("Sven Lüppken", 0, "sven@kde.org");
 
46
    aboutData->addAuthor("Frank Dekervel", 0, "Frank.dekervel@student.kuleuven.ac.Be");
 
47
    aboutData->addAuthor("Krister Wicksell Eriksson", 0, "krister.wicksell@spray.se");
 
48
    aboutData->addAuthor("Dag Andersen", 0, "danders@get2net.dk");
 
49
    aboutData->addAuthor("Nash Hoogwater", 0, "nrhoogwater@wanadoo.nl");
 
50
    aboutData->addAuthor("Ulrich Kuettler", I18N_NOOP("KFormula"), "ulrich.kuettler@mailbox.tu-dresden.de");
 
51
    // filter developers
 
52
    aboutData->addAuthor("Shaheed Haque", 0, "srhaque@iee.org");
 
53
    aboutData->addAuthor("Werner Trobin", 0, "trobin@kde.org");
 
54
    aboutData->addAuthor("Nicolas Goutte", 0, "goutte@kde.org");
 
55
    aboutData->addAuthor("Ariya Hidayat", 0, "ariya@kde.org");
 
56
    aboutData->addAuthor("Clarence Dang", 0, "dang@kde.org");
 
57
    aboutData->addAuthor("Robert Jacolin", 0, "rjacolin@ifrance.com");
 
58
    aboutData->addAuthor("Enno Bartels", 0, "ebartels@nwn.de");
 
59
    aboutData->addAuthor("Ewald Snel", 0, "ewald@rambo.its.tudelft.nl");
 
60
    aboutData->addAuthor("Tomasz Grobelny", 0, "grotk@poczta.onet.pl");
 
61
    aboutData->addAuthor("Michael Johnson", 0, "mikej@xnet.com");
43
62
    return aboutData;
44
63
}
45
64