diff --git a/utilities/assistants/calendar/wizard/calintropage.cpp b/utilities/assistants/calendar/wizard/calintropage.cpp index 2e3f502784..f58b7dff57 100644 --- a/utilities/assistants/calendar/wizard/calintropage.cpp +++ b/utilities/assistants/calendar/wizard/calintropage.cpp @@ -1,74 +1,74 @@ /* ============================================================ * * This file is a part of digiKam project * http://www.digikam.org * * Date : 2017-06-27 * Description : a tool to create calendar. * * Copyright (C) 2017 by Gilles Caulier * * This program is free software; you can redistribute it * and/or modify it under the terms of the GNU General * Public License as published by the Free Software Foundation; * either version 2, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * ============================================================ */ #include "calintropage.h" // Qt includes #include #include #include // KDE includes #include // Local includes #include "digikam_config.h" #include "digikam_debug.h" #include "dlayoutbox.h" #include "calwizard.h" namespace Digikam { CalIntroPage::CalIntroPage(QWizard* const dialog, const QString& title) : DWizardPage(dialog, title) { DVBox* const vbox = new DVBox(this); QLabel* const desc = new QLabel(vbox); desc->setWordWrap(true); desc->setOpenExternalLinks(true); desc->setText(i18n("" "

Welcome to Calendar Tool

" "

This assistant will guide you to create " - "and print a calendar with a selction of images taken " + "and print a calendar with a selection of images taken " "from your collection.

" #ifdef HAVE_KCALENDAR "

This tool will also permit to set specific dates " "on your calendar using external data event files as " "vCalendar, and " "iCalendar formats.

" #endif "
")); setPageWidget(vbox); setLeftBottomPix(QIcon::fromTheme(QLatin1String("office-calendar"))); } CalIntroPage::~CalIntroPage() { } } // namespace Digikam