french -> French
[kdepim.git] / kaddressbook / aboutdata.cpp
blob7ae000d2e1af299cb26c48358307e94231e54e3f
1 /*
2 This file is part of KAddressBook.
4 Copyright (c) 2009, 2012 Laurent Montel <montel@kde.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #include "aboutdata.h"
23 #include "kdepim-version.h"
25 #include <KLocale>
27 AboutData::AboutData()
28 : KAboutData( "kaddressbook", 0, ki18n( "KAddressBook" ),
29 KDEPIM_VERSION, ki18n( "The KDE Address Book Application" ),
30 KAboutData::License_GPL_V2,
31 ki18n( "Copyright © 2007–2013 KAddressBook authors" ) )
33 addAuthor( ki18n( "Laurent Montel" ), ki18n( "Current maintainer" ), "montel@kde.org" );
34 addAuthor( ki18n( "Tobias Koenig" ), ki18n( "Previous maintainer" ), "tokoe@kde.org" );
37 AboutData::~AboutData()