~ubuntu-branches/ubuntu/lucid/kmess/lucid

« back to all changes in this revision

Viewing changes to src/main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2009-12-05 21:19:26 UTC
  • mfrom: (1.1.7 upstream) (0.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20091205211926-r26u8j38kysf6o2p
Tags: 2.0.2-1
* New upstream release 
  - Fixes friendly names (LP: #485640)
* Update Homepage: http://kmess.org
* Add Build-Depends: libphonon-dev | libqt4-phonon-dev (ubuntu friendly)
* kmess.1 fix lintian:hyphen-used-as-minus-sign

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
 */
36
36
int main(int argc, char *argv[])
37
37
{
 
38
  Q_INIT_RESOURCE( isfqtresources );
38
39
  // Init about dialog.
39
40
  // Tab 1: General
40
41
  KAboutData aboutData( "kmess",                                   // internal name
48
49
                              "(c) 2007-2009, Valerio Pilo\n"
49
50
                              "(c) 2008-2009, Antonio Nastasi\n"
50
51
                              "(c) 2008-2009, Ruben Vandamme\n"
51
 
                              "(c) 2009, Sjors Gielen\n"),
 
52
                              "(c) 2009, Sjors Gielen\n"
 
53
                              "(c) 2009, Adam Goossens\n"),
52
54
                        KLocalizedString(),
53
55
                        "http://www.kmess.org/",                   // home page
54
56
                        "bugs" "@" "kmess" "." "org"               // address for bugs
173
175
  // Vincent Fretin (MSN6 emoticon definitions) already above
174
176
  aboutData.addCredit( ki18n("Damien Sandras"),            ki18n("GnomeMeeting developer"),          "dsandras" "@" "seconix" "." "com");
175
177
  aboutData.addCredit( ki18n("Tobias Tönjes"),             ki18n("Guy with a bag over his head"),    "");
 
178
  aboutData.addCredit( ki18n("Camille Begue"),             ki18n("Chat History functionality when disconnected, autologin checkbox on login screen"),    "prsieux" "@" "@gmail" "." "com");
 
179
  aboutData.addCredit( ki18n("David López"),               ki18n("Nudge button in chat"),            "grannost" "@" "gmail" "." "com" );
 
180
  aboutData.addCredit( ki18n("Pieterjan Camerlynck"),      ki18n("Roaming Service support"),         "pieterjan" "." "camerlynck" "@" "gmail" "." "com" );
 
181
  aboutData.addCredit( ki18n("Anastasios Bourazanis"),     ki18n("Emoticon preview in settings page,clickable contact properties dialog text"), "a.brzns" "@" "gmail" "." "com");
176
182
 
177
183
  // Other apps
178
184
  aboutData.addCredit( ki18n("KMerlin (kmerlin.olsd.de)"), ki18n("Inspiration and assorted code"));
200
206
  // make sure we can run tests fast.
201
207
#ifdef KMESSTEST
202
208
  options.add( "runtest <test>", ki18n("Run a debug test (developer build only)") );
 
209
  options.add( "server <address>",
 
210
               ki18n("Connect to the specified server instead of the official Live server.\n"
 
211
                     "Use \"localhost\" or \"127.0.0.1\" to connect to a local KMess Test Server.") );
203
212
#endif
204
213
 
205
214