View | Details | Raw Unified | Return to bug 256223
Collapse All | Expand All

(-)b/deskutils/ganttproject/Makefile (-8 / +16 lines)
Lines 1-19 Link Here
1
# Created by: ijliao
2
3
PORTNAME=	ganttproject
1
PORTNAME=	ganttproject
4
DISTVERSION=	2.8.11
2
DISTVERSION=	3.1.3100
5
DISTVERSIONSUFFIX=	-r2393
6
CATEGORIES=	deskutils java
3
CATEGORIES=	deskutils java
7
MASTER_SITES=	https://github.com/bardsoftware/ganttproject/releases/download/ganttproject-${DISTVERSION}/
4
MASTER_SITES=	https://github.com/bardsoftware/ganttproject/releases/download/ganttproject-${DISTVERSION}/ \
5
		https://dl.ganttproject.biz/ganttproject-3.1.3100/
8
6
9
MAINTAINER=	ports@FreeBSD.org
7
MAINTAINER=	freebsd@ny-central.org
10
COMMENT=	Gantt chart based project scheduling and management tool
8
COMMENT=	Gantt chart based project scheduling and management tool
11
9
12
LICENSE=	GPLv3+
10
LICENSE=	GPLv3+
13
LICENSE_FILE=	${WRKSRC}/LICENSE
11
LICENSE_FILE=	${WRKSRC}/LICENSE
14
12
13
RUN_DEPENDS=	openjfx14>=14:java/openjfx14
14
15
USES=		desktop-file-utils shebangfix zip
15
USES=		desktop-file-utils shebangfix zip
16
USE_JAVA=	yes
16
USE_JAVA=	yes
17
JAVA_VERSION=	11+
17
SHEBANG_FILES=	ganttproject
18
SHEBANG_FILES=	ganttproject
18
bash_CMD=	/bin/sh
19
bash_CMD=	/bin/sh
19
20
Lines 22-34 NO_BUILD= yes Link Here
22
23
23
PLIST_SUB=	DISTVERSION=${DISTVERSION}
24
PLIST_SUB=	DISTVERSION=${DISTVERSION}
24
25
26
post-extract:
27
	${RM} ${WRKSRC}/ganttproject.exe
28
	${RM} ${WRKSRC}/ganttproject.bat
29
	${RM} ${WRKSRC}/ganttproject.command
30
31
post-patch:
32
	${REINPLACE_CMD} -e 's@$$PREFIX@${PREFIX}@g' ${WRKSRC}/ganttproject
33
25
do-install:
34
do-install:
26
	cd ${WRKSRC} && \
35
	cd ${WRKSRC} && \
27
		${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}
36
		${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}
28
	${CHMOD} ${BINMODE} ${STAGEDIR}${DATADIR}/ganttproject
29
	${RLN} ${STAGEDIR}${DATADIR}/ganttproject ${STAGEDIR}${PREFIX}/bin
37
	${RLN} ${STAGEDIR}${DATADIR}/ganttproject ${STAGEDIR}${PREFIX}/bin
30
	@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/64x64/apps
38
	@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/64x64/apps
31
	${RLN} ${STAGEDIR}${DATADIR}/plugins/${DISTVERSION}/ganttproject/data/resources/icons/ganttproject.png \
39
	${RLN} ${STAGEDIR}${DATADIR}/plugins/base/ganttproject/resources/icons/ganttproject.png \
32
		${STAGEDIR}${PREFIX}/share/icons/hicolor/64x64/apps/ganttproject.png
40
		${STAGEDIR}${PREFIX}/share/icons/hicolor/64x64/apps/ganttproject.png
33
	${INSTALL_DATA} ${FILESDIR}/ganttproject.desktop \
41
	${INSTALL_DATA} ${FILESDIR}/ganttproject.desktop \
34
		${STAGEDIR}${PREFIX}/share/applications
42
		${STAGEDIR}${PREFIX}/share/applications
(-)b/deskutils/ganttproject/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1587601863
1
TIMESTAMP = 1621768579
2
SHA256 (ganttproject-2.8.11-r2393.zip) = 253db21e403987db0963046015b5bf0e2194f85bef0feebf666534088a216828
2
SHA256 (ganttproject-3.1.3100.zip) = 4e7ea4b8ea50f41afef868b5c080e2ab7cfa28deda890f0a831dfd1717460a6d
3
SIZE (ganttproject-2.8.11-r2393.zip) = 18411181
3
SIZE (ganttproject-3.1.3100.zip) = 39982185
(-)b/deskutils/ganttproject/files/patch-ganttproject (+85 lines)
Added Link Here
1
--- ganttproject.orig	2021-05-28 16:46:04 UTC
2
+++ ganttproject
3
@@ -31,17 +31,15 @@ fi
4
 # Parse the command line arguments. In this script we parse only those arguments which
5
 # are related to the Java VM launching. The remaining application-specific arguments
6
 # are passed as-is to the Java process.
7
-PARSED_ARGS=$(getopt -o d::j:: --long debug:: --long java-home:: -- "$@")
8
-eval set -- "$PARSED_ARGS"
9
 
10
-USE_BUNDLED_RUNTIME=1
11
+USE_BUNDLED_RUNTIME=0
12
 DEBUG_ARGS=""
13
-while true; do
14
-  case "$1" in
15
+while getopts "d:j:" opt; do
16
+  case "$opt" in
17
     # Debug will switch on some debugging output and will allow for connecting to Java
18
     # process with a debugger
19
-    -d|--debug)
20
-      case "$2" in
21
+    -d)
22
+      case "$OPTARG" in
23
         "")
24
           DEBUG_ARGS="-agentlib:jdwp=transport=dt_socket,server=y,address=8000,suspend=n"
25
           shift 2
26
@@ -53,11 +51,10 @@ while true; do
27
       esac
28
       ;;
29
     # This allows for specifying the path to Java Runtime instead of the default bundled Java Runtime
30
-    -j|--java-home)
31
+    -j)
32
       USE_BUNDLED_RUNTIME=0
33
-      case "$2" in
34
+      case "$OPTARG" in
35
         "")
36
-          shift 2
37
           ;;
38
         *)
39
           JAVA_HOME="$2"
40
@@ -128,12 +125,30 @@ check_java() {
41
 
42
   VERSION="$( $JAVA_COMMAND -version 2>&1 | grep version | head -n 1)"
43
   log "...found $VERSION"
44
-  [[ "$VERSION" =~ "11." ]] && return 0;
45
-  [[ "$VERSION" =~ "12." ]] && return 0;
46
-  [[ "$VERSION" =~ "13." ]] && return 0;
47
-  [[ "$VERSION" =~ "14." ]] && return 0;
48
-  [[ "$VERSION" =~ "15." ]] && return 0;
49
-  [[ "$VERSION" =~ "16." ]] && return 0;
50
+  echo $VERSION | grep "11."
51
+  if [ "0" == "$?" ]; then
52
+    return 0
53
+  fi
54
+  echo $VERSION | grep "12."
55
+  if [ "0" == "$?" ]; then
56
+    return 0
57
+  fi
58
+  echo $VERSION | grep "13."
59
+  if [ "0" == "$?" ]; then
60
+    return 0
61
+  fi
62
+  echo $VERSION | grep "14."
63
+  if [ "0" == "$?" ]; then
64
+    return 0
65
+  fi
66
+  echo $VERSION | grep "15."
67
+  if [ "0" == "$?" ]; then
68
+    return 0
69
+  fi
70
+  echo $VERSION | grep "16."
71
+  if [ "0" == "$?" ]; then
72
+    return 0
73
+  fi
74
   log "...this seems to be an old Java Runtime";
75
   JAVA_COMMAND=""
76
   return 1
77
@@ -191,7 +206,7 @@ export CLASSPATH
78
 ECLIPSITO_ARGS="--verbosity 1 --version-dirs $GP_HOME/plugins:~/.ganttproject.d/updates --app net.sourceforge.ganttproject.GanttProject"
79
 BOOT_CLASS=com.bardsoftware.eclipsito.Launch
80
 
81
-JAVA_ARGS="-Xmx1024m -Duser.dir=$(pwd) $DEBUG_ARGS $BOOT_CLASS $ECLIPSITO_ARGS -log true -log_file $LOG_FILE"
82
+JAVA_ARGS="--module-path=$PREFIX/openjfx14/lib --add-modules=javafx.swing,javafx.web -Xmx1024m -Duser.dir=$(pwd) $DEBUG_ARGS $BOOT_CLASS $ECLIPSITO_ARGS -log true -log_file $LOG_FILE"
83
 if [ -n "$(echo \"$*\" | sed -n '/\(^\|\s\)-/{p;}')" ]; then
84
   "$JAVA_COMMAND" $JAVA_ARGS "$@"
85
 else
(-)b/deskutils/ganttproject/pkg-plist (-421 / +487 lines)
Lines 1-427 Link Here
1
bin/ganttproject
1
@(,,0755) bin/ganttproject
2
share/applications/ganttproject.desktop
2
share/applications/ganttproject.desktop
3
%%DATADIR%%/HouseBuildingSample.gan
3
%%DATADIR%%/HouseBuildingSample.gan
4
@comment %%DATADIR%%/LICENSE
5
%%DATADIR%%/eclipsito.jar
4
%%DATADIR%%/eclipsito.jar
6
%%DATADIR%%/ganttproject
5
@(,,0755) %%DATADIR%%/ganttproject
7
@comment %%DATADIR%%/ganttproject.bat
6
@comment %%DATADIR%%/LICENSE
8
@comment %%DATADIR%%/ganttproject.command
9
@comment %%DATADIR%%/ganttproject.exe
10
%%DATADIR%%/lib/javagalician.jar
7
%%DATADIR%%/lib/javagalician.jar
8
%%DATADIR%%/logback.xml
11
%%DATADIR%%/logging.properties
9
%%DATADIR%%/logging.properties
12
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.core/biz.ganttproject.core.jar
10
%%DATADIR%%/plugins/base/VERSION
13
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.core/lib/ganttproject-guava.jar
11
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/SparseBitSet-1.2.jar
14
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.core/plugin.xml
12
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/annotations-15.0.jar
15
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.core/resources/img/notes.png
13
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/balloontip-1.2.4.1.jar
16
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.ical/biz.ganttproject.impex.ical.jar
14
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/biz.ganttproject.desktop.jar
17
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.ical/lib/backport-util-concurrent-3.1.jar
15
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/commons-codec-1.15.jar
18
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.ical/lib/commons-lang-2.6.jar
16
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/commons-collections4-4.4.jar
19
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.ical/lib/ical4j-1.0.3.jar
17
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/commons-csv.jar
20
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.ical/plugin.xml
18
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/commons-io-2.8.0.jar
21
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.msproject2/biz.ganttproject.impex.msproject2.jar
19
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/commons-lang3-3.12.0.jar
22
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.msproject2/lib/activation-1.1.1.jar
20
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/commons-logging-1.2.jar
23
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.msproject2/lib/commons-collections4-4.1.jar
21
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/commons-math3-3.6.1.jar
24
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.msproject2/lib/jaxb-api-2.3.0.jar
22
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/commons-net-ftpclient-3.0.1.jar
25
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.msproject2/lib/jaxb-impl-2.0.2.jar
23
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/concurrentlinkedhashmap-lru-1.4.2.jar
26
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.msproject2/lib/mpxj-7.4.2.jar
24
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/controlsfx-11.1.0.jar
27
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.msproject2/lib/mspdi_fix.xsl
25
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-0.62.2.jar
28
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.msproject2/lib/poi-3.17.jar
26
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-ext-attributes-0.62.2.jar
29
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.msproject2/lib/rtfparserkit-1.10.0.jar
27
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-ext-gfm-strikethrough-0.62.2.jar
30
%%DATADIR%%/plugins/%%DISTVERSION%%/biz.ganttproject.impex.msproject2/plugin.xml
28
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-ext-tables-0.62.2.jar
31
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_ar.calendar
29
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-util-0.62.2.jar
32
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_ca_alberta.calendar
30
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-util-ast-0.62.2.jar
33
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_ca_all.calendar
31
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-util-builder-0.62.2.jar
34
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_ca_british_columbia.calendar
32
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-util-collection-0.62.2.jar
35
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_ca_ontario.calendar
33
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-util-data-0.62.2.jar
36
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_ca_quebec.calendar
34
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-util-dependency-0.62.2.jar
37
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_ch.calendar
35
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-util-format-0.62.2.jar
38
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_ch_zurich.calendar
36
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-util-html-0.62.2.jar
39
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_cl.calendar
37
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-util-misc-0.62.2.jar
40
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_cn.calendar
38
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-util-options-0.62.2.jar
41
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_co.calendar
39
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-util-sequence-0.62.2.jar
42
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_cz.calendar
40
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/flexmark-util-visitor-0.62.2.jar
43
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_de.calendar
41
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/fontawesomefx-commons-11.0.jar
44
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_de_austria.calendar
42
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/fontawesomefx-fontawesome-4.7.0-11.jar
45
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_en_australia.calendar
43
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/fontawesomefx-materialicons-2.2.0-11.jar
46
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_en_australia_nsw.calendar
44
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/ganttproject-jxbusycomponent-1.2.2.jar
47
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_en_australia_queensland.calendar
45
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/httpclient-4.5.13.jar
48
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_en_australia_victoria.calendar
46
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/httpcore-4.4.13.jar
49
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_es.calendar
47
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/httpmime-4.5.13.jar
50
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_fr.calendar
48
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/jackson-annotations-2.12.3.jar
51
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_hr.calendar
49
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/jackson-core-2.12.3.jar
52
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_hu.calendar
50
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/jackson-databind-2.12.3.jar
53
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_il.calendar
51
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/jcl-over-slf4j-1.7.30.jar
54
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_in_karnataka.calendar
52
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/jdom-2.0.2.jar
55
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_in_maharashtra.calendar
53
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/jgoodies-common-1.8.1.jar
56
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_it.calendar
54
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/jgoodies-looks-2.7.0.jar
57
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_ja_JP.calendar
55
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/jxlayer-3.0.4.jar
58
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_ko_KR.calendar
56
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/mdfx-0.2.0-SNAPSHOT.jar
59
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_lv.calendar
57
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/milton-api-2.7.4.4.jar
60
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_mx.calendar
58
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/milton-client-2.7.4.4-bs.jar
61
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_nl.calendar
59
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/nanohttpd-2.3.1.jar
62
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_no.calendar
60
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/okhttp-3.14.9.jar
63
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_pl.calendar
61
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/okio-1.17.2.jar
64
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_pt_brazil.calendar
62
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/org.bouncycastle.openpgp-1.67-with-deps.jar
65
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_pt_portugal.calendar
63
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/poi-5.0.0.jar
66
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_ru.calendar
64
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/retry4j-0.15.0.jar
67
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_sk.calendar
65
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/slf4j-api-1.7.30.jar
68
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_sr.calendar
66
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/slf4j-jdk14-1.7.30.jar
69
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_tg_non_working_days.calendar
67
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/lib/swingx-1.6.4.jar
70
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_tw.calendar
68
%%DATADIR%%/plugins/base/biz.ganttproject.app.libs/plugin.xml
71
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_ua.calendar
69
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/plugin.xml
72
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_uk_england.calendar
70
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_ar.calendar
73
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_uk_northern_ireland.calendar
71
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_ca_alberta.calendar
74
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_uk_scotland.calendar
72
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_ca_all.calendar
75
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/calendar/i18n_us.calendar
73
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_ca_british_columbia.calendar
76
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/charsets.properties
74
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_ca_es.calendar
77
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/chart.properties
75
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_ca_ontario.calendar
78
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/fontawesome-webfont.ttf
76
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_ca_quebec.calendar
79
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/fontawesome.properties
77
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_ch.calendar
80
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons.properties
78
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_ch_zurich.calendar
81
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/appointment-new.png
79
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_cl.calendar
82
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/arrow-up.png
80
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_cn.calendar
83
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/chart-drag.png
81
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_co.calendar
84
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/chart-hand.png
82
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_cz.calendar
85
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/contact-new.png
83
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_de.calendar
86
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/document-open.png
84
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_de_austria.calendar
87
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/document-properties.png
85
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_en_australia.calendar
88
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/document-save.png
86
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_en_australia_nsw.calendar
89
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/edit-copy.png
87
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_en_australia_queensland.calendar
90
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/edit-cut.png
88
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_en_australia_victoria.calendar
91
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/edit-paste.png
89
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_es.calendar
92
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/edit-redo.png
90
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_fr.calendar
93
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/edit-undo.png
91
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_fr_alsace_moselle.calendar
94
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/folder.png
92
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_fr_guadeloupe.calendar
95
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/human-document-open.png
93
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_fr_guyane.calendar
96
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/new-edit-redo.png
94
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_fr_la_reunion.calendar
97
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/new-edit-undo.png
95
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_fr_martinique.calendar
98
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/process-stop.png
96
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_fr_mayotte.calendar
99
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/reload.png
97
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_fr_nouvelle_caledonie.calendar
100
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/status-locked.png
98
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_fr_polynesie_francaise.calendar
101
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/16x16/status-unlocked.png
99
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_fr_saint_barthelemy.calendar
102
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/appointment-new.png
100
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_fr_saint_martin.calendar
103
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/contact-new.png
101
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_fr_saint_pierre_et_miquelon.calendar
104
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/document-open.png
102
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_fr_wallis_et_futuna.calendar
105
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/document-properties.png
103
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_hr.calendar
106
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/document-save.png
104
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_hu.calendar
107
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/edit-copy.png
105
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_il.calendar
108
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/edit-cut.png
106
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_in_karnataka.calendar
109
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/edit-paste.png
107
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_in_maharashtra.calendar
110
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/edit-redo.png
108
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_it.calendar
111
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/edit-undo.png
109
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_ja_JP.calendar
112
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/human-document-open.png
110
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_ko_KR.calendar
113
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/list-add-user.png
111
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_lv.calendar
114
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/new-edit-redo.png
112
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_mx.calendar
115
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/new-edit-undo.png
113
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_nl.calendar
116
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/24x24/process-stop.png
114
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_no.calendar
117
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/64x64/dialog-question.png
115
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_pl.calendar
118
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/8x8/add.png
116
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_pt_brazil.calendar
119
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/8x8/label-red-exclamation.png
117
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_pt_portugal.calendar
120
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/8x8/remove.png
118
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_ru.calendar
121
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/8x8/status-locked.png
119
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_sk.calendar
122
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/8x8/status-unlocked.png
120
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_sr.calendar
123
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/about_16.gif
121
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_tg_non_working_days.calendar
124
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/addCol_16.gif
122
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_tw.calendar
125
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/addCol_24.gif
123
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_ua.calendar
126
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/add_bkmrk_16.gif
124
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_uk_england.calendar
127
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/aknowlegement.gif
125
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_uk_northern_ireland.calendar
128
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/alert1_16.gif
126
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_uk_scotland.calendar
129
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/alert2_16.gif
127
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/resources/calendars/i18n_us.calendar
130
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/big.png
128
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/crowdin2prb.sh
131
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/blank.gif
129
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n.properties
132
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/blank_big.gif
130
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_ar_SA.properties
133
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/bookmark_rem_16.gif
131
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_bg_BG.properties
134
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/bookmarks_16.gif
132
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_ca_ES.properties
135
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/calendar_16.gif
133
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_cs_CZ.properties
136
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/chartOptions_16.gif
134
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_da_DK.properties
137
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/chartOptions_24.gif
135
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_de_DE.properties
138
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/clear_16.gif
136
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_el_GR.properties
139
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/comparePrev_16.gif
137
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_en.properties
140
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/comparePrev_24.gif
138
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_en_AU.properties
141
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/copy_16.gif
139
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_en_GB.properties
142
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/copy_24.gif
140
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_es_ES.properties
143
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/copy_32.gif
141
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_et_EE.properties
144
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/criticalPathOff_16.gif
142
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_fi_FI.properties
145
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/criticalPathOff_24.gif
143
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_fr_FR.properties
146
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/criticalPathOn_16.gif
144
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_gl_ES.properties
147
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/criticalPathOn_24.gif
145
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_he_IL.properties
148
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/cursorpercent.gif
146
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_hi_IN.properties
149
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/custom.gif
147
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_hr_HR.properties
150
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/cut_16.gif
148
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_hu_HU.properties
151
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/cut_24.gif
149
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_id_ID.properties
152
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/cut_32.gif
150
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_in_ID.properties
153
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/default_calendar_16.gif
151
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_it_IT.properties
154
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/delete_16.gif
152
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_iw_IL.properties
155
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/delete_24.gif
153
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_ja_JP.properties
156
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/delete_32.gif
154
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_ko_KR.properties
157
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/document.gif
155
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_lt_LT.properties
158
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/document.ico
156
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_lv_LV.properties
159
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/document.png
157
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_my_MM.properties
160
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/down_16.gif
158
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_nl_NL.properties
161
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/down_24.gif
159
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_no_NO.properties
162
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/down_32.gif
160
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_pl_PL.properties
163
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/dropdown_16.png
161
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_pt_BR.properties
164
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/dropdown_16.xcf
162
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_pt_PT.properties
165
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/error.png
163
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_ro_RO.properties
166
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/exit_16.gif
164
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_ru_RU.properties
167
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/exit_24.gif
165
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_sk_SK.properties
168
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/exit_32.gif
166
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_sl_SI.properties
169
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/export_16.gif
167
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_sr_SP.properties
170
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/export_24.gif
168
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_sv_SE.properties
171
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/export_32.gif
169
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_tg_TJ.properties
172
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/fromto.gif
170
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_tr_TR.properties
173
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/ganttproject.png
171
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_uk_UA.properties
174
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/ganttproject_16.ico
172
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_vi_VN.properties
175
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/ganttproject_32.ico
173
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_zh_CN.properties
176
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/ganttproject_32_2.ico
174
%%DATADIR%%/plugins/base/biz.ganttproject.app.localization/translations/i18n_zh_TW.properties
177
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/help_16.gif
175
%%DATADIR%%/plugins/base/biz.ganttproject.core/lib/animal-sniffer-annotations-1.14.jar.lib
178
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/hide_16.gif
176
%%DATADIR%%/plugins/base/biz.ganttproject.core/lib/annotations-13.0.jar.lib
179
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/hide_24.gif
177
%%DATADIR%%/plugins/base/biz.ganttproject.core/lib/biz.ganttproject.core-21.05.18.jar.lib
180
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/holidays_16.gif
178
%%DATADIR%%/plugins/base/biz.ganttproject.core/lib/checker-qual-2.0.0.jar.lib
181
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/holidays_24.gif
179
%%DATADIR%%/plugins/base/biz.ganttproject.core/lib/error_prone_annotations-2.1.3.jar.lib
182
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/home_16.gif
180
%%DATADIR%%/plugins/base/biz.ganttproject.core/lib/guava-25.1-jre.jar.lib
183
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/import_16.gif
181
%%DATADIR%%/plugins/base/biz.ganttproject.core/lib/j2objc-annotations-1.1.jar.lib
184
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/import_24.gif
182
%%DATADIR%%/plugins/base/biz.ganttproject.core/lib/jsr305-3.0.2.jar.lib
185
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/import_32.gif
183
%%DATADIR%%/plugins/base/biz.ganttproject.core/lib/kotlin-stdlib-1.5.0.jar.lib
186
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/impres_16.gif
184
%%DATADIR%%/plugins/base/biz.ganttproject.core/lib/kotlin-stdlib-common-1.5.0.jar.lib
187
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/indent_16.gif
185
%%DATADIR%%/plugins/base/biz.ganttproject.core/lib/kotlin-stdlib-jdk7-1.5.0.jar.lib
188
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/indent_24.gif
186
%%DATADIR%%/plugins/base/biz.ganttproject.core/lib/kotlin-stdlib-jdk8-1.5.0.jar.lib
189
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/indent_32.gif
187
%%DATADIR%%/plugins/base/biz.ganttproject.core/plugin.xml
190
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/info.png
188
%%DATADIR%%/plugins/base/biz.ganttproject.core/resources/img/notes.png
191
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/insert_16.gif
189
%%DATADIR%%/plugins/base/biz.ganttproject.impex.ical/lib/backport-util-concurrent-3.1.jar.lib
192
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/insert_24.gif
190
%%DATADIR%%/plugins/base/biz.ganttproject.impex.ical/lib/biz.ganttproject.impex.ical-21.05.18.jar.lib
193
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/insert_32.gif
191
%%DATADIR%%/plugins/base/biz.ganttproject.impex.ical/lib/commons-lang-2.6.jar.lib
194
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/landscape_16.gif
192
%%DATADIR%%/plugins/base/biz.ganttproject.impex.ical/lib/ical4j-1.0.7.jar.lib
195
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/light_16.gif
193
%%DATADIR%%/plugins/base/biz.ganttproject.impex.ical/plugin.xml
196
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/link_16.gif
194
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/lib/FastInfoset-1.2.16.jar.lib
197
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/link_24.gif
195
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/lib/biz.ganttproject.impex.msproject2-21.05.18.jar.lib
198
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/link_32.gif
196
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/lib/istack-commons-runtime-3.0.8.jar.lib
199
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/manual_16.gif
197
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/lib/jakarta.activation-api-1.2.1.jar.lib
200
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/manual_24.gif
198
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/lib/jakarta.xml.bind-api-2.3.2.jar.lib
201
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/manual_32.gif
199
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/lib/javax.activation-api-1.2.0.jar.lib
202
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/meeting.gif
200
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/lib/jaxb-api-2.3.1.jar.lib
203
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/minus.gif
201
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/lib/jaxb-impl-2.1.jar.lib
204
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/mproject.gif
202
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/lib/jaxb-runtime-2.3.2.jar.lib
205
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/mtask.gif
203
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/lib/jsoup-1.13.1.jar.lib
206
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/new_16.gif
204
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/lib/mpxj-9.3.0.jar.lib
207
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/new_24.gif
205
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/lib/rtfparserkit-1.16.0.jar.lib
208
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/new_32.gif
206
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/lib/stax-ex-1.8.1.jar.lib
209
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/next_16.gif
207
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/lib/txw2-2.3.2.jar.lib
210
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/next_24.gif
208
%%DATADIR%%/plugins/base/biz.ganttproject.impex.msproject2/plugin.xml
211
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/next_32.gif
209
%%DATADIR%%/plugins/base/ganttproject/lib/eclipsito.jar.lib
212
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/nextmonth.gif
210
%%DATADIR%%/plugins/base/ganttproject/lib/ganttproject-21.05.18.jar.lib
213
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/nextyear.gif
211
%%DATADIR%%/plugins/base/ganttproject/lib/kotlinx-coroutines-core-jvm-1.4.3.jar.lib
214
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/non_working_day_16.gif
212
%%DATADIR%%/plugins/base/ganttproject/lib/kotlinx-coroutines-javafx-1.4.3.jar.lib
215
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/note_16.gif
213
%%DATADIR%%/plugins/base/ganttproject/plugin.xml
216
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/open_16.gif
214
%%DATADIR%%/plugins/base/ganttproject/resources/charsets.properties
217
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/open_24.gif
215
%%DATADIR%%/plugins/base/ganttproject/resources/chart.properties
218
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/open_32.gif
216
%%DATADIR%%/plugins/base/ganttproject/resources/fontawesome-webfont.ttf
219
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/paste_16.gif
217
%%DATADIR%%/plugins/base/ganttproject/resources/fontawesome.properties
220
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/paste_24.gif
218
%%DATADIR%%/plugins/base/ganttproject/resources/icons.properties
221
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/paste_32.gif
219
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/appointment-new.png
222
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/plus.gif
220
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/arrow-up.png
223
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/portrait_16.gif
221
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/chart-drag.png
224
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/prev_16.gif
222
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/chart-hand.png
225
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/prev_24.gif
223
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/contact-new.png
226
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/prev_32.gif
224
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/document-open.png
227
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/preview_16.gif
225
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/document-properties.png
228
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/preview_24.gif
226
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/document-save.png
229
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/prevmonth.gif
227
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/edit-copy.png
230
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/prevyear.gif
228
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/edit-cut.png
231
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/print_16.gif
229
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/edit-paste.png
232
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/print_24.gif
230
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/edit-redo.png
233
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/print_32.gif
231
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/edit-undo.png
234
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/project_16.gif
232
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/folder.png
235
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/properties_16.gif
233
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/human-document-open.png
236
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/properties_24.gif
234
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/new-edit-redo.png
237
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/properties_32.gif
235
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/new-edit-undo.png
238
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/publish.gif
236
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/process-stop.png
239
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/question.png
237
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/reload.png
240
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/recent_16.gif
238
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/status-locked.png
241
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/redo_16.gif
239
%%DATADIR%%/plugins/base/ganttproject/resources/icons/16x16/status-unlocked.png
242
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/redo_24.gif
240
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/appointment-new.png
243
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/redo_32.gif
241
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/contact-new.png
244
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/refresh_16.gif
242
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/document-open.png
245
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/refresh_24.gif
243
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/document-properties.png
246
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/relashion.gif
244
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/document-save.png
247
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/removeCol_16.gif
245
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/edit-copy.png
248
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/removeCol_24.gif
246
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/edit-cut.png
249
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/res_16.gif
247
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/edit-paste.png
250
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/saveCurrentAsPrev_16.gif
248
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/edit-redo.png
251
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/saveCurrentAsPrev_24.gif
249
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/edit-undo.png
252
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/save_16.gif
250
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/human-document-open.png
253
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/save_24.gif
251
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/list-add-user.png
254
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/save_32.gif
252
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/new-edit-redo.png
255
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/saveas_16.gif
253
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/new-edit-undo.png
256
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/saveas_24.gif
254
%%DATADIR%%/plugins/base/ganttproject/resources/icons/24x24/process-stop.png
257
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/saveas_32.gif
255
%%DATADIR%%/plugins/base/ganttproject/resources/icons/64x64/dialog-question.png
258
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/scrollcenter_16.gif
256
%%DATADIR%%/plugins/base/ganttproject/resources/icons/8x8/add.png
259
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/scrollcenter_24.gif
257
%%DATADIR%%/plugins/base/ganttproject/resources/icons/8x8/label-red-exclamation.png
260
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/search_16.gif
258
%%DATADIR%%/plugins/base/ganttproject/resources/icons/8x8/remove.png
261
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/send_mail_16.gif
259
%%DATADIR%%/plugins/base/ganttproject/resources/icons/8x8/status-locked.png
262
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/sepH_16.png
260
%%DATADIR%%/plugins/base/ganttproject/resources/icons/8x8/status-unlocked.png
263
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/sepV_16.png
261
%%DATADIR%%/plugins/base/ganttproject/resources/icons/about_16.gif
264
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/separator_16.gif
262
%%DATADIR%%/plugins/base/ganttproject/resources/icons/addCol_16.gif
265
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/separator_24.gif
263
%%DATADIR%%/plugins/base/ganttproject/resources/icons/addCol_24.gif
266
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/server_16.gif
264
%%DATADIR%%/plugins/base/ganttproject/resources/icons/add_bkmrk_16.gif
267
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/settings_16.gif
265
%%DATADIR%%/plugins/base/ganttproject/resources/icons/aknowlegement.gif
268
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/showHiddens.gif
266
%%DATADIR%%/plugins/base/ganttproject/resources/icons/alert1_16.gif
269
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/show_16.gif
267
%%DATADIR%%/plugins/base/ganttproject/resources/icons/alert2_16.gif
270
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/show_24.gif
268
%%DATADIR%%/plugins/base/ganttproject/resources/icons/big.png
271
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/simple_task.gif
269
%%DATADIR%%/plugins/base/ganttproject/resources/icons/blank.gif
272
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/skip_task.gif
270
%%DATADIR%%/plugins/base/ganttproject/resources/icons/blank_big.gif
273
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/splash.png
271
%%DATADIR%%/plugins/base/ganttproject/resources/icons/bookmark_rem_16.gif
274
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/task_high.gif
272
%%DATADIR%%/plugins/base/ganttproject/resources/icons/bookmarks_16.gif
275
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/task_highest.gif
273
%%DATADIR%%/plugins/base/ganttproject/resources/icons/calendar_16.gif
276
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/task_low.gif
274
%%DATADIR%%/plugins/base/ganttproject/resources/icons/chartOptions_16.gif
277
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/task_lowest.gif
275
%%DATADIR%%/plugins/base/ganttproject/resources/icons/chartOptions_24.gif
278
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/task_normal.gif
276
%%DATADIR%%/plugins/base/ganttproject/resources/icons/clear_16.gif
279
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/tasks2.png
277
%%DATADIR%%/plugins/base/ganttproject/resources/icons/comparePrev_16.gif
280
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/tasks_16.gif
278
%%DATADIR%%/plugins/base/ganttproject/resources/icons/comparePrev_24.gif
281
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/top.gif
279
%%DATADIR%%/plugins/base/ganttproject/resources/icons/copy_16.gif
282
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/undo_16.gif
280
%%DATADIR%%/plugins/base/ganttproject/resources/icons/copy_24.gif
283
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/undo_24.gif
281
%%DATADIR%%/plugins/base/ganttproject/resources/icons/copy_32.gif
284
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/undo_32.gif
282
%%DATADIR%%/plugins/base/ganttproject/resources/icons/criticalPathOff_16.gif
285
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/unindent_16.gif
283
%%DATADIR%%/plugins/base/ganttproject/resources/icons/criticalPathOff_24.gif
286
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/unindent_24.gif
284
%%DATADIR%%/plugins/base/ganttproject/resources/icons/criticalPathOn_16.gif
287
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/unindent_32.gif
285
%%DATADIR%%/plugins/base/ganttproject/resources/icons/criticalPathOn_24.gif
288
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/unlink_16.gif
286
%%DATADIR%%/plugins/base/ganttproject/resources/icons/cursorpercent.gif
289
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/unlink_24.gif
287
%%DATADIR%%/plugins/base/ganttproject/resources/icons/custom.gif
290
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/unlink_32.gif
288
%%DATADIR%%/plugins/base/ganttproject/resources/icons/cut_16.gif
291
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/up_16.gif
289
%%DATADIR%%/plugins/base/ganttproject/resources/icons/cut_24.gif
292
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/up_24.gif
290
%%DATADIR%%/plugins/base/ganttproject/resources/icons/cut_32.gif
293
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/up_32.gif
291
%%DATADIR%%/plugins/base/ganttproject/resources/icons/default_calendar_16.gif
294
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/warning.png
292
%%DATADIR%%/plugins/base/ganttproject/resources/icons/delete_16.gif
295
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/web_16.gif
293
%%DATADIR%%/plugins/base/ganttproject/resources/icons/delete_24.gif
296
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/working_day_16.gif
294
%%DATADIR%%/plugins/base/ganttproject/resources/icons/delete_32.gif
297
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/zoomm_16.gif
295
%%DATADIR%%/plugins/base/ganttproject/resources/icons/document.gif
298
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/zoomm_24.gif
296
%%DATADIR%%/plugins/base/ganttproject/resources/icons/document.ico
299
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/zoomm_32.gif
297
%%DATADIR%%/plugins/base/ganttproject/resources/icons/document.png
300
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/zoomp_16.gif
298
%%DATADIR%%/plugins/base/ganttproject/resources/icons/down_16.gif
301
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/zoomp_24.gif
299
%%DATADIR%%/plugins/base/ganttproject/resources/icons/down_24.gif
302
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/icons/zoomp_32.gif
300
%%DATADIR%%/plugins/base/ganttproject/resources/icons/down_32.gif
303
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/keyboard.macos.properties
301
%%DATADIR%%/plugins/base/ganttproject/resources/icons/dropdown_16.png
304
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/keyboard.properties
302
%%DATADIR%%/plugins/base/ganttproject/resources/icons/dropdown_16.xcf
305
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/extra.properties
303
%%DATADIR%%/plugins/base/ganttproject/resources/icons/error.png
306
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n.properties
304
%%DATADIR%%/plugins/base/ganttproject/resources/icons/exit_16.gif
307
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_ar.properties
305
%%DATADIR%%/plugins/base/ganttproject/resources/icons/exit_24.gif
308
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_bg.properties
306
%%DATADIR%%/plugins/base/ganttproject/resources/icons/exit_32.gif
309
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_ca.properties
307
%%DATADIR%%/plugins/base/ganttproject/resources/icons/export_16.gif
310
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_cs.properties
308
%%DATADIR%%/plugins/base/ganttproject/resources/icons/export_24.gif
311
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_da.properties
309
%%DATADIR%%/plugins/base/ganttproject/resources/icons/export_32.gif
312
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_de.properties
310
%%DATADIR%%/plugins/base/ganttproject/resources/icons/fromto.gif
313
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_el.properties
311
%%DATADIR%%/plugins/base/ganttproject/resources/icons/ganttproject-logo-512.png
314
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_en.properties
312
%%DATADIR%%/plugins/base/ganttproject/resources/icons/ganttproject-logo-bee-bw-512.png
315
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_en_AU.properties
313
%%DATADIR%%/plugins/base/ganttproject/resources/icons/ganttproject.png
316
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_en_GB.properties
314
%%DATADIR%%/plugins/base/ganttproject/resources/icons/ganttproject_16.ico
317
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_es.properties
315
%%DATADIR%%/plugins/base/ganttproject/resources/icons/ganttproject_32.ico
318
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_et.properties
316
%%DATADIR%%/plugins/base/ganttproject/resources/icons/ganttproject_32_2.ico
319
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_fi.properties
317
%%DATADIR%%/plugins/base/ganttproject/resources/icons/help_16.gif
320
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_fr.properties
318
%%DATADIR%%/plugins/base/ganttproject/resources/icons/hide_16.gif
321
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_gl.properties
319
%%DATADIR%%/plugins/base/ganttproject/resources/icons/hide_24.gif
322
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_hr.properties
320
%%DATADIR%%/plugins/base/ganttproject/resources/icons/holidays_16.gif
323
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_hu.properties
321
%%DATADIR%%/plugins/base/ganttproject/resources/icons/holidays_24.gif
324
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_id.properties
322
%%DATADIR%%/plugins/base/ganttproject/resources/icons/home_16.gif
325
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_in_ID.properties
323
%%DATADIR%%/plugins/base/ganttproject/resources/icons/import_16.gif
326
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_it.properties
324
%%DATADIR%%/plugins/base/ganttproject/resources/icons/import_24.gif
327
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_iw_IL.properties
325
%%DATADIR%%/plugins/base/ganttproject/resources/icons/import_32.gif
328
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_ja_JP.properties
326
%%DATADIR%%/plugins/base/ganttproject/resources/icons/impres_16.gif
329
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_ko_KR.properties
327
%%DATADIR%%/plugins/base/ganttproject/resources/icons/indent_16.gif
330
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_lt.properties
328
%%DATADIR%%/plugins/base/ganttproject/resources/icons/indent_24.gif
331
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_lv.properties
329
%%DATADIR%%/plugins/base/ganttproject/resources/icons/indent_32.gif
332
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_nl.properties
330
%%DATADIR%%/plugins/base/ganttproject/resources/icons/info.png
333
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_no.properties
331
%%DATADIR%%/plugins/base/ganttproject/resources/icons/insert_16.gif
334
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_pl.properties
332
%%DATADIR%%/plugins/base/ganttproject/resources/icons/insert_24.gif
335
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_pt_BR.properties
333
%%DATADIR%%/plugins/base/ganttproject/resources/icons/insert_32.gif
336
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_pt_PT.properties
334
%%DATADIR%%/plugins/base/ganttproject/resources/icons/landscape_16.gif
337
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_ro_RO.properties
335
%%DATADIR%%/plugins/base/ganttproject/resources/icons/light_16.gif
338
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_ru.properties
336
%%DATADIR%%/plugins/base/ganttproject/resources/icons/link_16.gif
339
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_sk.properties
337
%%DATADIR%%/plugins/base/ganttproject/resources/icons/link_24.gif
340
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_sl.properties
338
%%DATADIR%%/plugins/base/ganttproject/resources/icons/link_32.gif
341
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_sr.properties
339
%%DATADIR%%/plugins/base/ganttproject/resources/icons/manual_16.gif
342
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_sv.properties
340
%%DATADIR%%/plugins/base/ganttproject/resources/icons/manual_24.gif
343
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_tg.properties
341
%%DATADIR%%/plugins/base/ganttproject/resources/icons/manual_32.gif
344
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_tr.properties
342
%%DATADIR%%/plugins/base/ganttproject/resources/icons/meeting.gif
345
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_uk.properties
343
%%DATADIR%%/plugins/base/ganttproject/resources/icons/minus.gif
346
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_uk_UA.properties
344
%%DATADIR%%/plugins/base/ganttproject/resources/icons/mproject.gif
347
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_vi.properties
345
%%DATADIR%%/plugins/base/ganttproject/resources/icons/mtask.gif
348
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_zh_CN.properties
346
%%DATADIR%%/plugins/base/ganttproject/resources/icons/new_16.gif
349
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/language/i18n_zh_TW.properties
347
%%DATADIR%%/plugins/base/ganttproject/resources/icons/new_24.gif
350
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/mouse.macos.properties
348
%%DATADIR%%/plugins/base/ganttproject/resources/icons/new_32.gif
351
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/mouse.properties
349
%%DATADIR%%/plugins/base/ganttproject/resources/icons/next_16.gif
352
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/ui.properties
350
%%DATADIR%%/plugins/base/ganttproject/resources/icons/next_24.gif
353
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/xslfo/ganttproject.xsl
351
%%DATADIR%%/plugins/base/ganttproject/resources/icons/next_32.gif
354
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/xslt/gantt-chart.xsl
352
%%DATADIR%%/plugins/base/ganttproject/resources/icons/nextmonth.gif
355
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/xslt/gantt-resources.xsl
353
%%DATADIR%%/plugins/base/ganttproject/resources/icons/nextyear.gif
356
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/xslt/gantt-tasks.xsl
354
%%DATADIR%%/plugins/base/ganttproject/resources/icons/non_working_day_16.gif
357
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/xslt/gantt-utils.xsl
355
%%DATADIR%%/plugins/base/ganttproject/resources/icons/note_16.gif
358
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/data/resources/xslt/gantt.xsl
356
%%DATADIR%%/plugins/base/ganttproject/resources/icons/open_16.gif
359
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/ganttproject.jar
357
%%DATADIR%%/plugins/base/ganttproject/resources/icons/open_24.gif
360
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/AppleJavaExtensions.jar
358
%%DATADIR%%/plugins/base/ganttproject/resources/icons/open_32.gif
361
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/balloontip-1.2.4.1.jar
359
%%DATADIR%%/plugins/base/ganttproject/resources/icons/paste_16.gif
362
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/biz.ganttproject.desktop.jar
360
%%DATADIR%%/plugins/base/ganttproject/resources/icons/paste_24.gif
363
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/commons-beanutils-1.8.0.jar
361
%%DATADIR%%/plugins/base/ganttproject/resources/icons/paste_32.gif
364
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/commons-codec-1.11.jar
362
%%DATADIR%%/plugins/base/ganttproject/resources/icons/plus.gif
365
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/commons-collections-3.2.1.jar
363
%%DATADIR%%/plugins/base/ganttproject/resources/icons/portrait_16.gif
366
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/commons-csv.jar
364
%%DATADIR%%/plugins/base/ganttproject/resources/icons/prev_16.gif
367
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/commons-io.jar
365
%%DATADIR%%/plugins/base/ganttproject/resources/icons/prev_24.gif
368
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/commons-lang-2.5.jar
366
%%DATADIR%%/plugins/base/ganttproject/resources/icons/prev_32.gif
369
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/commons-logging-1.2.jar
367
%%DATADIR%%/plugins/base/ganttproject/resources/icons/preview_16.gif
370
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/commons-net-ftpclient-3.0.1.jar
368
%%DATADIR%%/plugins/base/ganttproject/resources/icons/preview_24.gif
371
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/concurrentlinkedhashmap-lru-1.4.2.jar
369
%%DATADIR%%/plugins/base/ganttproject/resources/icons/prevmonth.gif
372
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/ezmorph-1.0.6.jar
370
%%DATADIR%%/plugins/base/ganttproject/resources/icons/prevyear.gif
373
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/ganttproject-jxbusycomponent-1.2.2.jar
371
%%DATADIR%%/plugins/base/ganttproject/resources/icons/print_16.gif
374
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/httpclient-4.5.11.jar
372
%%DATADIR%%/plugins/base/ganttproject/resources/icons/print_24.gif
375
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/httpcore-4.4.13.jar
373
%%DATADIR%%/plugins/base/ganttproject/resources/icons/print_32.gif
376
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/httpmime-4.5.11.jar
374
%%DATADIR%%/plugins/base/ganttproject/resources/icons/project_16.gif
377
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/jcommander-1.17.jar
375
%%DATADIR%%/plugins/base/ganttproject/resources/icons/properties_16.gif
378
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/jdom-1.1.3.jar
376
%%DATADIR%%/plugins/base/ganttproject/resources/icons/properties_24.gif
379
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/jgoodies-common-1.7.0.jar
377
%%DATADIR%%/plugins/base/ganttproject/resources/icons/properties_32.gif
380
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/jgoodies-looks-2.5.3.jar
378
%%DATADIR%%/plugins/base/ganttproject/resources/icons/publish.gif
381
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/json-lib-2.4-jdk15.jar
379
%%DATADIR%%/plugins/base/ganttproject/resources/icons/question.png
382
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/jxlayer.jar
380
%%DATADIR%%/plugins/base/ganttproject/resources/icons/recent_16.gif
383
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/milton-api-2.7.4.4.jar
381
%%DATADIR%%/plugins/base/ganttproject/resources/icons/redo_16.gif
384
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/milton-client-2.7.4.4-bs.jar
382
%%DATADIR%%/plugins/base/ganttproject/resources/icons/redo_24.gif
385
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/slf4j-api-1.7.30.jar
383
%%DATADIR%%/plugins/base/ganttproject/resources/icons/redo_32.gif
386
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/slf4j-jdk14-1.7.30.jar
384
%%DATADIR%%/plugins/base/ganttproject/resources/icons/refresh_16.gif
387
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/lib/core/swingx-1.6.4.jar
385
%%DATADIR%%/plugins/base/ganttproject/resources/icons/refresh_24.gif
388
%%DATADIR%%/plugins/%%DISTVERSION%%/ganttproject/plugin.xml
386
%%DATADIR%%/plugins/base/ganttproject/resources/icons/relashion.gif
389
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.chart.pert/org.ganttproject.chart.pert.jar
387
%%DATADIR%%/plugins/base/ganttproject/resources/icons/removeCol_16.gif
390
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.chart.pert/plugin.xml
388
%%DATADIR%%/plugins/base/ganttproject/resources/icons/removeCol_24.gif
391
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.chart.pert/resources/icons/pert_16.gif
389
%%DATADIR%%/plugins/base/ganttproject/resources/icons/res_16.gif
392
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.chart.pert/resources/icons/pert_24.gif
390
%%DATADIR%%/plugins/base/ganttproject/resources/icons/saveCurrentAsPrev_16.gif
393
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/lib/itextpdf-5.3.1.jar
391
%%DATADIR%%/plugins/base/ganttproject/resources/icons/saveCurrentAsPrev_24.gif
394
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/org.ganttproject.impex.htmlpdf.jar
392
%%DATADIR%%/plugins/base/ganttproject/resources/icons/save_16.gif
395
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/plugin.xml
393
%%DATADIR%%/plugins/base/ganttproject/resources/icons/save_24.gif
396
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/fonts/LiberationSans-Regular.ttf
394
%%DATADIR%%/plugins/base/ganttproject/resources/icons/save_32.gif
397
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/default/gantt-chart.xsl
395
%%DATADIR%%/plugins/base/ganttproject/resources/icons/saveas_16.gif
398
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/default/gantt-resources.xsl
396
%%DATADIR%%/plugins/base/ganttproject/resources/icons/saveas_24.gif
399
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/default/gantt-tasks.xsl
397
%%DATADIR%%/plugins/base/ganttproject/resources/icons/saveas_32.gif
400
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/default/gantt-utils.xsl
398
%%DATADIR%%/plugins/base/ganttproject/resources/icons/scrollcenter_16.gif
401
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/default/gantt.xsl
399
%%DATADIR%%/plugins/base/ganttproject/resources/icons/scrollcenter_24.gif
402
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/samara/gantt-chart.xsl
400
%%DATADIR%%/plugins/base/ganttproject/resources/icons/search_16.gif
403
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/samara/gantt-resources.xsl
401
%%DATADIR%%/plugins/base/ganttproject/resources/icons/send_mail_16.gif
404
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/samara/gantt-tasks.xsl
402
%%DATADIR%%/plugins/base/ganttproject/resources/icons/sepH_16.png
405
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/samara/gantt-utils.xsl
403
%%DATADIR%%/plugins/base/ganttproject/resources/icons/sepV_16.png
406
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/samara/gantt.xsl
404
%%DATADIR%%/plugins/base/ganttproject/resources/icons/separator_16.gif
407
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/striped_blue/COPYING
405
%%DATADIR%%/plugins/base/ganttproject/resources/icons/separator_24.gif
408
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/striped_blue/README
406
%%DATADIR%%/plugins/base/ganttproject/resources/icons/server_16.gif
409
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/striped_blue/gantt-chart.xsl
407
%%DATADIR%%/plugins/base/ganttproject/resources/icons/settings_16.gif
410
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/striped_blue/gantt-resources.xsl
408
%%DATADIR%%/plugins/base/ganttproject/resources/icons/showHiddens.gif
411
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/striped_blue/gantt-tasks.xsl
409
%%DATADIR%%/plugins/base/ganttproject/resources/icons/show_16.gif
412
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/striped_blue/gantt-utils.xsl
410
%%DATADIR%%/plugins/base/ganttproject/resources/icons/show_24.gif
413
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/striped_blue/gantt.xsl
411
%%DATADIR%%/plugins/base/ganttproject/resources/icons/simple_task.gif
414
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/striped_blue/images/backg.png
412
%%DATADIR%%/plugins/base/ganttproject/resources/icons/skip_task.gif
415
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/striped_blue/images/menu.jpg
413
%%DATADIR%%/plugins/base/ganttproject/resources/icons/splash.png
416
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/html-export-themes/striped_blue/images/top.jpg
414
%%DATADIR%%/plugins/base/ganttproject/resources/icons/task_high.gif
417
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/itext-export-themes/sortavala.txt
415
%%DATADIR%%/plugins/base/ganttproject/resources/icons/task_highest.gif
418
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/pdf-export-themes/basic_landscape/L-ganttproject.xsl
416
%%DATADIR%%/plugins/base/ganttproject/resources/icons/task_low.gif
419
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/pdf-export-themes/basic_landscape/ganttproject.xsl
417
%%DATADIR%%/plugins/base/ganttproject/resources/icons/task_lowest.gif
420
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/pdf-export-themes/ganttproject.xsl
418
%%DATADIR%%/plugins/base/ganttproject/resources/icons/task_normal.gif
421
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/pdf-export-themes/layout/a4-landscape.xml
419
%%DATADIR%%/plugins/base/ganttproject/resources/icons/tasks2.png
422
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/pdf-export-themes/layout/a4-portrait.xml
420
%%DATADIR%%/plugins/base/ganttproject/resources/icons/tasks_16.gif
423
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/pdf-export-themes/samara/samara-generic.xml
421
%%DATADIR%%/plugins/base/ganttproject/resources/icons/top.gif
424
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/pdf-export-themes/samara/samara-landscape.xsl
422
%%DATADIR%%/plugins/base/ganttproject/resources/icons/undo_16.gif
425
%%DATADIR%%/plugins/%%DISTVERSION%%/org.ganttproject.impex.htmlpdf/resource/pdf-export-themes/samara/samara-portrait.xsl
423
%%DATADIR%%/plugins/base/ganttproject/resources/icons/undo_24.gif
426
%%DATADIR%%/plugins/VERSION
424
%%DATADIR%%/plugins/base/ganttproject/resources/icons/undo_32.gif
425
%%DATADIR%%/plugins/base/ganttproject/resources/icons/unindent_16.gif
426
%%DATADIR%%/plugins/base/ganttproject/resources/icons/unindent_24.gif
427
%%DATADIR%%/plugins/base/ganttproject/resources/icons/unindent_32.gif
428
%%DATADIR%%/plugins/base/ganttproject/resources/icons/unlink_16.gif
429
%%DATADIR%%/plugins/base/ganttproject/resources/icons/unlink_24.gif
430
%%DATADIR%%/plugins/base/ganttproject/resources/icons/unlink_32.gif
431
%%DATADIR%%/plugins/base/ganttproject/resources/icons/up_16.gif
432
%%DATADIR%%/plugins/base/ganttproject/resources/icons/up_24.gif
433
%%DATADIR%%/plugins/base/ganttproject/resources/icons/up_32.gif
434
%%DATADIR%%/plugins/base/ganttproject/resources/icons/warning.png
435
%%DATADIR%%/plugins/base/ganttproject/resources/icons/web_16.gif
436
%%DATADIR%%/plugins/base/ganttproject/resources/icons/working_day_16.gif
437
%%DATADIR%%/plugins/base/ganttproject/resources/icons/zoomm_16.gif
438
%%DATADIR%%/plugins/base/ganttproject/resources/icons/zoomm_24.gif
439
%%DATADIR%%/plugins/base/ganttproject/resources/icons/zoomm_32.gif
440
%%DATADIR%%/plugins/base/ganttproject/resources/icons/zoomp_16.gif
441
%%DATADIR%%/plugins/base/ganttproject/resources/icons/zoomp_24.gif
442
%%DATADIR%%/plugins/base/ganttproject/resources/icons/zoomp_32.gif
443
%%DATADIR%%/plugins/base/ganttproject/resources/keyboard.macos.properties
444
%%DATADIR%%/plugins/base/ganttproject/resources/keyboard.properties
445
%%DATADIR%%/plugins/base/ganttproject/resources/language/extra.properties
446
%%DATADIR%%/plugins/base/ganttproject/resources/mouse.macos.properties
447
%%DATADIR%%/plugins/base/ganttproject/resources/mouse.properties
448
%%DATADIR%%/plugins/base/ganttproject/resources/ui.properties
449
%%DATADIR%%/plugins/base/ganttproject/resources/xslfo/ganttproject.xsl
450
%%DATADIR%%/plugins/base/ganttproject/resources/xslt/gantt-chart.xsl
451
%%DATADIR%%/plugins/base/ganttproject/resources/xslt/gantt-resources.xsl
452
%%DATADIR%%/plugins/base/ganttproject/resources/xslt/gantt-tasks.xsl
453
%%DATADIR%%/plugins/base/ganttproject/resources/xslt/gantt-utils.xsl
454
%%DATADIR%%/plugins/base/ganttproject/resources/xslt/gantt.xsl
455
%%DATADIR%%/plugins/base/org.ganttproject.chart.pert/lib/org.ganttproject.chart.pert-21.05.18.jar.lib
456
%%DATADIR%%/plugins/base/org.ganttproject.chart.pert/plugin.xml
457
%%DATADIR%%/plugins/base/org.ganttproject.chart.pert/resources/icons/pert_16.gif
458
%%DATADIR%%/plugins/base/org.ganttproject.chart.pert/resources/icons/pert_24.gif
459
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/lib/itextpdf-5.5.13.2.jar.lib
460
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/lib/org.ganttproject.impex.htmlpdf-21.05.18.jar.lib
461
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/plugin.xml
462
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/fonts/DroidSansFallbackFull.ttc
463
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/fonts/LiberationSans-Regular.ttf
464
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/default/gantt-chart.xsl
465
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/default/gantt-resources.xsl
466
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/default/gantt-tasks.xsl
467
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/default/gantt-utils.xsl
468
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/default/gantt.xsl
469
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/samara/gantt-chart.xsl
470
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/samara/gantt-resources.xsl
471
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/samara/gantt-tasks.xsl
472
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/samara/gantt-utils.xsl
473
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/samara/gantt.xsl
474
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/striped_blue/COPYING
475
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/striped_blue/README
476
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/striped_blue/gantt-chart.xsl
477
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/striped_blue/gantt-resources.xsl
478
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/striped_blue/gantt-tasks.xsl
479
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/striped_blue/gantt-utils.xsl
480
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/striped_blue/gantt.xsl
481
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/striped_blue/images/backg.png
482
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/striped_blue/images/menu.jpg
483
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/html-export-themes/striped_blue/images/top.jpg
484
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/itext-export-themes/sortavala.txt
485
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/pdf-export-themes/basic_landscape/L-ganttproject.xsl
486
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/pdf-export-themes/basic_landscape/ganttproject.xsl
487
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/pdf-export-themes/ganttproject.xsl
488
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/pdf-export-themes/layout/a4-landscape.xml
489
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/pdf-export-themes/layout/a4-portrait.xml
490
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/pdf-export-themes/samara/samara-generic.xml
491
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/pdf-export-themes/samara/samara-landscape.xsl
492
%%DATADIR%%/plugins/base/org.ganttproject.impex.htmlpdf/resources/pdf-export-themes/samara/samara-portrait.xsl
427
share/icons/hicolor/64x64/apps/ganttproject.png
493
share/icons/hicolor/64x64/apps/ganttproject.png

Return to bug 256223