View | Details | Raw Unified | Return to bug 208051 | Differences between
and this patch

Collapse All | Expand All

(-)sabnzbdplus/Makefile (-7 / +7 lines)
Lines 1-8 Link Here
1
# $FreeBSD: head/news/sabnzbdplus/Makefile 410936 2016-03-12 22:32:54Z pi $
1
# $FreeBSD: head/news/sabnzbdplus/Makefile 410936 2016-03-12 22:32:54Z pi $
2
2
3
PORTNAME=	sabnzbdplus
3
PORTNAME=	sabnzbdplus
4
PORTVERSION=	0.7.20
4
PORTVERSION=	1.0.0
5
PORTREVISION=	3
6
CATEGORIES=	news
5
CATEGORIES=	news
7
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}
6
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}
8
DISTNAME=	SABnzbd-${PORTVERSION}-src
7
DISTNAME=	SABnzbd-${PORTVERSION}-src
Lines 10-23 Link Here
10
MAINTAINER=	joshruehlig@gmail.com
9
MAINTAINER=	joshruehlig@gmail.com
11
COMMENT=	Web-interface based binary newsgrabber in python, with nzb support
10
COMMENT=	Web-interface based binary newsgrabber in python, with nzb support
12
11
13
LICENSE=	BSD2CLAUSE BSD3CLAUSE GPLv2 GPLv3 ISCL MIT PSFL
12
LICENSE=	BSD2CLAUSE BSD3CLAUSE GPLv2+ ISCL MIT PSFL
14
LICENSE_COMB=	multi
13
LICENSE_COMB=	multi
15
14
16
RUN_DEPENDS=	cheetah:${PORTSDIR}/devel/py-cheetah \
15
RUN_DEPENDS=	cheetah:${PORTSDIR}/devel/py-cheetah \
17
		${PYTHON_SITELIBDIR}/pythonutils/configobj.py:${PORTSDIR}/devel/py-utils \
16
		${PYTHON_SITELIBDIR}/pythonutils/configobj.py:${PORTSDIR}/devel/py-utils \
18
		${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3
17
		${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3
19
18
20
USES=		gettext python:2.5-2.7
19
USES=		gettext python:2.6-2.7
21
20
22
NO_BUILD=	yes
21
NO_BUILD=	yes
23
WRKSRC=		${WRKDIR}/SABnzbd-${PORTVERSION}
22
WRKSRC=		${WRKDIR}/SABnzbd-${PORTVERSION}
Lines 27-33 Link Here
27
USE_RC_SUBR=	sabnzbd
26
USE_RC_SUBR=	sabnzbd
28
27
29
PORTDOCS=	ABOUT.txt \
28
PORTDOCS=	ABOUT.txt \
30
		CHANGELOG.txt \
31
		COPYRIGHT.txt \
29
		COPYRIGHT.txt \
32
		INSTALL.txt \
30
		INSTALL.txt \
33
		ISSUES.txt \
31
		ISSUES.txt \
Lines 36-45 Link Here
36
USERS=		_sabnzbd
34
USERS=		_sabnzbd
37
GROUPS=		_sabnzbd
35
GROUPS=		_sabnzbd
38
36
39
OPTIONS_DEFINE=	PAR2CMDLINE UNRAR FEEDPARSER YENC OPENSSL DOCS
37
OPTIONS_DEFINE=	PAR2CMDLINE UNRAR 7ZIP FEEDPARSER YENC OPENSSL DOCS
40
OPTIONS_DEFAULT=	PAR2CMDLINE UNRAR FEEDPARSER YENC OPENSSL
38
OPTIONS_DEFAULT=	PAR2CMDLINE UNRAR 7ZIP FEEDPARSER YENC OPENSSL
41
PAR2CMDLINE_DESC=	Required for postprocessing of par files
39
PAR2CMDLINE_DESC=	Required for postprocessing of par files
42
UNRAR_DESC=	Often required for unpacking many downloads
40
UNRAR_DESC=	Often required for unpacking many downloads
41
7ZIP_DESC=	Needed for unpacking 7z posts
43
FEEDPARSER_DESC=	rss-feed support
42
FEEDPARSER_DESC=	rss-feed support
44
YENC_DESC=	yenc support
43
YENC_DESC=	yenc support
45
44
Lines 48-53 Link Here
48
YENC_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}yenc>=0:${PORTSDIR}/news/py-yenc
47
YENC_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}yenc>=0:${PORTSDIR}/news/py-yenc
49
OPENSSL_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}openssl>=0:${PORTSDIR}/security/py-openssl
48
OPENSSL_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}openssl>=0:${PORTSDIR}/security/py-openssl
50
UNRAR_RUN_DEPENDS=	unrar:${PORTSDIR}/archivers/unrar
49
UNRAR_RUN_DEPENDS=	unrar:${PORTSDIR}/archivers/unrar
50
7ZIP_RUN_DEPENDS=	7za:${PORTSDIR}/archivers/p7zip
51
51
52
.include <bsd.port.pre.mk>
52
.include <bsd.port.pre.mk>
53
53
(-)sabnzbdplus/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (SABnzbd-0.7.20-src.tar.gz) = 20b3a4613a0ecdede4fdfeb628ae806e458ac1a6fb684306328dd4ed1faf8742
1
SHA256 (SABnzbd-1.0.0-src.tar.gz) = 7573dfafd6f3b51e899f47436de0e0b3d8e83a568e2a6f0f3da0aaa1f3d4cfaa
2
SIZE (SABnzbd-0.7.20-src.tar.gz) = 2389762
2
SIZE (SABnzbd-1.0.0-src.tar.gz) = 2973807
(-)sabnzbdplus/files/sabnzbd.in (-1 lines)
Lines 39-45 Link Here
39
pidfile=${sabnzbd_pidfile}
39
pidfile=${sabnzbd_pidfile}
40
40
41
start_precmd="${name}_prestart"
41
start_precmd="${name}_prestart"
42
extra_commands="status"
43
command_interpreter="%%PYTHON_CMD%%"
42
command_interpreter="%%PYTHON_CMD%%"
44
command="%%PREFIX%%/bin/SABnzbd.py"
43
command="%%PREFIX%%/bin/SABnzbd.py"
45
command_args="--daemon -f ${sabnzbd_conf_dir}/sabnzbd.ini --pidfile ${pidfile}"
44
command_args="--daemon -f ${sabnzbd_conf_dir}/sabnzbd.ini --pidfile ${pidfile}"
(-)sabnzbdplus/pkg-plist (-140 / +109 lines)
Lines 14-26 Link Here
14
%%PYTHON_SITELIBDIR%%/sabnzbd/downloader.py
14
%%PYTHON_SITELIBDIR%%/sabnzbd/downloader.py
15
%%PYTHON_SITELIBDIR%%/sabnzbd/emailer.py
15
%%PYTHON_SITELIBDIR%%/sabnzbd/emailer.py
16
%%PYTHON_SITELIBDIR%%/sabnzbd/encoding.py
16
%%PYTHON_SITELIBDIR%%/sabnzbd/encoding.py
17
%%PYTHON_SITELIBDIR%%/sabnzbd/getipaddress.py
17
%%PYTHON_SITELIBDIR%%/sabnzbd/growler.py
18
%%PYTHON_SITELIBDIR%%/sabnzbd/growler.py
18
%%PYTHON_SITELIBDIR%%/sabnzbd/interface.py
19
%%PYTHON_SITELIBDIR%%/sabnzbd/interface.py
19
%%PYTHON_SITELIBDIR%%/sabnzbd/lang.py
20
%%PYTHON_SITELIBDIR%%/sabnzbd/lang.py
20
%%PYTHON_SITELIBDIR%%/sabnzbd/misc.py
21
%%PYTHON_SITELIBDIR%%/sabnzbd/misc.py
21
%%PYTHON_SITELIBDIR%%/sabnzbd/newsunpack.py
22
%%PYTHON_SITELIBDIR%%/sabnzbd/newsunpack.py
22
%%PYTHON_SITELIBDIR%%/sabnzbd/newswrapper.py
23
%%PYTHON_SITELIBDIR%%/sabnzbd/newswrapper.py
23
%%PYTHON_SITELIBDIR%%/sabnzbd/newzbin.py
24
%%PYTHON_SITELIBDIR%%/sabnzbd/nzbqueue.py
24
%%PYTHON_SITELIBDIR%%/sabnzbd/nzbqueue.py
25
%%PYTHON_SITELIBDIR%%/sabnzbd/nzbstuff.py
25
%%PYTHON_SITELIBDIR%%/sabnzbd/nzbstuff.py
26
%%PYTHON_SITELIBDIR%%/sabnzbd/osxmenu.py
26
%%PYTHON_SITELIBDIR%%/sabnzbd/osxmenu.py
Lines 30-35 Link Here
30
%%PYTHON_SITELIBDIR%%/sabnzbd/rating.py
30
%%PYTHON_SITELIBDIR%%/sabnzbd/rating.py
31
%%PYTHON_SITELIBDIR%%/sabnzbd/rss.py
31
%%PYTHON_SITELIBDIR%%/sabnzbd/rss.py
32
%%PYTHON_SITELIBDIR%%/sabnzbd/sabtray.py
32
%%PYTHON_SITELIBDIR%%/sabnzbd/sabtray.py
33
%%PYTHON_SITELIBDIR%%/sabnzbd/sabtraylinux.py
33
%%PYTHON_SITELIBDIR%%/sabnzbd/scheduler.py
34
%%PYTHON_SITELIBDIR%%/sabnzbd/scheduler.py
34
%%PYTHON_SITELIBDIR%%/sabnzbd/skintext.py
35
%%PYTHON_SITELIBDIR%%/sabnzbd/skintext.py
35
%%PYTHON_SITELIBDIR%%/sabnzbd/trylist.py
36
%%PYTHON_SITELIBDIR%%/sabnzbd/trylist.py
Lines 38-66 Link Here
38
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/__init__.py
39
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/__init__.py
39
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/certgen.py
40
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/certgen.py
40
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/configobj.py
41
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/configobj.py
42
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/diskspeed.py
41
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/feedparser.py
43
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/feedparser.py
44
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/getperformance.py
45
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/happyeyeballs.py
42
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/json.py
46
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/json.py
43
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/kronos.py
47
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/kronos.py
44
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/listquote.py
48
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/listquote.py
49
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/ordered.py
45
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/pathbrowser.py
50
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/pathbrowser.py
51
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/pybonjour.py
52
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/pystone.py
46
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/rarfile.py
53
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/rarfile.py
47
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/rsslib.py
54
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/rsslib.py
48
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/servertests.py
55
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/servertests.py
56
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/sslinfo.py
49
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/ssmtplib.py
57
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/ssmtplib.py
50
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/systrayiconthread.py
58
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/systrayiconthread.py
51
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/upload.py
59
%%PYTHON_SITELIBDIR%%/sabnzbd/utils/upload.py
52
%%PYTHON_SITELIBDIR%%/sabnzbd/version.py
60
%%PYTHON_SITELIBDIR%%/sabnzbd/version.py
53
%%PYTHON_SITELIBDIR%%/sabnzbd/wizard.py
61
%%PYTHON_SITELIBDIR%%/sabnzbd/wizard.py
62
%%PYTHON_SITELIBDIR%%/sabnzbd/zconfig.py
63
%%PORTDOCS%%%%DOCSDIR%%/ABOUT.txt
64
%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT.txt
65
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt
66
%%PORTDOCS%%%%DOCSDIR%%/ISSUES.txt
67
%%PORTDOCS%%%%DOCSDIR%%/README.txt
54
%%DATADIR%%/cherrypy/LICENSE.txt
68
%%DATADIR%%/cherrypy/LICENSE.txt
69
%%DATADIR%%/cherrypy/Patch-for-CP-3.8.0.diff
55
%%DATADIR%%/cherrypy/VERSION.txt
70
%%DATADIR%%/cherrypy/VERSION.txt
56
%%DATADIR%%/cherrypy/__init__.py
71
%%DATADIR%%/cherrypy/__init__.py
57
%%DATADIR%%/cherrypy/_cpcgifs.py
72
%%DATADIR%%/cherrypy/__main__.py
58
%%DATADIR%%/cherrypy/_cpchecker.py
73
%%DATADIR%%/cherrypy/_cpchecker.py
74
%%DATADIR%%/cherrypy/_cpcompat.py
75
%%DATADIR%%/cherrypy/_cpcompat_subprocess.py
59
%%DATADIR%%/cherrypy/_cpconfig.py
76
%%DATADIR%%/cherrypy/_cpconfig.py
60
%%DATADIR%%/cherrypy/_cpdispatch.py
77
%%DATADIR%%/cherrypy/_cpdispatch.py
61
%%DATADIR%%/cherrypy/_cperror.py
78
%%DATADIR%%/cherrypy/_cperror.py
62
%%DATADIR%%/cherrypy/_cplogging.py
79
%%DATADIR%%/cherrypy/_cplogging.py
63
%%DATADIR%%/cherrypy/_cpmodpy.py
80
%%DATADIR%%/cherrypy/_cpmodpy.py
81
%%DATADIR%%/cherrypy/_cpnative_server.py
82
%%DATADIR%%/cherrypy/_cpreqbody.py
64
%%DATADIR%%/cherrypy/_cprequest.py
83
%%DATADIR%%/cherrypy/_cprequest.py
65
%%DATADIR%%/cherrypy/_cpserver.py
84
%%DATADIR%%/cherrypy/_cpserver.py
66
%%DATADIR%%/cherrypy/_cpthreadinglocal.py
85
%%DATADIR%%/cherrypy/_cpthreadinglocal.py
Lines 69-130 Link Here
69
%%DATADIR%%/cherrypy/_cpwsgi.py
88
%%DATADIR%%/cherrypy/_cpwsgi.py
70
%%DATADIR%%/cherrypy/_cpwsgi_server.py
89
%%DATADIR%%/cherrypy/_cpwsgi_server.py
71
%%DATADIR%%/cherrypy/cherryd
90
%%DATADIR%%/cherrypy/cherryd
91
%%DATADIR%%/cherrypy/daemon.py
72
%%DATADIR%%/cherrypy/favicon.ico
92
%%DATADIR%%/cherrypy/favicon.ico
73
%%DATADIR%%/cherrypy/lib/__init__.py
93
%%DATADIR%%/cherrypy/lib/__init__.py
74
%%DATADIR%%/cherrypy/lib/auth.py
94
%%DATADIR%%/cherrypy/lib/auth.py
95
%%DATADIR%%/cherrypy/lib/auth_basic.py
96
%%DATADIR%%/cherrypy/lib/auth_digest.py
75
%%DATADIR%%/cherrypy/lib/caching.py
97
%%DATADIR%%/cherrypy/lib/caching.py
76
%%DATADIR%%/cherrypy/lib/covercp.py
98
%%DATADIR%%/cherrypy/lib/covercp.py
99
%%DATADIR%%/cherrypy/lib/cpstats.py
77
%%DATADIR%%/cherrypy/lib/cptools.py
100
%%DATADIR%%/cherrypy/lib/cptools.py
78
%%DATADIR%%/cherrypy/lib/encoding.py
101
%%DATADIR%%/cherrypy/lib/encoding.py
102
%%DATADIR%%/cherrypy/lib/gctools.py
79
%%DATADIR%%/cherrypy/lib/http.py
103
%%DATADIR%%/cherrypy/lib/http.py
80
%%DATADIR%%/cherrypy/lib/httpauth.py
104
%%DATADIR%%/cherrypy/lib/httpauth.py
105
%%DATADIR%%/cherrypy/lib/httputil.py
106
%%DATADIR%%/cherrypy/lib/jsontools.py
107
%%DATADIR%%/cherrypy/lib/lockfile.py
108
%%DATADIR%%/cherrypy/lib/locking.py
81
%%DATADIR%%/cherrypy/lib/profiler.py
109
%%DATADIR%%/cherrypy/lib/profiler.py
82
%%DATADIR%%/cherrypy/lib/safemime.py
110
%%DATADIR%%/cherrypy/lib/reprconf.py
83
%%DATADIR%%/cherrypy/lib/sessions.py
111
%%DATADIR%%/cherrypy/lib/sessions.py
84
%%DATADIR%%/cherrypy/lib/static.py
112
%%DATADIR%%/cherrypy/lib/static.py
85
%%DATADIR%%/cherrypy/lib/tidy.py
113
%%DATADIR%%/cherrypy/lib/xmlrpcutil.py
86
%%DATADIR%%/cherrypy/lib/wsgiapp.py
87
%%DATADIR%%/cherrypy/lib/xmlrpc.py
88
%%DATADIR%%/cherrypy/process/__init__.py
114
%%DATADIR%%/cherrypy/process/__init__.py
89
%%DATADIR%%/cherrypy/process/plugins.py
115
%%DATADIR%%/cherrypy/process/plugins.py
90
%%DATADIR%%/cherrypy/process/servers.py
116
%%DATADIR%%/cherrypy/process/servers.py
91
%%DATADIR%%/cherrypy/process/win32.py
117
%%DATADIR%%/cherrypy/process/win32.py
92
%%DATADIR%%/cherrypy/process/wspbus.py
118
%%DATADIR%%/cherrypy/process/wspbus.py
93
%%DATADIR%%/cherrypy/wsgiserver/__init__.py
119
%%DATADIR%%/cherrypy/wsgiserver/__init__.py
120
%%DATADIR%%/cherrypy/wsgiserver/ssl_builtin.py
121
%%DATADIR%%/cherrypy/wsgiserver/ssl_pyopenssl.py
122
%%DATADIR%%/cherrypy/wsgiserver/wsgiserver2.py
123
%%DATADIR%%/cherrypy/wsgiserver/wsgiserver3.py
94
%%DATADIR%%/gntp/__init__.py
124
%%DATADIR%%/gntp/__init__.py
95
%%DATADIR%%/gntp/notifier.py
125
%%DATADIR%%/gntp/notifier.py
96
%%DATADIR%%/interfaces/Classic/README.TXT
97
%%DATADIR%%/interfaces/Classic/templates/config.tmpl
98
%%DATADIR%%/interfaces/Classic/templates/config_cat.tmpl
99
%%DATADIR%%/interfaces/Classic/templates/config_folders.tmpl
100
%%DATADIR%%/interfaces/Classic/templates/config_general.tmpl
101
%%DATADIR%%/interfaces/Classic/templates/config_indexers.tmpl
102
%%DATADIR%%/interfaces/Classic/templates/config_notify.tmpl
103
%%DATADIR%%/interfaces/Classic/templates/config_rss.tmpl
104
%%DATADIR%%/interfaces/Classic/templates/config_scheduling.tmpl
105
%%DATADIR%%/interfaces/Classic/templates/config_server.tmpl
106
%%DATADIR%%/interfaces/Classic/templates/config_sorting.tmpl
107
%%DATADIR%%/interfaces/Classic/templates/config_switches.tmpl
108
%%DATADIR%%/interfaces/Classic/templates/history.tmpl
109
%%DATADIR%%/interfaces/Classic/templates/inc_bottom.tmpl
110
%%DATADIR%%/interfaces/Classic/templates/inc_cmenu.tmpl
111
%%DATADIR%%/interfaces/Classic/templates/inc_top.tmpl
112
%%DATADIR%%/interfaces/Classic/templates/main.tmpl
113
%%DATADIR%%/interfaces/Classic/templates/nzo.tmpl
114
%%DATADIR%%/interfaces/Classic/templates/queue.tmpl
115
%%DATADIR%%/interfaces/Classic/templates/static/images/favicon.ico
116
%%DATADIR%%/interfaces/Classic/templates/static/javascript/dropdown.js
117
%%DATADIR%%/interfaces/Classic/templates/static/placeholder.txt
118
%%DATADIR%%/interfaces/Classic/templates/static/stylesheets/colorschemes/black.css
119
%%DATADIR%%/interfaces/Classic/templates/static/stylesheets/colorschemes/classic.css
120
%%DATADIR%%/interfaces/Classic/templates/static/stylesheets/colorschemes/darkblue.css
121
%%DATADIR%%/interfaces/Classic/templates/static/stylesheets/colorschemes/green.css
122
%%DATADIR%%/interfaces/Classic/templates/static/stylesheets/colorschemes/lightblue.css
123
%%DATADIR%%/interfaces/Classic/templates/static/stylesheets/colorschemes/red.css
124
%%DATADIR%%/interfaces/Classic/templates/static/stylesheets/colorschemes/white-black.css
125
%%DATADIR%%/interfaces/Classic/templates/static/stylesheets/default.css
126
%%DATADIR%%/interfaces/Classic/templates/static/stylesheets/defaultcolors.css
127
%%DATADIR%%/interfaces/Classic/templates/status.tmpl
128
%%DATADIR%%/interfaces/Config/README.txt
126
%%DATADIR%%/interfaces/Config/README.txt
129
%%DATADIR%%/interfaces/Config/templates/_inc_footer_uc.tmpl
127
%%DATADIR%%/interfaces/Config/templates/_inc_footer_uc.tmpl
130
%%DATADIR%%/interfaces/Config/templates/_inc_header_uc.tmpl
128
%%DATADIR%%/interfaces/Config/templates/_inc_header_uc.tmpl
Lines 132-138 Link Here
132
%%DATADIR%%/interfaces/Config/templates/config_cat.tmpl
130
%%DATADIR%%/interfaces/Config/templates/config_cat.tmpl
133
%%DATADIR%%/interfaces/Config/templates/config_folders.tmpl
131
%%DATADIR%%/interfaces/Config/templates/config_folders.tmpl
134
%%DATADIR%%/interfaces/Config/templates/config_general.tmpl
132
%%DATADIR%%/interfaces/Config/templates/config_general.tmpl
135
%%DATADIR%%/interfaces/Config/templates/config_indexers.tmpl
136
%%DATADIR%%/interfaces/Config/templates/config_notify.tmpl
133
%%DATADIR%%/interfaces/Config/templates/config_notify.tmpl
137
%%DATADIR%%/interfaces/Config/templates/config_rss.tmpl
134
%%DATADIR%%/interfaces/Config/templates/config_rss.tmpl
138
%%DATADIR%%/interfaces/Config/templates/config_scheduling.tmpl
135
%%DATADIR%%/interfaces/Config/templates/config_scheduling.tmpl
Lines 141-218 Link Here
141
%%DATADIR%%/interfaces/Config/templates/config_special.tmpl
138
%%DATADIR%%/interfaces/Config/templates/config_special.tmpl
142
%%DATADIR%%/interfaces/Config/templates/config_switches.tmpl
139
%%DATADIR%%/interfaces/Config/templates/config_switches.tmpl
143
%%DATADIR%%/interfaces/Config/templates/main.tmpl
140
%%DATADIR%%/interfaces/Config/templates/main.tmpl
144
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/images/ui-bg_flat_0_aaaaaa_40x100.png
141
%%DATADIR%%/interfaces/Config/templates/staticcfg/bootstrap/css/bootstrap.min.css
145
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/images/ui-bg_flat_0_eeeeee_40x100.png
142
%%DATADIR%%/interfaces/Config/templates/staticcfg/bootstrap/fonts/glyphicons-halflings-regular.eot
146
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/images/ui-bg_flat_0_ffffff_40x100.png
143
%%DATADIR%%/interfaces/Config/templates/staticcfg/bootstrap/fonts/glyphicons-halflings-regular.svg
147
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/images/ui-bg_glass_55_fbf9ee_1x400.png
144
%%DATADIR%%/interfaces/Config/templates/staticcfg/bootstrap/fonts/glyphicons-halflings-regular.ttf
148
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/images/ui-bg_glass_95_fef1ec_1x400.png
145
%%DATADIR%%/interfaces/Config/templates/staticcfg/bootstrap/js/bootstrap.min.js
149
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/images/ui-bg_highlight-soft_75_dcdcdc_1x100.png
150
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/images/ui-bg_highlight-soft_75_dddddd_1x100.png
151
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/images/ui-bg_highlight-soft_75_efefef_1x100.png
152
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/images/ui-bg_inset-soft_75_dfdfdf_1x100.png
153
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/images/ui-icons_222222_256x240.png
154
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/images/ui-icons_2e83ff_256x240.png
155
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/images/ui-icons_8c291d_256x240.png
156
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/images/ui-icons_cd0a0a_256x240.png
157
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/style.css
146
%%DATADIR%%/interfaces/Config/templates/staticcfg/css/style.css
158
%%DATADIR%%/interfaces/Config/templates/staticcfg/ico/apple-touch-icon-114x114-precomposed.png
147
%%DATADIR%%/interfaces/Config/templates/staticcfg/ico/apple-touch-icon-120x120-precomposed.png
159
%%DATADIR%%/interfaces/Config/templates/staticcfg/ico/apple-touch-icon-144x144-precomposed.png
148
%%DATADIR%%/interfaces/Config/templates/staticcfg/ico/apple-touch-icon-152x152-precomposed.png
160
%%DATADIR%%/interfaces/Config/templates/staticcfg/ico/apple-touch-icon-57x57-precomposed.png
149
%%DATADIR%%/interfaces/Config/templates/staticcfg/ico/apple-touch-icon-180x180-precomposed.png
161
%%DATADIR%%/interfaces/Config/templates/staticcfg/ico/apple-touch-icon-72x72-precomposed.png
150
%%DATADIR%%/interfaces/Config/templates/staticcfg/ico/apple-touch-icon-76x76-precomposed.png
162
%%DATADIR%%/interfaces/Config/templates/staticcfg/ico/apple-touch-icon-precomposed.png
163
%%DATADIR%%/interfaces/Config/templates/staticcfg/ico/favicon.ico
151
%%DATADIR%%/interfaces/Config/templates/staticcfg/ico/favicon.ico
164
%%DATADIR%%/interfaces/Config/templates/staticcfg/images/button.png
152
%%DATADIR%%/interfaces/Config/templates/staticcfg/ico/faviconpaused.ico
165
%%DATADIR%%/interfaces/Config/templates/staticcfg/images/loading-bar.gif
153
%%DATADIR%%/interfaces/Config/templates/staticcfg/images/logo-small.png
166
%%DATADIR%%/interfaces/Config/templates/staticcfg/images/loading16.gif
167
%%DATADIR%%/interfaces/Config/templates/staticcfg/images/logo.png
154
%%DATADIR%%/interfaces/Config/templates/staticcfg/images/logo.png
168
%%DATADIR%%/interfaces/Config/templates/staticcfg/images/mini-left.gif
155
%%DATADIR%%/interfaces/Config/templates/staticcfg/js/jquery-1.11.2.min.js
169
%%DATADIR%%/interfaces/Config/templates/staticcfg/images/mini-right.gif
170
%%DATADIR%%/interfaces/Config/templates/staticcfg/images/no16.png
171
%%DATADIR%%/interfaces/Config/templates/staticcfg/images/select_arrow.gif
172
%%DATADIR%%/interfaces/Config/templates/staticcfg/images/yes16.png
173
%%DATADIR%%/interfaces/Config/templates/staticcfg/js/script.js
156
%%DATADIR%%/interfaces/Config/templates/staticcfg/js/script.js
174
%%DATADIR%%/interfaces/Mobile/README.txt
157
%%DATADIR%%/interfaces/Glitter/licenses/LICENSE-Apache.txt
175
%%DATADIR%%/interfaces/Mobile/licenses/LICENSE-BSD.txt
158
%%DATADIR%%/interfaces/Glitter/licenses/LICENSE-CC.txt
176
%%DATADIR%%/interfaces/Mobile/licenses/LICENSE-CC.txt
159
%%DATADIR%%/interfaces/Glitter/licenses/LICENSE-MIT.txt
177
%%DATADIR%%/interfaces/Mobile/licenses/LICENSE-GPL.txt
160
%%DATADIR%%/interfaces/Glitter/templates/history.tmpl
178
%%DATADIR%%/interfaces/Mobile/licenses/LICENSE-MIT.txt
161
%%DATADIR%%/interfaces/Glitter/templates/include_history.tmpl
179
%%DATADIR%%/interfaces/Mobile/templates/main.tmpl
162
%%DATADIR%%/interfaces/Glitter/templates/include_menu.tmpl
180
%%DATADIR%%/interfaces/Mobile/templates/static/images/dark/back_button.png
163
%%DATADIR%%/interfaces/Glitter/templates/include_messages.tmpl
181
%%DATADIR%%/interfaces/Mobile/templates/static/images/dark/back_button_clicked.png
164
%%DATADIR%%/interfaces/Glitter/templates/include_modals.tmpl
182
%%DATADIR%%/interfaces/Mobile/templates/static/images/dark/button.png
165
%%DATADIR%%/interfaces/Glitter/templates/include_queue.tmpl
183
%%DATADIR%%/interfaces/Mobile/templates/static/images/dark/button_clicked.png
166
%%DATADIR%%/interfaces/Glitter/templates/main.tmpl
184
%%DATADIR%%/interfaces/Mobile/templates/static/images/dark/chevron.png
167
%%DATADIR%%/interfaces/Glitter/templates/nzo.tmpl
185
%%DATADIR%%/interfaces/Mobile/templates/static/images/dark/chevron_circle.png
168
%%DATADIR%%/interfaces/Glitter/templates/queue.tmpl
186
%%DATADIR%%/interfaces/Mobile/templates/static/images/dark/grayButton.png
169
%%DATADIR%%/interfaces/Glitter/templates/static/bootstrap/css/bootstrap.min.css
187
%%DATADIR%%/interfaces/Mobile/templates/static/images/dark/loading.gif
170
%%DATADIR%%/interfaces/Glitter/templates/static/bootstrap/fonts/glyphicons-halflings-regular.eot
188
%%DATADIR%%/interfaces/Mobile/templates/static/images/dark/on_off.png
171
%%DATADIR%%/interfaces/Glitter/templates/static/bootstrap/fonts/glyphicons-halflings-regular.svg
189
%%DATADIR%%/interfaces/Mobile/templates/static/images/dark/rowhead.png
172
%%DATADIR%%/interfaces/Glitter/templates/static/bootstrap/fonts/glyphicons-halflings-regular.ttf
190
%%DATADIR%%/interfaces/Mobile/templates/static/images/dark/toggle.png
173
%%DATADIR%%/interfaces/Glitter/templates/static/bootstrap/js/bootstrap.min.js
191
%%DATADIR%%/interfaces/Mobile/templates/static/images/dark/toggleOn.png
174
%%DATADIR%%/interfaces/Glitter/templates/static/images/logo-small.png
192
%%DATADIR%%/interfaces/Mobile/templates/static/images/dark/toolbar.png
175
%%DATADIR%%/interfaces/Glitter/templates/static/images/logo.png
193
%%DATADIR%%/interfaces/Mobile/templates/static/images/dark/whiteButton.png
176
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/date.min.js
194
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/backButton.png
177
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/glitter.js
195
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/blueButton.png
178
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/jquery-1.11.2.min.js
196
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/cancel.png
179
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/jquery-ui.min.js
197
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/chevron.png
180
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/jquery.peity.min.js
198
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/grayButton.png
181
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/knockout-extensions.js
199
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/listArrowSel.png
182
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/knockout-latest.js
200
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/listGroup.png
183
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/moment.js
201
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/loading.gif
184
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/momentjs_locale/da.js
202
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/on_off.png
185
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/momentjs_locale/de.js
203
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/pinstripes.png
186
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/momentjs_locale/es.js
204
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/selection.png
187
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/momentjs_locale/fi.js
205
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/thumb.png
188
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/momentjs_locale/fr.js
206
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/toggle.png
189
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/momentjs_locale/nb.js
207
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/toggleOn.png
190
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/momentjs_locale/nl.js
208
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/toolButton.png
191
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/momentjs_locale/pl.js
209
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/toolbar.png
192
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/momentjs_locale/pt-br.js
210
%%DATADIR%%/interfaces/Mobile/templates/static/images/light/whiteButton.png
193
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/momentjs_locale/ro.js
211
%%DATADIR%%/interfaces/Mobile/templates/static/images/sab.png
194
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/momentjs_locale/ru.js
212
%%DATADIR%%/interfaces/Mobile/templates/static/javascripts/mobile.js
195
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/momentjs_locale/sr.js
213
%%DATADIR%%/interfaces/Mobile/templates/static/stylesheets/colorschemes/dark.css
196
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/momentjs_locale/sv.js
214
%%DATADIR%%/interfaces/Mobile/templates/static/stylesheets/colorschemes/light.css
197
%%DATADIR%%/interfaces/Glitter/templates/static/javascripts/momentjs_locale/zh-cn.js
215
%%DATADIR%%/interfaces/Mobile/templates/static/stylesheets/jqtouch.css
198
%%DATADIR%%/interfaces/Glitter/templates/static/stylesheets/colorschemes/Default.css
199
%%DATADIR%%/interfaces/Glitter/templates/static/stylesheets/colorschemes/Night.css
200
%%DATADIR%%/interfaces/Glitter/templates/static/stylesheets/glitter.css
201
%%DATADIR%%/interfaces/Glitter/templates/static/stylesheets/glitter.mobile.css
202
%%DATADIR%%/interfaces/Glitter/templates/status.tmpl
216
%%DATADIR%%/interfaces/Plush/README.txt
203
%%DATADIR%%/interfaces/Plush/README.txt
217
%%DATADIR%%/interfaces/Plush/licenses/LICENSE-BSD.txt
204
%%DATADIR%%/interfaces/Plush/licenses/LICENSE-BSD.txt
218
%%DATADIR%%/interfaces/Plush/licenses/LICENSE-CC.txt
205
%%DATADIR%%/interfaces/Plush/licenses/LICENSE-CC.txt
Lines 224-241 Link Here
224
%%DATADIR%%/interfaces/Plush/templates/_inc_footer.tmpl
211
%%DATADIR%%/interfaces/Plush/templates/_inc_footer.tmpl
225
%%DATADIR%%/interfaces/Plush/templates/_inc_header.tmpl
212
%%DATADIR%%/interfaces/Plush/templates/_inc_header.tmpl
226
%%DATADIR%%/interfaces/Plush/templates/_inc_modals.tmpl
213
%%DATADIR%%/interfaces/Plush/templates/_inc_modals.tmpl
227
%%DATADIR%%/interfaces/Plush/templates/config.tmpl
228
%%DATADIR%%/interfaces/Plush/templates/config_cat.tmpl
229
%%DATADIR%%/interfaces/Plush/templates/config_folders.tmpl
230
%%DATADIR%%/interfaces/Plush/templates/config_general.tmpl
231
%%DATADIR%%/interfaces/Plush/templates/config_indexers.tmpl
232
%%DATADIR%%/interfaces/Plush/templates/config_notify.tmpl
233
%%DATADIR%%/interfaces/Plush/templates/config_rss.tmpl
234
%%DATADIR%%/interfaces/Plush/templates/config_scheduling.tmpl
235
%%DATADIR%%/interfaces/Plush/templates/config_server.tmpl
236
%%DATADIR%%/interfaces/Plush/templates/config_sorting.tmpl
237
%%DATADIR%%/interfaces/Plush/templates/config_special.tmpl
238
%%DATADIR%%/interfaces/Plush/templates/config_switches.tmpl
239
%%DATADIR%%/interfaces/Plush/templates/history.tmpl
214
%%DATADIR%%/interfaces/Plush/templates/history.tmpl
240
%%DATADIR%%/interfaces/Plush/templates/main.tmpl
215
%%DATADIR%%/interfaces/Plush/templates/main.tmpl
241
%%DATADIR%%/interfaces/Plush/templates/nzo.tmpl
216
%%DATADIR%%/interfaces/Plush/templates/nzo.tmpl
Lines 303-319 Link Here
303
%%DATADIR%%/interfaces/smpl/License-PlotKit.txt
278
%%DATADIR%%/interfaces/smpl/License-PlotKit.txt
304
%%DATADIR%%/interfaces/smpl/License-getElementPosition.txt
279
%%DATADIR%%/interfaces/smpl/License-getElementPosition.txt
305
%%DATADIR%%/interfaces/smpl/README.txt
280
%%DATADIR%%/interfaces/smpl/README.txt
306
%%DATADIR%%/interfaces/smpl/templates/config.tmpl
307
%%DATADIR%%/interfaces/smpl/templates/config_cat.tmpl
308
%%DATADIR%%/interfaces/smpl/templates/config_folders.tmpl
309
%%DATADIR%%/interfaces/smpl/templates/config_general.tmpl
310
%%DATADIR%%/interfaces/smpl/templates/config_indexers.tmpl
311
%%DATADIR%%/interfaces/smpl/templates/config_notify.tmpl
312
%%DATADIR%%/interfaces/smpl/templates/config_rss.tmpl
313
%%DATADIR%%/interfaces/smpl/templates/config_scheduling.tmpl
314
%%DATADIR%%/interfaces/smpl/templates/config_server.tmpl
315
%%DATADIR%%/interfaces/smpl/templates/config_sorting.tmpl
316
%%DATADIR%%/interfaces/smpl/templates/config_switches.tmpl
317
%%DATADIR%%/interfaces/smpl/templates/history.tmpl
281
%%DATADIR%%/interfaces/smpl/templates/history.tmpl
318
%%DATADIR%%/interfaces/smpl/templates/main.tmpl
282
%%DATADIR%%/interfaces/smpl/templates/main.tmpl
319
%%DATADIR%%/interfaces/smpl/templates/nzo.tmpl
283
%%DATADIR%%/interfaces/smpl/templates/nzo.tmpl
Lines 342-348 Link Here
342
%%DATADIR%%/interfaces/smpl/templates/static/stylesheets/smpl.css
306
%%DATADIR%%/interfaces/smpl/templates/static/stylesheets/smpl.css
343
%%DATADIR%%/interfaces/smpl/templates/status.tmpl
307
%%DATADIR%%/interfaces/smpl/templates/status.tmpl
344
%%DATADIR%%/interfaces/wizard/README.TXT
308
%%DATADIR%%/interfaces/wizard/README.TXT
345
%%DATADIR%%/interfaces/wizard/four.html
346
%%DATADIR%%/interfaces/wizard/inc_bottom.tmpl
309
%%DATADIR%%/interfaces/wizard/inc_bottom.tmpl
347
%%DATADIR%%/interfaces/wizard/inc_top.tmpl
310
%%DATADIR%%/interfaces/wizard/inc_top.tmpl
348
%%DATADIR%%/interfaces/wizard/index.html
311
%%DATADIR%%/interfaces/wizard/index.html
Lines 357-369 Link Here
357
%%DATADIR%%/interfaces/wizard/static/images/smpl.png
320
%%DATADIR%%/interfaces/wizard/static/images/smpl.png
358
%%DATADIR%%/interfaces/wizard/static/javascript/checkserver.js
321
%%DATADIR%%/interfaces/wizard/static/javascript/checkserver.js
359
%%DATADIR%%/interfaces/wizard/static/javascript/jquery.js
322
%%DATADIR%%/interfaces/wizard/static/javascript/jquery.js
360
%%DATADIR%%/interfaces/wizard/static/javascript/pagetwo.js
361
%%DATADIR%%/interfaces/wizard/static/javascript/restart.js
323
%%DATADIR%%/interfaces/wizard/static/javascript/restart.js
362
%%DATADIR%%/interfaces/wizard/static/style.css
324
%%DATADIR%%/interfaces/wizard/static/style.css
363
%%DATADIR%%/interfaces/wizard/three.html
364
%%DATADIR%%/interfaces/wizard/two.html
325
%%DATADIR%%/interfaces/wizard/two.html
365
%%DATADIR%%/locale/da/LC_MESSAGES/SABnzbd.mo
326
%%DATADIR%%/locale/da/LC_MESSAGES/SABnzbd.mo
366
%%DATADIR%%/locale/de/LC_MESSAGES/SABnzbd.mo
327
%%DATADIR%%/locale/de/LC_MESSAGES/SABnzbd.mo
328
%%DATADIR%%/locale/en/LC_MESSAGES/SABnzbd.mo
367
%%DATADIR%%/locale/es/LC_MESSAGES/SABnzbd.mo
329
%%DATADIR%%/locale/es/LC_MESSAGES/SABnzbd.mo
368
%%DATADIR%%/locale/fi/LC_MESSAGES/SABnzbd.mo
330
%%DATADIR%%/locale/fi/LC_MESSAGES/SABnzbd.mo
369
%%DATADIR%%/locale/fr/LC_MESSAGES/SABnzbd.mo
331
%%DATADIR%%/locale/fr/LC_MESSAGES/SABnzbd.mo
Lines 372-378 Link Here
372
%%DATADIR%%/locale/pl/LC_MESSAGES/SABnzbd.mo
334
%%DATADIR%%/locale/pl/LC_MESSAGES/SABnzbd.mo
373
%%DATADIR%%/locale/pt_BR/LC_MESSAGES/SABnzbd.mo
335
%%DATADIR%%/locale/pt_BR/LC_MESSAGES/SABnzbd.mo
374
%%DATADIR%%/locale/ro/LC_MESSAGES/SABnzbd.mo
336
%%DATADIR%%/locale/ro/LC_MESSAGES/SABnzbd.mo
337
%%DATADIR%%/locale/ru/LC_MESSAGES/SABnzbd.mo
338
%%DATADIR%%/locale/sr/LC_MESSAGES/SABnzbd.mo
375
%%DATADIR%%/locale/sv/LC_MESSAGES/SABnzbd.mo
339
%%DATADIR%%/locale/sv/LC_MESSAGES/SABnzbd.mo
340
%%DATADIR%%/locale/zh_CN/LC_MESSAGES/SABnzbd.mo
376
%%DATADIR%%/po/email/SABemail.pot
341
%%DATADIR%%/po/email/SABemail.pot
377
%%DATADIR%%/po/email/da.po
342
%%DATADIR%%/po/email/da.po
378
%%DATADIR%%/po/email/de.po
343
%%DATADIR%%/po/email/de.po
Lines 383-424 Link Here
383
%%DATADIR%%/po/email/nb.po
348
%%DATADIR%%/po/email/nb.po
384
%%DATADIR%%/po/email/nl.po
349
%%DATADIR%%/po/email/nl.po
385
%%DATADIR%%/po/email/pl.po
350
%%DATADIR%%/po/email/pl.po
386
%%DATADIR%%/po/email/pl.px
387
%%DATADIR%%/po/email/pt_BR.po
351
%%DATADIR%%/po/email/pt_BR.po
388
%%DATADIR%%/po/email/ro.po
352
%%DATADIR%%/po/email/ro.po
389
%%DATADIR%%/po/email/ro.px
353
%%DATADIR%%/po/email/ru.po
354
%%DATADIR%%/po/email/sr.po
390
%%DATADIR%%/po/email/sv.po
355
%%DATADIR%%/po/email/sv.po
356
%%DATADIR%%/po/email/zh_CN.po
391
%%DATADIR%%/po/main/SABnzbd.pot
357
%%DATADIR%%/po/main/SABnzbd.pot
392
%%DATADIR%%/po/main/da.po
358
%%DATADIR%%/po/main/da.po
393
%%DATADIR%%/po/main/de.po
359
%%DATADIR%%/po/main/de.po
360
%%DATADIR%%/po/main/en.po
394
%%DATADIR%%/po/main/es.po
361
%%DATADIR%%/po/main/es.po
395
%%DATADIR%%/po/main/fi.po
362
%%DATADIR%%/po/main/fi.po
396
%%DATADIR%%/po/main/fr.po
363
%%DATADIR%%/po/main/fr.po
397
%%DATADIR%%/po/main/nb.po
364
%%DATADIR%%/po/main/nb.po
398
%%DATADIR%%/po/main/nl.po
365
%%DATADIR%%/po/main/nl.po
399
%%DATADIR%%/po/main/pl.po
366
%%DATADIR%%/po/main/pl.po
400
%%DATADIR%%/po/main/pl.px
401
%%DATADIR%%/po/main/pt_BR.po
367
%%DATADIR%%/po/main/pt_BR.po
402
%%DATADIR%%/po/main/ro.po
368
%%DATADIR%%/po/main/ro.po
403
%%DATADIR%%/po/main/ro.px
369
%%DATADIR%%/po/main/ru.po
370
%%DATADIR%%/po/main/sr.po
404
%%DATADIR%%/po/main/sv.po
371
%%DATADIR%%/po/main/sv.po
372
%%DATADIR%%/po/main/zh_CN.po
405
%%DATADIR%%/po/nsis/SABnsis.pot
373
%%DATADIR%%/po/nsis/SABnsis.pot
406
%%DATADIR%%/po/nsis/da.po
374
%%DATADIR%%/po/nsis/da.po
407
%%DATADIR%%/po/nsis/de.po
375
%%DATADIR%%/po/nsis/de.po
376
%%DATADIR%%/po/nsis/en.po
408
%%DATADIR%%/po/nsis/es.po
377
%%DATADIR%%/po/nsis/es.po
409
%%DATADIR%%/po/nsis/fi.po
378
%%DATADIR%%/po/nsis/fi.po
410
%%DATADIR%%/po/nsis/fr.po
379
%%DATADIR%%/po/nsis/fr.po
411
%%DATADIR%%/po/nsis/nb.po
380
%%DATADIR%%/po/nsis/nb.po
412
%%DATADIR%%/po/nsis/nl.po
381
%%DATADIR%%/po/nsis/nl.po
413
%%DATADIR%%/po/nsis/pl.po
382
%%DATADIR%%/po/nsis/pl.po
414
%%DATADIR%%/po/nsis/pl.px
415
%%DATADIR%%/po/nsis/pt_BR.po
383
%%DATADIR%%/po/nsis/pt_BR.po
416
%%DATADIR%%/po/nsis/ro.po
384
%%DATADIR%%/po/nsis/ro.po
417
%%DATADIR%%/po/nsis/ro.px
385
%%DATADIR%%/po/nsis/ru.po
386
%%DATADIR%%/po/nsis/sr.po
418
%%DATADIR%%/po/nsis/sv.po
387
%%DATADIR%%/po/nsis/sv.po
388
%%DATADIR%%/po/nsis/zh_CN.po
419
%%DATADIR%%/tools/make_mo.py
389
%%DATADIR%%/tools/make_mo.py
420
%%DATADIR%%/tools/msgfmt.py
390
%%DATADIR%%/tools/msgfmt.py
421
%%DATADIR%%/util/__init__.py
391
%%DATADIR%%/util/__init__.py
422
%%DATADIR%%/util/apireg.py
392
%%DATADIR%%/util/apireg.py
423
%%DATADIR%%/util/mailslot.py
393
%%DATADIR%%/util/mailslot.py
424
%%DATADIR%%/util/pystone.py

Return to bug 208051