Index: head/editors/calligraplan/files/patch-git_a7ebecb =================================================================== --- head/editors/calligraplan/files/patch-git_a7ebecb (revision 517618) +++ head/editors/calligraplan/files/patch-git_a7ebecb (nonexistent) @@ -1,98 +0,0 @@ -From a7ebecb9fbee2190e649c44ed53f1299013baa30 Mon Sep 17 00:00:00 2001 -From: Andreas Sturmlechner -Date: Sun, 18 Mar 2018 11:56:57 +0100 -Subject: [PATCH] Fix build with Qt 5.11 (missing headers) - -Reviewers: #calligra:_3.0, anthonyfieroni, danders - -Reviewed By: #calligra:_3.0, anthonyfieroni, danders - -Subscribers: anthonyfieroni, danders - -Tags: #calligra:_3.0 - -Differential Revision: https://phabricator.kde.org/D11454 - ---- src/kptview.h.orig 2018-01-26 09:24:44 UTC -+++ src/kptview.h -@@ -28,6 +28,7 @@ - #include "kptcontext.h" - #include "kptviewbase.h" - -+#include - #include - #include - ---- src/kptviewlist.cpp.orig 2018-01-26 09:24:44 UTC -+++ src/kptviewlist.cpp -@@ -25,6 +25,7 @@ - #include - #include - #include -+#include - #include - - #include ---- src/libs/ui/kptaccountseditor.cpp.orig 2018-01-26 09:24:44 UTC -+++ src/libs/ui/kptaccountseditor.cpp -@@ -40,6 +40,7 @@ - #include - #include - #include -+#include - - #include - #include ---- src/libs/ui/kptdocumentspanel.h.orig 2018-01-26 09:24:44 UTC -+++ src/libs/ui/kptdocumentspanel.h -@@ -26,6 +26,7 @@ - - #include "kptdocuments.h" - -+#include - #include - #include - ---- src/libs/ui/kptitemviewsettup.cpp.orig 2018-01-26 09:24:44 UTC -+++ src/libs/ui/kptitemviewsettup.cpp -@@ -25,8 +25,8 @@ - - #include "KoPageLayoutWidget.h" - -+#include - #include -- - - namespace KPlato - { ---- src/libs/ui/kpttaskeditor.cpp.orig 2018-01-26 09:24:44 UTC -+++ src/libs/ui/kpttaskeditor.cpp -@@ -45,6 +45,7 @@ - #include - #include - #include -+#include - #include - - #include ---- src/libs/ui/reportsgenerator/ReportsGeneratorView.cpp.orig 2018-01-26 09:24:44 UTC -+++ src/libs/ui/reportsgenerator/ReportsGeneratorView.cpp -@@ -31,6 +31,7 @@ - #include - - #include -+#include - #include - #include - #include ---- src/libs/widgets/KoPageLayoutWidget.cpp.orig 2018-01-26 09:24:44 UTC -+++ src/libs/widgets/KoPageLayoutWidget.cpp -@@ -23,6 +23,8 @@ - - #include - -+#include -+ - class Q_DECL_HIDDEN KoPageLayoutWidget::Private - { - public: Property changes on: head/editors/calligraplan/files/patch-git_a7ebecb ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/editors/calligraplan/files/patch-src_plugins_filters_icalendar_export_icalendarexport.cpp =================================================================== --- head/editors/calligraplan/files/patch-src_plugins_filters_icalendar_export_icalendarexport.cpp (revision 517618) +++ head/editors/calligraplan/files/patch-src_plugins_filters_icalendar_export_icalendarexport.cpp (nonexistent) @@ -1,68 +0,0 @@ -From 2d484fda1b31a72659088a4bfce5c3708e923cb0 Mon Sep 17 00:00:00 2001 -From: David Faure -Date: Tue, 23 Jul 2019 12:20:29 +0200 -Subject: Fix compilation after recent KCalCore API changes - - -diff --git a/src/plugins/filters/icalendar/export/icalendarexport.cpp b/src/plugins/filters/icalendar/export/icalendarexport.cpp -index 757d693..5eba36b 100644 ---- src/plugins/filters/icalendar/export/icalendarexport.cpp -+++ src/plugins/filters/icalendar/export/icalendarexport.cpp -@@ -31,6 +31,7 @@ - #include - #include - #include -+#define KCALCORE_VERSION QT_VERSION_CHECK(5,61,0) - - #include - #include -@@ -140,9 +141,15 @@ void ICalendarExport::createTodos(KCalCore::Calendar::Ptr cal, const Node *node, - todo->setOrganizer(node->projectNode()->leader()); - } - if ( node->type() != Node::Type_Project && ! node->leader().isEmpty()) { -+#if KCALCORE_VERSION >= QT_VERSION_CHECK(5, 11, 80) -+ KCalCore::Person p = KCalCore::Person::fromFullName(node->leader()); -+ KCalCore::Attendee a(p.name(), p.email()); -+ a.setRole(KCalCore::Attendee::NonParticipant); -+#else - KCalCore::Person::Ptr p = KCalCore::Person::fromFullName(node->leader()); - KCalCore::Attendee::Ptr a(new KCalCore::Attendee(p->name(), p->email())); - a->setRole(KCalCore::Attendee::NonParticipant); -+#endif - todo->addAttendee(a); - } - DateTime st = node->startTime(id); -@@ -161,13 +168,21 @@ void ICalendarExport::createTodos(KCalCore::Calendar::Ptr cal, const Node *node, - const QList lst = task->requestedResources(); - foreach(const Resource *r, lst) { - if (r->type() == Resource::Type_Work) { -+#if KCALCORE_VERSION >= QT_VERSION_CHECK(5, 11, 80) -+ todo->addAttendee(KCalCore::Attendee(r->name(), r->email())); -+#else - todo->addAttendee(KCalCore::Attendee::Ptr(new KCalCore::Attendee(r->name(), r->email()))); -+#endif - } - } - } else { - foreach(const Resource *r, s->resources()) { - if (r->type() == Resource::Type_Work) { -+#if KCALCORE_VERSION >= QT_VERSION_CHECK(5, 11, 80) -+ todo->addAttendee(KCalCore::Attendee(r->name(), r->email())); -+#else - todo->addAttendee(KCalCore::Attendee::Ptr(new KCalCore::Attendee(r->name(), r->email()))); -+#endif - } - } - -@@ -178,7 +193,11 @@ void ICalendarExport::createTodos(KCalCore::Calendar::Ptr cal, const Node *node, - todo->setPercentComplete(task->completion().percentFinished()); - } - foreach(const Document *doc, node->documents().documents()) { -+#if KCALCORE_VERSION >= QT_VERSION_CHECK(5, 11, 80) -+ todo->addAttachment(KCalCore::Attachment(doc->url().url())); -+#else - todo->addAttachment(KCalCore::Attachment::Ptr(new KCalCore::Attachment(doc->url().url()))); -+#endif - } - if (! parent.isNull()) { - todo->setRelatedTo(parent->uid(), KCalCore::Incidence::RelTypeParent); Property changes on: head/editors/calligraplan/files/patch-src_plugins_filters_icalendar_export_icalendarexport.cpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/editors/calligraplan/files/patch-gentoo-kf5-5.61-headers =================================================================== --- head/editors/calligraplan/files/patch-gentoo-kf5-5.61-headers (revision 517618) +++ head/editors/calligraplan/files/patch-gentoo-kf5-5.61-headers (nonexistent) @@ -1,24 +0,0 @@ -From fe36bf6f0dc1f0c1e927850dd78093cfe3b7aae2 Mon Sep 17 00:00:00 2001 -From: Albert Astals Cid -Date: Sun, 28 Jul 2019 00:07:33 +0200 -Subject: Fix compile on CI - -src/workpackage/view.h:148:31: error: field m_scheduleActions has incomplete type QMap ---- - src/workpackage/view.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/workpackage/view.h b/src/workpackage/view.h -index 6cae32b..cd2fc4e 100644 ---- src/workpackage/view.h -+++ src/workpackage/view.h -@@ -24,6 +24,7 @@ - - #include - -+#include - #include - - class QPrinter; --- -cgit v1.1 Property changes on: head/editors/calligraplan/files/patch-gentoo-kf5-5.61-headers ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/editors/calligraplan/Makefile =================================================================== --- head/editors/calligraplan/Makefile (revision 517618) +++ head/editors/calligraplan/Makefile (revision 517619) @@ -1,29 +1,28 @@ # $FreeBSD$ PORTNAME= calligraplan -DISTVERSION= 3.1.0 -PORTREVISION= 5 +DISTVERSION= 3.2.0 CATEGORIES= editors kde MASTER_SITES= KDE/stable/calligra/${PORTVERSION} DIST_SUBDIR= KDE/${PORTNAME} MAINTAINER= kde@FreeBSD.org COMMENT= KDE Calligra project management application LIB_DEPENDS= libKChart.so:graphics/kdiagram USES= cmake cpe compiler:c++11-lib desktop-file-utils kde:5 \ qt:5 tar:xz xorg USE_KDE= activities akonadi archive auth bookmarks codecs completion config \ configwidgets coreaddons dbusaddons ecm guiaddons holidays i18n \ iconthemes itemmodels itemviews jobwidgets js khtml kio \ notifications parts service solid sonnet textwidgets wallet \ widgetsaddons windowsystem xmlgui \ akonadicontacts calendarcore contacts USE_QT= core dbus gui network printsupport widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xext -PLIST_SUB+= SHLIB_VER=16.0.0 +PLIST_SUB+= SHLIB_VER=17.0.0 .include Index: head/editors/calligraplan/distinfo =================================================================== --- head/editors/calligraplan/distinfo (revision 517618) +++ head/editors/calligraplan/distinfo (revision 517619) @@ -1,3 +1,3 @@ -TIMESTAMP = 1519549530 -SHA256 (KDE/calligraplan/calligraplan-3.1.0.tar.xz) = 59f985bae0482789c13c9440af3bf5da0a1d04756c1c1ccf39f68f66cd3e7ddd -SIZE (KDE/calligraplan/calligraplan-3.1.0.tar.xz) = 3617600 +TIMESTAMP = 1573756651 +SHA256 (KDE/calligraplan/calligraplan-3.2.0.tar.xz) = a12995a129b3c13cd8a12e8efe17a27be86bc42afefc5cb2c62d6797ed4301ce +SIZE (KDE/calligraplan/calligraplan-3.2.0.tar.xz) = 3416652 Index: head/editors/calligraplan/pkg-plist =================================================================== --- head/editors/calligraplan/pkg-plist (revision 517618) +++ head/editors/calligraplan/pkg-plist (revision 517619) @@ -1,397 +1,417 @@ bin/calligraplan bin/calligraplanwork etc/xdg/calligraplanrc etc/xdg/calligraplanworkrc lib/libkdeinit5_calligraplan.so lib/libkdeinit5_calligraplanwork.so -lib/libkplatokernel.so -lib/libkplatokernel.so.16 -lib/libkplatokernel.so.%%SHLIB_VER%% -lib/libkplatomodels.so -lib/libkplatomodels.so.16 -lib/libkplatomodels.so.%%SHLIB_VER%% -lib/libkplatoui.so -lib/libkplatoui.so.16 -lib/libkplatoui.so.%%SHLIB_VER%% +lib/libplankernel.so +lib/libplankernel.so.17 +lib/libplankernel.so.%%SHLIB_VER%% lib/libplankundo2.so -lib/libplankundo2.so.16 +lib/libplankundo2.so.17 lib/libplankundo2.so.%%SHLIB_VER%% lib/libplanmain.so -lib/libplanmain.so.16 +lib/libplanmain.so.17 lib/libplanmain.so.%%SHLIB_VER%% +lib/libplanmodels.so +lib/libplanmodels.so.17 +lib/libplanmodels.so.%%SHLIB_VER%% lib/libplanodf.so -lib/libplanodf.so.16 +lib/libplanodf.so.17 lib/libplanodf.so.%%SHLIB_VER%% lib/libplanplugin.so -lib/libplanplugin.so.16 +lib/libplanplugin.so.17 lib/libplanplugin.so.%%SHLIB_VER%% lib/libplanprivate.so -lib/libplanprivate.so.16 +lib/libplanprivate.so.17 lib/libplanprivate.so.%%SHLIB_VER%% lib/libplanstore.so -lib/libplanstore.so.16 +lib/libplanstore.so.17 lib/libplanstore.so.%%SHLIB_VER%% +lib/libplanui.so +lib/libplanui.so.17 +lib/libplanui.so.%%SHLIB_VER%% lib/libplanwidgets.so -lib/libplanwidgets.so.16 +lib/libplanwidgets.so.17 lib/libplanwidgets.so.%%SHLIB_VER%% lib/libplanwidgetutils.so -lib/libplanwidgetutils.so.16 +lib/libplanwidgetutils.so.17 lib/libplanwidgetutils.so.%%SHLIB_VER%% lib/libplanworkfactory.so -lib/libplanworkfactory.so.16 +lib/libplanworkfactory.so.17 lib/libplanworkfactory.so.%%SHLIB_VER%% %%QT_PLUGINDIR%%/calligraplan/formatfilters/planicalexport.so %%QT_PLUGINDIR%%/calligraplan/formatfilters/plankplatoimport.so +%%QT_PLUGINDIR%%/calligraplan/formatfilters/planplannerimport.so %%QT_PLUGINDIR%%/calligraplan/parts/calligraplanpart.so %%QT_PLUGINDIR%%/calligraplan/schedulers/libplantjscheduler.so %%QT_PLUGINDIR%%/calligraplanworkpart.so share/applications/org.kde.calligraplan.desktop share/applications/org.kde.calligraplanwork.desktop %%DATADIR%%/about/intro.html %%DATADIR%%/about/main.html %%DATADIR%%/about/plan.css %%DATADIR%%/about/tips.html %%DATADIR%%/about/top-left-plan.png %%DATADIR%%/about/tutorial.html %%DATADIR%%/calligraplan_shell.rc %%DATADIR%%/icons/hicolor/22x22/actions/view-task-child-add.png %%DATADIR%%/icons/hicolor/22x22/actions/view-time-schedule-insert.png %%DATADIR%%/icons/hicolor/48x48/actions/template_timechart.png %%DATADIR%%/icons/hicolor/scalable/actions/template_timechart.svgz -%%DATADIR%%/reports/ProjectPerformance.odt +%%DATADIR%%/reports/EmptyTemplate.odt %%DATADIR%%/reports/ProjectPerformanceCost.odt +%%DATADIR%%/reports/ProjectPerformanceEffort.odt %%DATADIR%%/reports/TaskStatus.odt %%DATADIR%%/templates/.source/SharedResources.plant %%DATADIR%%/templates/Simple/.directory %%DATADIR%%/templates/Simple/.source/8HourDay-40HourWeek.plant %%DATADIR%%/templates/Simple/.source/Plain.plant %%DATADIR%%/templates/Simple/8HourDay-40HourWeek.desktop %%DATADIR%%/templates/Simple/Plain.desktop %%DATADIR%%work/icons/hicolor/128x128/actions/template_empty.png %%DATADIR%%work/icons/hicolor/16x16/actions/template_empty.png %%DATADIR%%work/icons/hicolor/22x22/actions/template_empty.png %%DATADIR%%work/icons/hicolor/32x32/actions/template_empty.png %%DATADIR%%work/icons/hicolor/48x48/actions/template_empty.png %%DATADIR%%work/icons/hicolor/64x64/actions/template_empty.png %%DATADIR%%work/templates/Simple/.directory %%DATADIR%%work/templates/Simple/.source/Empty.planworkt %%DATADIR%%work/templates/Simple/Empty.desktop share/config.kcfg/calligraplansettings.kcfg share/config.kcfg/calligraplanworksettings.kcfg share/icons/hicolor/1024x1024/apps/calligraplan.png share/icons/hicolor/128x128/apps/calligraplan.png share/icons/hicolor/128x128/apps/calligraplanwork.png share/icons/hicolor/128x128/mimetypes/application-x-vnd.kde.kplato.png share/icons/hicolor/128x128/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/128x128/mimetypes/application-x-vnd.kde.plan.png share/icons/hicolor/128x128/mimetypes/application-x-vnd.kde.plan.work.png share/icons/hicolor/16x16/apps/calligraplan.png share/icons/hicolor/16x16/apps/calligraplanwork.png share/icons/hicolor/16x16/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/16x16/mimetypes/application-x-vnd.kde.plan.work.png share/icons/hicolor/22x22/apps/calligraplan.png share/icons/hicolor/22x22/apps/calligraplanwork.png share/icons/hicolor/22x22/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/22x22/mimetypes/application-x-vnd.kde.plan.work.png share/icons/hicolor/256x256/apps/calligraplan.png share/icons/hicolor/32x32/apps/calligraplan.png share/icons/hicolor/32x32/apps/calligraplanwork.png share/icons/hicolor/32x32/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/32x32/mimetypes/application-x-vnd.kde.plan.work.png share/icons/hicolor/48x48/apps/calligraplan.png share/icons/hicolor/48x48/apps/calligraplanwork.png share/icons/hicolor/48x48/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/48x48/mimetypes/application-x-vnd.kde.plan.work.png share/icons/hicolor/512x512/apps/calligraplan.png share/icons/hicolor/64x64/apps/calligraplan.png share/icons/hicolor/64x64/apps/calligraplanwork.png share/icons/hicolor/64x64/mimetypes/application-x-vnd.kde.kplato.png share/icons/hicolor/64x64/mimetypes/application-x-vnd.kde.kplato.work.png share/icons/hicolor/64x64/mimetypes/application-x-vnd.kde.plan.png share/icons/hicolor/64x64/mimetypes/application-x-vnd.kde.plan.work.png share/icons/hicolor/scalable/apps/calligraplan.svgz share/icons/hicolor/scalable/apps/calligraplanwork.svgz share/icons/hicolor/scalable/mimetypes/application-x-vnd.kde.kplato.svgz share/icons/hicolor/scalable/mimetypes/application-x-vnd.kde.kplato.work.svgz share/icons/hicolor/scalable/mimetypes/application-x-vnd.kde.plan.svgz share/icons/hicolor/scalable/mimetypes/application-x-vnd.kde.plan.work.svgz +share/kxmlgui5/calligraplan/AccountsEditorUi.rc +share/kxmlgui5/calligraplan/AccountsEditorUi_readonly.rc +share/kxmlgui5/calligraplan/AccountsViewUi.rc +share/kxmlgui5/calligraplan/CalendarEditorUi.rc +share/kxmlgui5/calligraplan/CalendarEditorUi_readonly.rc +share/kxmlgui5/calligraplan/DependencyEditorUi.rc +share/kxmlgui5/calligraplan/DependencyEditorUi_readonly.rc +share/kxmlgui5/calligraplan/GanttViewUi.rc +share/kxmlgui5/calligraplan/PerformanceStatusViewUi.rc +share/kxmlgui5/calligraplan/PertResultUi.rc +share/kxmlgui5/calligraplan/ProjectStatusViewUi.rc +share/kxmlgui5/calligraplan/ReportsGeneratorViewUi.rc +share/kxmlgui5/calligraplan/ReportsGeneratorViewUi_readonly.rc +share/kxmlgui5/calligraplan/ResourceAppointmentsViewUi.rc +share/kxmlgui5/calligraplan/ResourceEditorUi.rc +share/kxmlgui5/calligraplan/ResourceEditorUi_readonly.rc +share/kxmlgui5/calligraplan/ScheduleEditorUi.rc +share/kxmlgui5/calligraplan/ScheduleEditorUi_readonly.rc +share/kxmlgui5/calligraplan/TaskEditorUi.rc +share/kxmlgui5/calligraplan/TaskEditorUi_readonly.rc +share/kxmlgui5/calligraplan/TaskStatusViewUi.rc +share/kxmlgui5/calligraplan/TaskViewUi.rc +share/kxmlgui5/calligraplan/WorkPackageViewUi.rc +share/kxmlgui5/calligraplan/WorkPackageViewUi_readonly.rc share/kxmlgui5/calligraplan/calligraplan.rc share/kxmlgui5/calligraplan/calligraplan_readonly.rc share/kxmlgui5/calligraplanwork/calligraplanwork.rc share/kxmlgui5/calligraplanwork/calligraplanwork_readonly.rc share/kxmlgui5/calligraplanwork/calligraplanworkui.rc share/locale/ar/LC_MESSAGES/calligraplan.mo -share/locale/ast/LC_MESSAGES/calligraplan.mo -share/locale/ast/LC_MESSAGES/calligraplan_scheduler_rcps.mo -share/locale/ast/LC_MESSAGES/calligraplan_scheduler_tj.mo -share/locale/ast/LC_MESSAGES/calligraplanlibs.mo -share/locale/ast/LC_MESSAGES/calligraplanwork.mo -share/locale/ast/LC_MESSAGES/krossmoduleplan.mo share/locale/be/LC_MESSAGES/calligraplan.mo share/locale/be/LC_MESSAGES/calligraplanlibs.mo share/locale/bg/LC_MESSAGES/calligraplan.mo share/locale/bg/LC_MESSAGES/calligraplanlibs.mo share/locale/br/LC_MESSAGES/calligraplan.mo share/locale/bs/LC_MESSAGES/calligraplan.mo share/locale/bs/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/bs/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/bs/LC_MESSAGES/calligraplanlibs.mo share/locale/bs/LC_MESSAGES/calligraplanwork.mo share/locale/bs/LC_MESSAGES/krossmoduleplan.mo share/locale/ca/LC_MESSAGES/calligraplan.mo share/locale/ca/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/ca/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/ca/LC_MESSAGES/calligraplanlibs.mo share/locale/ca/LC_MESSAGES/calligraplanwork.mo share/locale/ca/LC_MESSAGES/krossmoduleplan.mo share/locale/ca@valencia/LC_MESSAGES/calligraplan.mo share/locale/ca@valencia/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/ca@valencia/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/ca@valencia/LC_MESSAGES/calligraplanlibs.mo share/locale/ca@valencia/LC_MESSAGES/calligraplanwork.mo share/locale/ca@valencia/LC_MESSAGES/krossmoduleplan.mo share/locale/cs/LC_MESSAGES/calligraplan.mo share/locale/cs/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/cs/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/cs/LC_MESSAGES/calligraplanlibs.mo share/locale/cs/LC_MESSAGES/calligraplanwork.mo share/locale/cs/LC_MESSAGES/krossmoduleplan.mo share/locale/da/LC_MESSAGES/calligraplan.mo share/locale/da/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/da/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/da/LC_MESSAGES/calligraplanlibs.mo share/locale/da/LC_MESSAGES/calligraplanwork.mo share/locale/da/LC_MESSAGES/krossmoduleplan.mo share/locale/de/LC_MESSAGES/calligraplan.mo share/locale/de/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/de/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/de/LC_MESSAGES/calligraplanlibs.mo share/locale/de/LC_MESSAGES/calligraplanwork.mo share/locale/de/LC_MESSAGES/krossmoduleplan.mo share/locale/el/LC_MESSAGES/calligraplan.mo share/locale/el/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/el/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/el/LC_MESSAGES/calligraplanlibs.mo share/locale/el/LC_MESSAGES/calligraplanwork.mo share/locale/el/LC_MESSAGES/krossmoduleplan.mo share/locale/en_GB/LC_MESSAGES/calligraplan.mo share/locale/en_GB/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/en_GB/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/en_GB/LC_MESSAGES/calligraplanlibs.mo share/locale/en_GB/LC_MESSAGES/calligraplanwork.mo share/locale/en_GB/LC_MESSAGES/krossmoduleplan.mo share/locale/eo/LC_MESSAGES/calligraplan.mo share/locale/eo/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/eo/LC_MESSAGES/calligraplanlibs.mo share/locale/eo/LC_MESSAGES/calligraplanwork.mo share/locale/eo/LC_MESSAGES/krossmoduleplan.mo share/locale/es/LC_MESSAGES/calligraplan.mo share/locale/es/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/es/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/es/LC_MESSAGES/calligraplanlibs.mo share/locale/es/LC_MESSAGES/calligraplanwork.mo share/locale/es/LC_MESSAGES/krossmoduleplan.mo share/locale/et/LC_MESSAGES/calligraplan.mo share/locale/et/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/et/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/et/LC_MESSAGES/calligraplanlibs.mo share/locale/et/LC_MESSAGES/calligraplanwork.mo share/locale/et/LC_MESSAGES/krossmoduleplan.mo share/locale/fa/LC_MESSAGES/calligraplan.mo share/locale/fi/LC_MESSAGES/calligraplan.mo share/locale/fi/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/fi/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/fi/LC_MESSAGES/calligraplanlibs.mo share/locale/fi/LC_MESSAGES/calligraplanwork.mo share/locale/fi/LC_MESSAGES/krossmoduleplan.mo share/locale/fr/LC_MESSAGES/calligraplan.mo share/locale/fr/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/fr/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/fr/LC_MESSAGES/calligraplanlibs.mo share/locale/fr/LC_MESSAGES/calligraplanwork.mo share/locale/fr/LC_MESSAGES/krossmoduleplan.mo share/locale/fy/LC_MESSAGES/calligraplan.mo share/locale/fy/LC_MESSAGES/calligraplanlibs.mo share/locale/fy/LC_MESSAGES/calligraplanwork.mo share/locale/ga/LC_MESSAGES/calligraplan.mo share/locale/ga/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/ga/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/ga/LC_MESSAGES/calligraplanlibs.mo share/locale/ga/LC_MESSAGES/calligraplanwork.mo share/locale/ga/LC_MESSAGES/krossmoduleplan.mo share/locale/gl/LC_MESSAGES/calligraplan.mo share/locale/gl/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/gl/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/gl/LC_MESSAGES/calligraplanlibs.mo share/locale/gl/LC_MESSAGES/calligraplanwork.mo share/locale/gl/LC_MESSAGES/krossmoduleplan.mo share/locale/hi/LC_MESSAGES/calligraplan.mo share/locale/hi/LC_MESSAGES/calligraplanlibs.mo share/locale/hi/LC_MESSAGES/calligraplanwork.mo share/locale/hne/LC_MESSAGES/calligraplan.mo share/locale/hne/LC_MESSAGES/calligraplanlibs.mo share/locale/hne/LC_MESSAGES/calligraplanwork.mo share/locale/hu/LC_MESSAGES/calligraplan.mo share/locale/hu/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/hu/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/hu/LC_MESSAGES/calligraplanlibs.mo share/locale/hu/LC_MESSAGES/calligraplanwork.mo share/locale/hu/LC_MESSAGES/krossmoduleplan.mo share/locale/ia/LC_MESSAGES/calligraplan.mo share/locale/ia/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/ia/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/ia/LC_MESSAGES/calligraplanlibs.mo share/locale/ia/LC_MESSAGES/calligraplanwork.mo share/locale/ia/LC_MESSAGES/krossmoduleplan.mo +share/locale/id/LC_MESSAGES/calligraplan.mo +share/locale/id/LC_MESSAGES/calligraplan_scheduler_rcps.mo +share/locale/id/LC_MESSAGES/calligraplan_scheduler_tj.mo +share/locale/id/LC_MESSAGES/calligraplanlibs.mo +share/locale/id/LC_MESSAGES/calligraplanwork.mo +share/locale/id/LC_MESSAGES/krossmoduleplan.mo share/locale/it/LC_MESSAGES/calligraplan.mo share/locale/it/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/it/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/it/LC_MESSAGES/calligraplanlibs.mo share/locale/it/LC_MESSAGES/calligraplanwork.mo share/locale/it/LC_MESSAGES/krossmoduleplan.mo share/locale/ja/LC_MESSAGES/calligraplan.mo share/locale/ja/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/ja/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/ja/LC_MESSAGES/calligraplanlibs.mo share/locale/ja/LC_MESSAGES/calligraplanwork.mo share/locale/ja/LC_MESSAGES/krossmoduleplan.mo share/locale/kk/LC_MESSAGES/calligraplan.mo share/locale/kk/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/kk/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/kk/LC_MESSAGES/calligraplanlibs.mo share/locale/kk/LC_MESSAGES/calligraplanwork.mo share/locale/kk/LC_MESSAGES/krossmoduleplan.mo share/locale/km/LC_MESSAGES/calligraplan.mo share/locale/km/LC_MESSAGES/calligraplanlibs.mo share/locale/km/LC_MESSAGES/calligraplanwork.mo share/locale/lt/LC_MESSAGES/calligraplan.mo share/locale/lt/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/lt/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/lt/LC_MESSAGES/calligraplanlibs.mo share/locale/lt/LC_MESSAGES/calligraplanwork.mo share/locale/lt/LC_MESSAGES/krossmoduleplan.mo share/locale/lv/LC_MESSAGES/calligraplan.mo share/locale/mai/LC_MESSAGES/calligraplan.mo share/locale/mai/LC_MESSAGES/calligraplanlibs.mo share/locale/mai/LC_MESSAGES/calligraplanwork.mo share/locale/mai/LC_MESSAGES/krossmoduleplan.mo share/locale/mr/LC_MESSAGES/calligraplan.mo share/locale/mr/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/mr/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/mr/LC_MESSAGES/calligraplanlibs.mo share/locale/mr/LC_MESSAGES/calligraplanwork.mo share/locale/mr/LC_MESSAGES/krossmoduleplan.mo share/locale/nb/LC_MESSAGES/calligraplan.mo share/locale/nb/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/nb/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/nb/LC_MESSAGES/calligraplanlibs.mo share/locale/nb/LC_MESSAGES/calligraplanwork.mo share/locale/nb/LC_MESSAGES/krossmoduleplan.mo share/locale/nds/LC_MESSAGES/calligraplan.mo share/locale/nds/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/nds/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/nds/LC_MESSAGES/calligraplanlibs.mo share/locale/nds/LC_MESSAGES/calligraplanwork.mo share/locale/nds/LC_MESSAGES/krossmoduleplan.mo share/locale/ne/LC_MESSAGES/calligraplan.mo share/locale/nl/LC_MESSAGES/calligraplan.mo share/locale/nl/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/nl/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/nl/LC_MESSAGES/calligraplanlibs.mo share/locale/nl/LC_MESSAGES/calligraplanwork.mo share/locale/nl/LC_MESSAGES/krossmoduleplan.mo share/locale/nn/LC_MESSAGES/calligraplan.mo share/locale/nn/LC_MESSAGES/calligraplanlibs.mo share/locale/nn/LC_MESSAGES/calligraplanwork.mo share/locale/nn/LC_MESSAGES/krossmoduleplan.mo share/locale/oc/LC_MESSAGES/calligraplan.mo share/locale/oc/LC_MESSAGES/calligraplanlibs.mo share/locale/oc/LC_MESSAGES/calligraplanwork.mo share/locale/pl/LC_MESSAGES/calligraplan.mo share/locale/pl/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/pl/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/pl/LC_MESSAGES/calligraplanlibs.mo share/locale/pl/LC_MESSAGES/calligraplanwork.mo share/locale/pl/LC_MESSAGES/krossmoduleplan.mo share/locale/pt/LC_MESSAGES/calligraplan.mo share/locale/pt/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/pt/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/pt/LC_MESSAGES/calligraplanlibs.mo share/locale/pt/LC_MESSAGES/calligraplanwork.mo share/locale/pt/LC_MESSAGES/krossmoduleplan.mo share/locale/pt_BR/LC_MESSAGES/calligraplan.mo share/locale/pt_BR/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/pt_BR/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/pt_BR/LC_MESSAGES/calligraplanlibs.mo share/locale/pt_BR/LC_MESSAGES/calligraplanwork.mo share/locale/pt_BR/LC_MESSAGES/krossmoduleplan.mo share/locale/ro/LC_MESSAGES/calligraplan.mo share/locale/ro/LC_MESSAGES/calligraplanlibs.mo share/locale/ro/LC_MESSAGES/calligraplanwork.mo share/locale/ru/LC_MESSAGES/calligraplan.mo share/locale/ru/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/ru/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/ru/LC_MESSAGES/calligraplanlibs.mo share/locale/ru/LC_MESSAGES/calligraplanwork.mo share/locale/ru/LC_MESSAGES/krossmoduleplan.mo share/locale/se/LC_MESSAGES/calligraplan.mo share/locale/sk/LC_MESSAGES/calligraplan.mo share/locale/sk/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/sk/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/sk/LC_MESSAGES/calligraplanlibs.mo share/locale/sk/LC_MESSAGES/calligraplanwork.mo share/locale/sk/LC_MESSAGES/krossmoduleplan.mo share/locale/sl/LC_MESSAGES/calligraplan.mo share/locale/sl/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/sl/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/sl/LC_MESSAGES/calligraplanlibs.mo share/locale/sl/LC_MESSAGES/calligraplanwork.mo share/locale/sl/LC_MESSAGES/krossmoduleplan.mo share/locale/sv/LC_MESSAGES/calligraplan.mo share/locale/sv/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/sv/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/sv/LC_MESSAGES/calligraplanlibs.mo share/locale/sv/LC_MESSAGES/calligraplanwork.mo share/locale/sv/LC_MESSAGES/krossmoduleplan.mo share/locale/th/LC_MESSAGES/calligraplan.mo share/locale/tr/LC_MESSAGES/calligraplan.mo share/locale/tr/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/tr/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/tr/LC_MESSAGES/calligraplanlibs.mo share/locale/tr/LC_MESSAGES/calligraplanwork.mo share/locale/tr/LC_MESSAGES/krossmoduleplan.mo share/locale/ug/LC_MESSAGES/calligraplan.mo share/locale/ug/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/ug/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/ug/LC_MESSAGES/calligraplanlibs.mo share/locale/ug/LC_MESSAGES/calligraplanwork.mo share/locale/ug/LC_MESSAGES/krossmoduleplan.mo share/locale/uk/LC_MESSAGES/calligraplan.mo share/locale/uk/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/uk/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/uk/LC_MESSAGES/calligraplanlibs.mo share/locale/uk/LC_MESSAGES/calligraplanwork.mo share/locale/uk/LC_MESSAGES/krossmoduleplan.mo share/locale/wa/LC_MESSAGES/calligraplan.mo share/locale/wa/LC_MESSAGES/calligraplanlibs.mo share/locale/wa/LC_MESSAGES/calligraplanwork.mo share/locale/wa/LC_MESSAGES/krossmoduleplan.mo -share/locale/x-test/LC_MESSAGES/calligraplan.mo -share/locale/x-test/LC_MESSAGES/calligraplan_scheduler_rcps.mo -share/locale/x-test/LC_MESSAGES/calligraplan_scheduler_tj.mo -share/locale/x-test/LC_MESSAGES/calligraplanlibs.mo -share/locale/x-test/LC_MESSAGES/calligraplanwork.mo -share/locale/x-test/LC_MESSAGES/krossmoduleplan.mo share/locale/zh_CN/LC_MESSAGES/calligraplan.mo share/locale/zh_CN/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/zh_CN/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/zh_CN/LC_MESSAGES/calligraplanlibs.mo share/locale/zh_CN/LC_MESSAGES/calligraplanwork.mo share/locale/zh_CN/LC_MESSAGES/krossmoduleplan.mo share/locale/zh_TW/LC_MESSAGES/calligraplan.mo share/locale/zh_TW/LC_MESSAGES/calligraplan_scheduler_rcps.mo share/locale/zh_TW/LC_MESSAGES/calligraplan_scheduler_tj.mo share/locale/zh_TW/LC_MESSAGES/calligraplanlibs.mo share/locale/zh_TW/LC_MESSAGES/calligraplanwork.mo share/locale/zh_TW/LC_MESSAGES/krossmoduleplan.mo share/metainfo/org.kde.calligraplan.appdata.xml