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

Collapse All | Expand All

(-)UPDATING (+12 lines)
Lines 5-10 Link Here
5
You should get into the habit of checking this file for changes each time
5
You should get into the habit of checking this file for changes each time
6
you update your ports collection, before attempting any port upgrades.
6
you update your ports collection, before attempting any port upgrades.
7
7
8
20180331:
9
  AFFECTS: users of www/nextcloud
10
  AUTHOR: brnrd@FreeBSD.org
11
12
  With the 13.0.1 update the path for Nextcloud Apps installed by the port
13
  and package has changed from apps to apps-pkg. You must update the
14
  "apps_paths" configuration of your nextcloud installation, a patch for
15
  the default installation can be applied with:
16
17
  # cd /usr/local/www/nextcloud
18
  # su -m www -c "php ./occ config:import < /usr/local/share/nextcloud/fix-apps_paths.json
19
8
20180330:
20
20180330:
9
  AFFECTS: users of lang/perl5*
21
  AFFECTS: users of lang/perl5*
10
  AUTHOR: mat@FreeBSD.org
22
  AUTHOR: mat@FreeBSD.org
(-)www/nextcloud/Makefile (-2 / +5 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	nextcloud
3
PORTNAME=	nextcloud
4
DISTVERSION=	13.0.0
4
DISTVERSION=	13.0.1
5
CATEGORIES=	www
5
CATEGORIES=	www
6
MASTER_SITES=	https://download.nextcloud.com/server/prereleases/
6
MASTER_SITES=	https://download.nextcloud.com/server/prereleases/
7
7
Lines 44-50 Link Here
44
SSL_USE=	PHP=openssl
44
SSL_USE=	PHP=openssl
45
45
46
post-patch:
46
post-patch:
47
	@${REINPLACE_CMD} -e 's|/var/www/|${WWWDIR}|' ${WRKSRC}/config/config.sample.php
47
	@${REINPLACE_CMD} -e 's|/var/www/${PORTNAME}|${WWWDIR}|' ${WRKSRC}/config/config.sample.php
48
	@${MV} ${WRKSRC}/apps ${WRKSRC}/apps-pkg
48
49
49
do-install:
50
do-install:
50
	@${MKDIR} -m 0755 ${STAGEDIR}${WWWDIR}
51
	@${MKDIR} -m 0755 ${STAGEDIR}${WWWDIR}
Lines 51-55 Link Here
51
	@cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}
52
	@cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}
52
	@${RM} ${STAGEDIR}${WWWDIR}/updater/updater.phar
53
	@${RM} ${STAGEDIR}${WWWDIR}/updater/updater.phar
53
	@${MKDIR} ${STAGEDIR}${WWWDIR}/data
54
	@${MKDIR} ${STAGEDIR}${WWWDIR}/data
55
	@${MKDIR} ${STAGEDIR}${WWWDIR}/apps
56
	@${INSTALL_DATA} -d ${FILESDIR}/fix-apps_paths.json ${STAGEDIR}${DATADIR}
54
57
55
.include <bsd.port.mk>
58
.include <bsd.port.mk>
(-)www/nextcloud/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1517914004
1
TIMESTAMP = 1521629500
2
SHA256 (nextcloud-13.0.0.tar.bz2) = 38e6064432a2d1a044f219028d3fd46cb7a943a47e11eef346810bd289705aec
2
SHA256 (nextcloud-13.0.1.tar.bz2) = 5743314a71e972ae46a14b36b37394d4545915aa5f32d9e12ba786d04c1f1d11
3
SIZE (nextcloud-13.0.0.tar.bz2) = 43397247
3
SIZE (nextcloud-13.0.1.tar.bz2) = 44183890
(-)www/nextcloud/files/patch-config_config.sample.php (+37 lines)
Line 0 Link Here
1
--- config/config.sample.php.orig	2018-03-13 18:47:31 UTC
2
+++ config/config.sample.php
3
@@ -79,7 +79,7 @@ $CONFIG = array(
4
  *
5
  * Default to ``data/`` in the Nextcloud directory.
6
  */
7
-'datadirectory' => '/var/www/nextcloud/data',
8
+'datadirectory' => '/usr/local/www/nextcloud/data',
9
 
10
 /**
11
  * The current version number of your Nextcloud installation. This is set up
12
@@ -814,10 +814,15 @@ $CONFIG = array(
13
  */
14
 'apps_paths' => array(
15
 	array(
16
-		'path'=> '/var/www/nextcloud/apps',
17
+		'path'=> '/usr/local/www/nextcloud/apps',
18
 		'url' => '/apps',
19
 		'writable' => true,
20
 	),
21
+	array(
22
+		'path'=> '/usr/local/www/nextcloud/apps-pkg',
23
+		'url' => '/apps-pkg',
24
+		'writable' => false,
25
+	),
26
 ),
27
 
28
 /**
29
@@ -1415,7 +1420,7 @@ $CONFIG = array(
30
  *
31
  * Defaults to ``data/mount.json`` in the Nextcloud directory.
32
  */
33
-'mount_file' => '/var/www/nextcloud/data/mount.json',
34
+'mount_file' => '/usr/local/www/nextcloud/data/mount.json',
35
 
36
 /**
37
  * When ``true``, prevent Nextcloud from changing the cache due to changes in
(-)www/nextcloud/files/pkg-message.in (-2 / +7 lines)
Lines 13-19 Link Here
13
- Ensure nextcloud/data and nextcloud/config/config.php are owned by 
13
- Ensure nextcloud/data and nextcloud/config/config.php are owned by 
14
        www user and group
14
        www user and group
15
15
16
17
***********************************************************************
16
***********************************************************************
18
*                         POST INSTALL CONFIGURATION                  *
17
*                         POST INSTALL CONFIGURATION                  *
19
***********************************************************************
18
***********************************************************************
Lines 36-43 Link Here
36
*                       NEXTCLOUD VERSION UPGRADE                     *
35
*                       NEXTCLOUD VERSION UPGRADE                     *
37
***********************************************************************
36
***********************************************************************
38
37
38
After updating to 13.0.1 you MUST adapt your "apps_paths" configuration.
39
A fix for the default installation is available with the port:
40
41
* cd %%WWWDIR%%
42
* su -m www -c "php ./occ config:import < %%DATADIR%%/fix-apps_paths.json
43
39
After a version migration you should upgrade your nextcloud instance
44
After a version migration you should upgrade your nextcloud instance
40
using command line:
45
using command line:
41
46
42
* cd /usr/local/www/nextcloud
47
* cd %%WWWDIR%%
43
* su -m www -c "php ./occ upgrade"
48
* su -m www -c "php ./occ upgrade"
(-)www/nextcloud/pkg-plist (-6712 / +6820 lines)
Lines 4044-10734 Link Here
4044
%%WWWDIR%%/3rdparty/symfony/translation/composer.json
4044
%%WWWDIR%%/3rdparty/symfony/translation/composer.json
4045
%%WWWDIR%%/3rdparty/symfony/translation/phpunit.xml.dist
4045
%%WWWDIR%%/3rdparty/symfony/translation/phpunit.xml.dist
4046
%%WWWDIR%%/AUTHORS
4046
%%WWWDIR%%/AUTHORS
4047
%%WWWDIR%%/apps/activity/appinfo/app.php
4047
%%WWWDIR%%/apps-pkg/activity/appinfo/app.php
4048
%%WWWDIR%%/apps/activity/appinfo/info.xml
4048
%%WWWDIR%%/apps-pkg/activity/appinfo/info.xml
4049
%%WWWDIR%%/apps/activity/appinfo/routes.php
4049
%%WWWDIR%%/apps-pkg/activity/appinfo/routes.php
4050
%%WWWDIR%%/apps/activity/appinfo/signature.json
4050
%%WWWDIR%%/apps-pkg/activity/appinfo/signature.json
4051
%%WWWDIR%%/apps/activity/appinfo/update.php
4051
%%WWWDIR%%/apps-pkg/activity/appinfo/update.php
4052
%%WWWDIR%%/apps/activity/css/settings.css
4052
%%WWWDIR%%/apps-pkg/activity/css/settings.css
4053
%%WWWDIR%%/apps/activity/css/style.css
4053
%%WWWDIR%%/apps-pkg/activity/css/style.css
4054
%%WWWDIR%%/apps/activity/docs/create.md
4054
%%WWWDIR%%/apps-pkg/activity/docs/create.md
4055
%%WWWDIR%%/apps/activity/docs/endpoint-v2.md
4055
%%WWWDIR%%/apps-pkg/activity/docs/endpoint-v2.md
4056
%%WWWDIR%%/apps/activity/docs/filter.md
4056
%%WWWDIR%%/apps-pkg/activity/docs/filter.md
4057
%%WWWDIR%%/apps/activity/docs/provider.md
4057
%%WWWDIR%%/apps-pkg/activity/docs/provider.md
4058
%%WWWDIR%%/apps/activity/docs/setting.md
4058
%%WWWDIR%%/apps-pkg/activity/docs/setting.md
4059
%%WWWDIR%%/apps/activity/img/activity-dark.svg
4059
%%WWWDIR%%/apps-pkg/activity/img/activity-dark.svg
4060
%%WWWDIR%%/apps/activity/img/activity.svg
4060
%%WWWDIR%%/apps-pkg/activity/img/activity.svg
4061
%%WWWDIR%%/apps/activity/img/add-color.svg
4061
%%WWWDIR%%/apps-pkg/activity/img/add-color.svg
4062
%%WWWDIR%%/apps/activity/img/change.svg
4062
%%WWWDIR%%/apps-pkg/activity/img/change.svg
4063
%%WWWDIR%%/apps/activity/img/delete-color.svg
4063
%%WWWDIR%%/apps-pkg/activity/img/delete-color.svg
4064
%%WWWDIR%%/apps/activity/js/activity-sidebar.json
4064
%%WWWDIR%%/apps-pkg/activity/js/activity-sidebar.json
4065
%%WWWDIR%%/apps/activity/js/activitycollection.js
4065
%%WWWDIR%%/apps-pkg/activity/js/activitycollection.js
4066
%%WWWDIR%%/apps/activity/js/activitymodel.js
4066
%%WWWDIR%%/apps-pkg/activity/js/activitymodel.js
4067
%%WWWDIR%%/apps/activity/js/activitytabview.js
4067
%%WWWDIR%%/apps-pkg/activity/js/activitytabview.js
4068
%%WWWDIR%%/apps/activity/js/admin.js
4068
%%WWWDIR%%/apps-pkg/activity/js/admin.js
4069
%%WWWDIR%%/apps/activity/js/feedSettings.js
4069
%%WWWDIR%%/apps-pkg/activity/js/feedSettings.js
4070
%%WWWDIR%%/apps/activity/js/filesplugin.js
4070
%%WWWDIR%%/apps-pkg/activity/js/filesplugin.js
4071
%%WWWDIR%%/apps/activity/js/richObjectStringParser.js
4071
%%WWWDIR%%/apps-pkg/activity/js/richObjectStringParser.js
4072
%%WWWDIR%%/apps/activity/js/script.js
4072
%%WWWDIR%%/apps-pkg/activity/js/script.js
4073
%%WWWDIR%%/apps/activity/js/settings.js
4073
%%WWWDIR%%/apps-pkg/activity/js/settings.js
4074
%%WWWDIR%%/apps/activity/l10n/.gitkeep
4074
%%WWWDIR%%/apps-pkg/activity/l10n/.gitkeep
4075
%%WWWDIR%%/apps/activity/l10n/.tx/config
4075
%%WWWDIR%%/apps-pkg/activity/l10n/.tx/config
4076
%%WWWDIR%%/apps/activity/l10n/af.js
4076
%%WWWDIR%%/apps-pkg/activity/l10n/af.js
4077
%%WWWDIR%%/apps/activity/l10n/af.json
4077
%%WWWDIR%%/apps-pkg/activity/l10n/af.json
4078
%%WWWDIR%%/apps/activity/l10n/ar.js
4078
%%WWWDIR%%/apps-pkg/activity/l10n/ar.js
4079
%%WWWDIR%%/apps/activity/l10n/ar.json
4079
%%WWWDIR%%/apps-pkg/activity/l10n/ar.json
4080
%%WWWDIR%%/apps/activity/l10n/ast.js
4080
%%WWWDIR%%/apps-pkg/activity/l10n/ast.js
4081
%%WWWDIR%%/apps/activity/l10n/ast.json
4081
%%WWWDIR%%/apps-pkg/activity/l10n/ast.json
4082
%%WWWDIR%%/apps/activity/l10n/az.js
4082
%%WWWDIR%%/apps-pkg/activity/l10n/az.js
4083
%%WWWDIR%%/apps/activity/l10n/az.json
4083
%%WWWDIR%%/apps-pkg/activity/l10n/az.json
4084
%%WWWDIR%%/apps/activity/l10n/bg.js
4084
%%WWWDIR%%/apps-pkg/activity/l10n/bg.js
4085
%%WWWDIR%%/apps/activity/l10n/bg.json
4085
%%WWWDIR%%/apps-pkg/activity/l10n/bg.json
4086
%%WWWDIR%%/apps/activity/l10n/bn_BD.js
4086
%%WWWDIR%%/apps-pkg/activity/l10n/bn_BD.js
4087
%%WWWDIR%%/apps/activity/l10n/bn_BD.json
4087
%%WWWDIR%%/apps-pkg/activity/l10n/bn_BD.json
4088
%%WWWDIR%%/apps/activity/l10n/br.js
4088
%%WWWDIR%%/apps-pkg/activity/l10n/br.js
4089
%%WWWDIR%%/apps/activity/l10n/br.json
4089
%%WWWDIR%%/apps-pkg/activity/l10n/br.json
4090
%%WWWDIR%%/apps/activity/l10n/ca.js
4090
%%WWWDIR%%/apps-pkg/activity/l10n/ca.js
4091
%%WWWDIR%%/apps/activity/l10n/ca.json
4091
%%WWWDIR%%/apps-pkg/activity/l10n/ca.json
4092
%%WWWDIR%%/apps/activity/l10n/cs.js
4092
%%WWWDIR%%/apps-pkg/activity/l10n/cs.js
4093
%%WWWDIR%%/apps/activity/l10n/cs.json
4093
%%WWWDIR%%/apps-pkg/activity/l10n/cs.json
4094
%%WWWDIR%%/apps/activity/l10n/da.js
4094
%%WWWDIR%%/apps-pkg/activity/l10n/da.js
4095
%%WWWDIR%%/apps/activity/l10n/da.json
4095
%%WWWDIR%%/apps-pkg/activity/l10n/da.json
4096
%%WWWDIR%%/apps/activity/l10n/de.js
4096
%%WWWDIR%%/apps-pkg/activity/l10n/de.js
4097
%%WWWDIR%%/apps/activity/l10n/de.json
4097
%%WWWDIR%%/apps-pkg/activity/l10n/de.json
4098
%%WWWDIR%%/apps/activity/l10n/de_DE.js
4098
%%WWWDIR%%/apps-pkg/activity/l10n/de_DE.js
4099
%%WWWDIR%%/apps/activity/l10n/de_DE.json
4099
%%WWWDIR%%/apps-pkg/activity/l10n/de_DE.json
4100
%%WWWDIR%%/apps/activity/l10n/el.js
4100
%%WWWDIR%%/apps-pkg/activity/l10n/el.js
4101
%%WWWDIR%%/apps/activity/l10n/el.json
4101
%%WWWDIR%%/apps-pkg/activity/l10n/el.json
4102
%%WWWDIR%%/apps/activity/l10n/en_GB.js
4102
%%WWWDIR%%/apps-pkg/activity/l10n/en_GB.js
4103
%%WWWDIR%%/apps/activity/l10n/en_GB.json
4103
%%WWWDIR%%/apps-pkg/activity/l10n/en_GB.json
4104
%%WWWDIR%%/apps/activity/l10n/eo.js
4104
%%WWWDIR%%/apps-pkg/activity/l10n/eo.js
4105
%%WWWDIR%%/apps/activity/l10n/eo.json
4105
%%WWWDIR%%/apps-pkg/activity/l10n/eo.json
4106
%%WWWDIR%%/apps/activity/l10n/es.js
4106
%%WWWDIR%%/apps-pkg/activity/l10n/es.js
4107
%%WWWDIR%%/apps/activity/l10n/es.json
4107
%%WWWDIR%%/apps-pkg/activity/l10n/es.json
4108
%%WWWDIR%%/apps/activity/l10n/es_419.js
4108
%%WWWDIR%%/apps-pkg/activity/l10n/es_419.js
4109
%%WWWDIR%%/apps/activity/l10n/es_419.json
4109
%%WWWDIR%%/apps-pkg/activity/l10n/es_419.json
4110
%%WWWDIR%%/apps/activity/l10n/es_AR.js
4110
%%WWWDIR%%/apps-pkg/activity/l10n/es_AR.js
4111
%%WWWDIR%%/apps/activity/l10n/es_AR.json
4111
%%WWWDIR%%/apps-pkg/activity/l10n/es_AR.json
4112
%%WWWDIR%%/apps/activity/l10n/es_CL.js
4112
%%WWWDIR%%/apps-pkg/activity/l10n/es_CL.js
4113
%%WWWDIR%%/apps/activity/l10n/es_CL.json
4113
%%WWWDIR%%/apps-pkg/activity/l10n/es_CL.json
4114
%%WWWDIR%%/apps/activity/l10n/es_CO.js
4114
%%WWWDIR%%/apps-pkg/activity/l10n/es_CO.js
4115
%%WWWDIR%%/apps/activity/l10n/es_CO.json
4115
%%WWWDIR%%/apps-pkg/activity/l10n/es_CO.json
4116
%%WWWDIR%%/apps/activity/l10n/es_CR.js
4116
%%WWWDIR%%/apps-pkg/activity/l10n/es_CR.js
4117
%%WWWDIR%%/apps/activity/l10n/es_CR.json
4117
%%WWWDIR%%/apps-pkg/activity/l10n/es_CR.json
4118
%%WWWDIR%%/apps/activity/l10n/es_DO.js
4118
%%WWWDIR%%/apps-pkg/activity/l10n/es_DO.js
4119
%%WWWDIR%%/apps/activity/l10n/es_DO.json
4119
%%WWWDIR%%/apps-pkg/activity/l10n/es_DO.json
4120
%%WWWDIR%%/apps/activity/l10n/es_EC.js
4120
%%WWWDIR%%/apps-pkg/activity/l10n/es_EC.js
4121
%%WWWDIR%%/apps/activity/l10n/es_EC.json
4121
%%WWWDIR%%/apps-pkg/activity/l10n/es_EC.json
4122
%%WWWDIR%%/apps/activity/l10n/es_GT.js
4122
%%WWWDIR%%/apps-pkg/activity/l10n/es_GT.js
4123
%%WWWDIR%%/apps/activity/l10n/es_GT.json
4123
%%WWWDIR%%/apps-pkg/activity/l10n/es_GT.json
4124
%%WWWDIR%%/apps/activity/l10n/es_HN.js
4124
%%WWWDIR%%/apps-pkg/activity/l10n/es_HN.js
4125
%%WWWDIR%%/apps/activity/l10n/es_HN.json
4125
%%WWWDIR%%/apps-pkg/activity/l10n/es_HN.json
4126
%%WWWDIR%%/apps/activity/l10n/es_MX.js
4126
%%WWWDIR%%/apps-pkg/activity/l10n/es_MX.js
4127
%%WWWDIR%%/apps/activity/l10n/es_MX.json
4127
%%WWWDIR%%/apps-pkg/activity/l10n/es_MX.json
4128
%%WWWDIR%%/apps/activity/l10n/es_NI.js
4128
%%WWWDIR%%/apps-pkg/activity/l10n/es_NI.js
4129
%%WWWDIR%%/apps/activity/l10n/es_NI.json
4129
%%WWWDIR%%/apps-pkg/activity/l10n/es_NI.json
4130
%%WWWDIR%%/apps/activity/l10n/es_PA.js
4130
%%WWWDIR%%/apps-pkg/activity/l10n/es_PA.js
4131
%%WWWDIR%%/apps/activity/l10n/es_PA.json
4131
%%WWWDIR%%/apps-pkg/activity/l10n/es_PA.json
4132
%%WWWDIR%%/apps/activity/l10n/es_PE.js
4132
%%WWWDIR%%/apps-pkg/activity/l10n/es_PE.js
4133
%%WWWDIR%%/apps/activity/l10n/es_PE.json
4133
%%WWWDIR%%/apps-pkg/activity/l10n/es_PE.json
4134
%%WWWDIR%%/apps/activity/l10n/es_PR.js
4134
%%WWWDIR%%/apps-pkg/activity/l10n/es_PR.js
4135
%%WWWDIR%%/apps/activity/l10n/es_PR.json
4135
%%WWWDIR%%/apps-pkg/activity/l10n/es_PR.json
4136
%%WWWDIR%%/apps/activity/l10n/es_PY.js
4136
%%WWWDIR%%/apps-pkg/activity/l10n/es_PY.js
4137
%%WWWDIR%%/apps/activity/l10n/es_PY.json
4137
%%WWWDIR%%/apps-pkg/activity/l10n/es_PY.json
4138
%%WWWDIR%%/apps/activity/l10n/es_SV.js
4138
%%WWWDIR%%/apps-pkg/activity/l10n/es_SV.js
4139
%%WWWDIR%%/apps/activity/l10n/es_SV.json
4139
%%WWWDIR%%/apps-pkg/activity/l10n/es_SV.json
4140
%%WWWDIR%%/apps/activity/l10n/es_UY.js
4140
%%WWWDIR%%/apps-pkg/activity/l10n/es_UY.js
4141
%%WWWDIR%%/apps/activity/l10n/es_UY.json
4141
%%WWWDIR%%/apps-pkg/activity/l10n/es_UY.json
4142
%%WWWDIR%%/apps/activity/l10n/et_EE.js
4142
%%WWWDIR%%/apps-pkg/activity/l10n/et_EE.js
4143
%%WWWDIR%%/apps/activity/l10n/et_EE.json
4143
%%WWWDIR%%/apps-pkg/activity/l10n/et_EE.json
4144
%%WWWDIR%%/apps/activity/l10n/eu.js
4144
%%WWWDIR%%/apps-pkg/activity/l10n/eu.js
4145
%%WWWDIR%%/apps/activity/l10n/eu.json
4145
%%WWWDIR%%/apps-pkg/activity/l10n/eu.json
4146
%%WWWDIR%%/apps/activity/l10n/fa.js
4146
%%WWWDIR%%/apps-pkg/activity/l10n/fa.js
4147
%%WWWDIR%%/apps/activity/l10n/fa.json
4147
%%WWWDIR%%/apps-pkg/activity/l10n/fa.json
4148
%%WWWDIR%%/apps/activity/l10n/fi.js
4148
%%WWWDIR%%/apps-pkg/activity/l10n/fi.js
4149
%%WWWDIR%%/apps/activity/l10n/fi.json
4149
%%WWWDIR%%/apps-pkg/activity/l10n/fi.json
4150
%%WWWDIR%%/apps/activity/l10n/fr.js
4150
%%WWWDIR%%/apps-pkg/activity/l10n/fr.js
4151
%%WWWDIR%%/apps/activity/l10n/fr.json
4151
%%WWWDIR%%/apps-pkg/activity/l10n/fr.json
4152
%%WWWDIR%%/apps/activity/l10n/gl.js
4152
%%WWWDIR%%/apps-pkg/activity/l10n/gl.js
4153
%%WWWDIR%%/apps/activity/l10n/gl.json
4153
%%WWWDIR%%/apps-pkg/activity/l10n/gl.json
4154
%%WWWDIR%%/apps/activity/l10n/he.js
4154
%%WWWDIR%%/apps-pkg/activity/l10n/he.js
4155
%%WWWDIR%%/apps/activity/l10n/he.json
4155
%%WWWDIR%%/apps-pkg/activity/l10n/he.json
4156
%%WWWDIR%%/apps/activity/l10n/hr.js
4156
%%WWWDIR%%/apps-pkg/activity/l10n/hr.js
4157
%%WWWDIR%%/apps/activity/l10n/hr.json
4157
%%WWWDIR%%/apps-pkg/activity/l10n/hr.json
4158
%%WWWDIR%%/apps/activity/l10n/hu.js
4158
%%WWWDIR%%/apps-pkg/activity/l10n/hu.js
4159
%%WWWDIR%%/apps/activity/l10n/hu.json
4159
%%WWWDIR%%/apps-pkg/activity/l10n/hu.json
4160
%%WWWDIR%%/apps/activity/l10n/ia.js
4160
%%WWWDIR%%/apps-pkg/activity/l10n/ia.js
4161
%%WWWDIR%%/apps/activity/l10n/ia.json
4161
%%WWWDIR%%/apps-pkg/activity/l10n/ia.json
4162
%%WWWDIR%%/apps/activity/l10n/id.js
4162
%%WWWDIR%%/apps-pkg/activity/l10n/id.js
4163
%%WWWDIR%%/apps/activity/l10n/id.json
4163
%%WWWDIR%%/apps-pkg/activity/l10n/id.json
4164
%%WWWDIR%%/apps/activity/l10n/is.js
4164
%%WWWDIR%%/apps-pkg/activity/l10n/is.js
4165
%%WWWDIR%%/apps/activity/l10n/is.json
4165
%%WWWDIR%%/apps-pkg/activity/l10n/is.json
4166
%%WWWDIR%%/apps/activity/l10n/it.js
4166
%%WWWDIR%%/apps-pkg/activity/l10n/it.js
4167
%%WWWDIR%%/apps/activity/l10n/it.json
4167
%%WWWDIR%%/apps-pkg/activity/l10n/it.json
4168
%%WWWDIR%%/apps/activity/l10n/ja.js
4168
%%WWWDIR%%/apps-pkg/activity/l10n/ja.js
4169
%%WWWDIR%%/apps/activity/l10n/ja.json
4169
%%WWWDIR%%/apps-pkg/activity/l10n/ja.json
4170
%%WWWDIR%%/apps/activity/l10n/ka_GE.js
4170
%%WWWDIR%%/apps-pkg/activity/l10n/ka_GE.js
4171
%%WWWDIR%%/apps/activity/l10n/ka_GE.json
4171
%%WWWDIR%%/apps-pkg/activity/l10n/ka_GE.json
4172
%%WWWDIR%%/apps/activity/l10n/kab.js
4172
%%WWWDIR%%/apps-pkg/activity/l10n/kab.js
4173
%%WWWDIR%%/apps/activity/l10n/kab.json
4173
%%WWWDIR%%/apps-pkg/activity/l10n/kab.json
4174
%%WWWDIR%%/apps/activity/l10n/km.js
4174
%%WWWDIR%%/apps-pkg/activity/l10n/km.js
4175
%%WWWDIR%%/apps/activity/l10n/km.json
4175
%%WWWDIR%%/apps-pkg/activity/l10n/km.json
4176
%%WWWDIR%%/apps/activity/l10n/ko.js
4176
%%WWWDIR%%/apps-pkg/activity/l10n/ko.js
4177
%%WWWDIR%%/apps/activity/l10n/ko.json
4177
%%WWWDIR%%/apps-pkg/activity/l10n/ko.json
4178
%%WWWDIR%%/apps/activity/l10n/lb.js
4178
%%WWWDIR%%/apps-pkg/activity/l10n/lb.js
4179
%%WWWDIR%%/apps/activity/l10n/lb.json
4179
%%WWWDIR%%/apps-pkg/activity/l10n/lb.json
4180
%%WWWDIR%%/apps/activity/l10n/lt_LT.js
4180
%%WWWDIR%%/apps-pkg/activity/l10n/lt_LT.js
4181
%%WWWDIR%%/apps/activity/l10n/lt_LT.json
4181
%%WWWDIR%%/apps-pkg/activity/l10n/lt_LT.json
4182
%%WWWDIR%%/apps/activity/l10n/lv.js
4182
%%WWWDIR%%/apps-pkg/activity/l10n/lv.js
4183
%%WWWDIR%%/apps/activity/l10n/lv.json
4183
%%WWWDIR%%/apps-pkg/activity/l10n/lv.json
4184
%%WWWDIR%%/apps/activity/l10n/mk.js
4184
%%WWWDIR%%/apps-pkg/activity/l10n/mk.js
4185
%%WWWDIR%%/apps/activity/l10n/mk.json
4185
%%WWWDIR%%/apps-pkg/activity/l10n/mk.json
4186
%%WWWDIR%%/apps/activity/l10n/mn.js
4186
%%WWWDIR%%/apps-pkg/activity/l10n/mn.js
4187
%%WWWDIR%%/apps/activity/l10n/mn.json
4187
%%WWWDIR%%/apps-pkg/activity/l10n/mn.json
4188
%%WWWDIR%%/apps/activity/l10n/nb.js
4188
%%WWWDIR%%/apps-pkg/activity/l10n/nb.js
4189
%%WWWDIR%%/apps/activity/l10n/nb.json
4189
%%WWWDIR%%/apps-pkg/activity/l10n/nb.json
4190
%%WWWDIR%%/apps/activity/l10n/ne.js
4190
%%WWWDIR%%/apps-pkg/activity/l10n/ne.js
4191
%%WWWDIR%%/apps/activity/l10n/ne.json
4191
%%WWWDIR%%/apps-pkg/activity/l10n/ne.json
4192
%%WWWDIR%%/apps/activity/l10n/nl.js
4192
%%WWWDIR%%/apps-pkg/activity/l10n/nl.js
4193
%%WWWDIR%%/apps/activity/l10n/nl.json
4193
%%WWWDIR%%/apps-pkg/activity/l10n/nl.json
4194
%%WWWDIR%%/apps/activity/l10n/nn_NO.js
4194
%%WWWDIR%%/apps-pkg/activity/l10n/nn_NO.js
4195
%%WWWDIR%%/apps/activity/l10n/nn_NO.json
4195
%%WWWDIR%%/apps-pkg/activity/l10n/nn_NO.json
4196
%%WWWDIR%%/apps/activity/l10n/no-php
4196
%%WWWDIR%%/apps-pkg/activity/l10n/no-php
4197
%%WWWDIR%%/apps/activity/l10n/pl.js
4197
%%WWWDIR%%/apps-pkg/activity/l10n/pl.js
4198
%%WWWDIR%%/apps/activity/l10n/pl.json
4198
%%WWWDIR%%/apps-pkg/activity/l10n/pl.json
4199
%%WWWDIR%%/apps/activity/l10n/pt_BR.js
4199
%%WWWDIR%%/apps-pkg/activity/l10n/pt_BR.js
4200
%%WWWDIR%%/apps/activity/l10n/pt_BR.json
4200
%%WWWDIR%%/apps-pkg/activity/l10n/pt_BR.json
4201
%%WWWDIR%%/apps/activity/l10n/pt_PT.js
4201
%%WWWDIR%%/apps-pkg/activity/l10n/pt_PT.js
4202
%%WWWDIR%%/apps/activity/l10n/pt_PT.json
4202
%%WWWDIR%%/apps-pkg/activity/l10n/pt_PT.json
4203
%%WWWDIR%%/apps/activity/l10n/ro.js
4203
%%WWWDIR%%/apps-pkg/activity/l10n/ro.js
4204
%%WWWDIR%%/apps/activity/l10n/ro.json
4204
%%WWWDIR%%/apps-pkg/activity/l10n/ro.json
4205
%%WWWDIR%%/apps/activity/l10n/ru.js
4205
%%WWWDIR%%/apps-pkg/activity/l10n/ru.js
4206
%%WWWDIR%%/apps/activity/l10n/ru.json
4206
%%WWWDIR%%/apps-pkg/activity/l10n/ru.json
4207
%%WWWDIR%%/apps/activity/l10n/si_LK.js
4207
%%WWWDIR%%/apps-pkg/activity/l10n/si_LK.js
4208
%%WWWDIR%%/apps/activity/l10n/si_LK.json
4208
%%WWWDIR%%/apps-pkg/activity/l10n/si_LK.json
4209
%%WWWDIR%%/apps/activity/l10n/sk.js
4209
%%WWWDIR%%/apps-pkg/activity/l10n/sk.js
4210
%%WWWDIR%%/apps/activity/l10n/sk.json
4210
%%WWWDIR%%/apps-pkg/activity/l10n/sk.json
4211
%%WWWDIR%%/apps/activity/l10n/sl.js
4211
%%WWWDIR%%/apps-pkg/activity/l10n/sl.js
4212
%%WWWDIR%%/apps/activity/l10n/sl.json
4212
%%WWWDIR%%/apps-pkg/activity/l10n/sl.json
4213
%%WWWDIR%%/apps/activity/l10n/sq.js
4213
%%WWWDIR%%/apps-pkg/activity/l10n/sq.js
4214
%%WWWDIR%%/apps/activity/l10n/sq.json
4214
%%WWWDIR%%/apps-pkg/activity/l10n/sq.json
4215
%%WWWDIR%%/apps/activity/l10n/sr.js
4215
%%WWWDIR%%/apps-pkg/activity/l10n/sr.js
4216
%%WWWDIR%%/apps/activity/l10n/sr.json
4216
%%WWWDIR%%/apps-pkg/activity/l10n/sr.json
4217
%%WWWDIR%%/apps/activity/l10n/sv.js
4217
%%WWWDIR%%/apps-pkg/activity/l10n/sv.js
4218
%%WWWDIR%%/apps/activity/l10n/sv.json
4218
%%WWWDIR%%/apps-pkg/activity/l10n/sv.json
4219
%%WWWDIR%%/apps/activity/l10n/th.js
4219
%%WWWDIR%%/apps-pkg/activity/l10n/th.js
4220
%%WWWDIR%%/apps/activity/l10n/th.json
4220
%%WWWDIR%%/apps-pkg/activity/l10n/th.json
4221
%%WWWDIR%%/apps/activity/l10n/tr.js
4221
%%WWWDIR%%/apps-pkg/activity/l10n/tr.js
4222
%%WWWDIR%%/apps/activity/l10n/tr.json
4222
%%WWWDIR%%/apps-pkg/activity/l10n/tr.json
4223
%%WWWDIR%%/apps/activity/l10n/uk.js
4223
%%WWWDIR%%/apps-pkg/activity/l10n/uk.js
4224
%%WWWDIR%%/apps/activity/l10n/uk.json
4224
%%WWWDIR%%/apps-pkg/activity/l10n/uk.json
4225
%%WWWDIR%%/apps/activity/l10n/vi.js
4225
%%WWWDIR%%/apps-pkg/activity/l10n/vi.js
4226
%%WWWDIR%%/apps/activity/l10n/vi.json
4226
%%WWWDIR%%/apps-pkg/activity/l10n/vi.json
4227
%%WWWDIR%%/apps/activity/l10n/zh_CN.js
4227
%%WWWDIR%%/apps-pkg/activity/l10n/zh_CN.js
4228
%%WWWDIR%%/apps/activity/l10n/zh_CN.json
4228
%%WWWDIR%%/apps-pkg/activity/l10n/zh_CN.json
4229
%%WWWDIR%%/apps/activity/l10n/zh_HK.js
4229
%%WWWDIR%%/apps-pkg/activity/l10n/zh_HK.js
4230
%%WWWDIR%%/apps/activity/l10n/zh_HK.json
4230
%%WWWDIR%%/apps-pkg/activity/l10n/zh_HK.json
4231
%%WWWDIR%%/apps/activity/l10n/zh_TW.js
4231
%%WWWDIR%%/apps-pkg/activity/l10n/zh_TW.js
4232
%%WWWDIR%%/apps/activity/l10n/zh_TW.json
4232
%%WWWDIR%%/apps-pkg/activity/l10n/zh_TW.json
4233
%%WWWDIR%%/apps/activity/lib/AppInfo/Application.php
4233
%%WWWDIR%%/apps-pkg/activity/lib/AppInfo/Application.php
4234
%%WWWDIR%%/apps/activity/lib/BackgroundJob/EmailNotification.php
4234
%%WWWDIR%%/apps-pkg/activity/lib/BackgroundJob/EmailNotification.php
4235
%%WWWDIR%%/apps/activity/lib/BackgroundJob/ExpireActivities.php
4235
%%WWWDIR%%/apps-pkg/activity/lib/BackgroundJob/ExpireActivities.php
4236
%%WWWDIR%%/apps/activity/lib/BackgroundJob/RemoteActivity.php
4236
%%WWWDIR%%/apps-pkg/activity/lib/BackgroundJob/RemoteActivity.php
4237
%%WWWDIR%%/apps/activity/lib/Capabilities.php
4237
%%WWWDIR%%/apps-pkg/activity/lib/Capabilities.php
4238
%%WWWDIR%%/apps/activity/lib/Command/SendEmails.php
4238
%%WWWDIR%%/apps-pkg/activity/lib/Command/SendEmails.php
4239
%%WWWDIR%%/apps/activity/lib/Consumer.php
4239
%%WWWDIR%%/apps-pkg/activity/lib/Consumer.php
4240
%%WWWDIR%%/apps/activity/lib/Controller/APIv1.php
4240
%%WWWDIR%%/apps-pkg/activity/lib/Controller/APIv1.php
4241
%%WWWDIR%%/apps/activity/lib/Controller/APIv2.php
4241
%%WWWDIR%%/apps-pkg/activity/lib/Controller/APIv2.php
4242
%%WWWDIR%%/apps/activity/lib/Controller/Activities.php
4242
%%WWWDIR%%/apps-pkg/activity/lib/Controller/Activities.php
4243
%%WWWDIR%%/apps/activity/lib/Controller/Feed.php
4243
%%WWWDIR%%/apps-pkg/activity/lib/Controller/Feed.php
4244
%%WWWDIR%%/apps/activity/lib/Controller/RemoteActivity.php
4244
%%WWWDIR%%/apps-pkg/activity/lib/Controller/RemoteActivity.php
4245
%%WWWDIR%%/apps/activity/lib/Controller/Settings.php
4245
%%WWWDIR%%/apps-pkg/activity/lib/Controller/Settings.php
4246
%%WWWDIR%%/apps/activity/lib/CurrentUser.php
4246
%%WWWDIR%%/apps-pkg/activity/lib/CurrentUser.php
4247
%%WWWDIR%%/apps/activity/lib/Data.php
4247
%%WWWDIR%%/apps-pkg/activity/lib/Data.php
4248
%%WWWDIR%%/apps/activity/lib/DataHelper.php
4248
%%WWWDIR%%/apps-pkg/activity/lib/DataHelper.php
4249
%%WWWDIR%%/apps/activity/lib/Exception/InvalidFilterException.php
4249
%%WWWDIR%%/apps-pkg/activity/lib/Exception/InvalidFilterException.php
4250
%%WWWDIR%%/apps/activity/lib/Extension/Files.php
4250
%%WWWDIR%%/apps-pkg/activity/lib/Extension/Files.php
4251
%%WWWDIR%%/apps/activity/lib/Extension/Files_Sharing.php
4251
%%WWWDIR%%/apps-pkg/activity/lib/Extension/Files_Sharing.php
4252
%%WWWDIR%%/apps/activity/lib/Extension/LegacyParser.php
4252
%%WWWDIR%%/apps-pkg/activity/lib/Extension/LegacyParser.php
4253
%%WWWDIR%%/apps/activity/lib/FilesHooks.php
4253
%%WWWDIR%%/apps-pkg/activity/lib/FilesHooks.php
4254
%%WWWDIR%%/apps/activity/lib/FilesHooksStatic.php
4254
%%WWWDIR%%/apps-pkg/activity/lib/FilesHooksStatic.php
4255
%%WWWDIR%%/apps/activity/lib/Filter/AllFilter.php
4255
%%WWWDIR%%/apps-pkg/activity/lib/Filter/AllFilter.php
4256
%%WWWDIR%%/apps/activity/lib/Filter/ByFilter.php
4256
%%WWWDIR%%/apps-pkg/activity/lib/Filter/ByFilter.php
4257
%%WWWDIR%%/apps/activity/lib/Filter/SelfFilter.php
4257
%%WWWDIR%%/apps-pkg/activity/lib/Filter/SelfFilter.php
4258
%%WWWDIR%%/apps/activity/lib/Formatter/BaseFormatter.php
4258
%%WWWDIR%%/apps-pkg/activity/lib/Formatter/BaseFormatter.php
4259
%%WWWDIR%%/apps/activity/lib/Formatter/CloudIDFormatter.php
4259
%%WWWDIR%%/apps-pkg/activity/lib/Formatter/CloudIDFormatter.php
4260
%%WWWDIR%%/apps/activity/lib/Formatter/FileFormatter.php
4260
%%WWWDIR%%/apps-pkg/activity/lib/Formatter/FileFormatter.php
4261
%%WWWDIR%%/apps/activity/lib/Formatter/IFormatter.php
4261
%%WWWDIR%%/apps-pkg/activity/lib/Formatter/IFormatter.php
4262
%%WWWDIR%%/apps/activity/lib/Formatter/UserFormatter.php
4262
%%WWWDIR%%/apps-pkg/activity/lib/Formatter/UserFormatter.php
4263
%%WWWDIR%%/apps/activity/lib/GroupHelper.php
4263
%%WWWDIR%%/apps-pkg/activity/lib/GroupHelper.php
4264
%%WWWDIR%%/apps/activity/lib/GroupHelperDisabled.php
4264
%%WWWDIR%%/apps-pkg/activity/lib/GroupHelperDisabled.php
4265
%%WWWDIR%%/apps/activity/lib/Hooks.php
4265
%%WWWDIR%%/apps-pkg/activity/lib/Hooks.php
4266
%%WWWDIR%%/apps/activity/lib/MailQueueHandler.php
4266
%%WWWDIR%%/apps-pkg/activity/lib/MailQueueHandler.php
4267
%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170808154933.php
4267
%%WWWDIR%%/apps-pkg/activity/lib/Migration/Version2006Date20170808154933.php
4268
%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170808155040.php
4268
%%WWWDIR%%/apps-pkg/activity/lib/Migration/Version2006Date20170808155040.php
4269
%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170919095939.php
4269
%%WWWDIR%%/apps-pkg/activity/lib/Migration/Version2006Date20170919095939.php
4270
%%WWWDIR%%/apps/activity/lib/Navigation.php
4270
%%WWWDIR%%/apps-pkg/activity/lib/Navigation.php
4271
%%WWWDIR%%/apps/activity/lib/Parameter/Collection.php
4271
%%WWWDIR%%/apps-pkg/activity/lib/Parameter/Collection.php
4272
%%WWWDIR%%/apps/activity/lib/Parameter/Factory.php
4272
%%WWWDIR%%/apps-pkg/activity/lib/Parameter/Factory.php
4273
%%WWWDIR%%/apps/activity/lib/Parameter/IParameter.php
4273
%%WWWDIR%%/apps-pkg/activity/lib/Parameter/IParameter.php
4274
%%WWWDIR%%/apps/activity/lib/Parameter/Parameter.php
4274
%%WWWDIR%%/apps-pkg/activity/lib/Parameter/Parameter.php
4275
%%WWWDIR%%/apps/activity/lib/PlainTextParser.php
4275
%%WWWDIR%%/apps-pkg/activity/lib/PlainTextParser.php
4276
%%WWWDIR%%/apps/activity/lib/Settings/Admin.php
4276
%%WWWDIR%%/apps-pkg/activity/lib/Settings/Admin.php
4277
%%WWWDIR%%/apps/activity/lib/Settings/Section.php
4277
%%WWWDIR%%/apps-pkg/activity/lib/Settings/Section.php
4278
%%WWWDIR%%/apps/activity/lib/UserSettings.php
4278
%%WWWDIR%%/apps-pkg/activity/lib/UserSettings.php
4279
%%WWWDIR%%/apps/activity/lib/ViewInfoCache.php
4279
%%WWWDIR%%/apps-pkg/activity/lib/ViewInfoCache.php
4280
%%WWWDIR%%/apps/activity/personal.php
4280
%%WWWDIR%%/apps-pkg/activity/personal.php
4281
%%WWWDIR%%/apps/activity/templates/rss.php
4281
%%WWWDIR%%/apps-pkg/activity/templates/rss.php
4282
%%WWWDIR%%/apps/activity/templates/settings/admin.php
4282
%%WWWDIR%%/apps-pkg/activity/templates/settings/admin.php
4283
%%WWWDIR%%/apps/activity/templates/settings/form.php
4283
%%WWWDIR%%/apps-pkg/activity/templates/settings/form.php
4284
%%WWWDIR%%/apps/activity/templates/settings/personal.php
4284
%%WWWDIR%%/apps-pkg/activity/templates/settings/personal.php
4285
%%WWWDIR%%/apps/activity/templates/stream.app.navigation.php
4285
%%WWWDIR%%/apps-pkg/activity/templates/stream.app.navigation.php
4286
%%WWWDIR%%/apps/activity/templates/stream.body.php
4286
%%WWWDIR%%/apps-pkg/activity/templates/stream.body.php
4287
%%WWWDIR%%/apps/admin_audit/appinfo/app.php
4287
%%WWWDIR%%/apps-pkg/admin_audit/appinfo/app.php
4288
%%WWWDIR%%/apps/admin_audit/appinfo/info.xml
4288
%%WWWDIR%%/apps-pkg/admin_audit/appinfo/info.xml
4289
%%WWWDIR%%/apps/admin_audit/appinfo/signature.json
4289
%%WWWDIR%%/apps-pkg/admin_audit/appinfo/signature.json
4290
%%WWWDIR%%/apps/admin_audit/composer/autoload.php
4290
%%WWWDIR%%/apps-pkg/admin_audit/composer/autoload.php
4291
%%WWWDIR%%/apps/admin_audit/composer/composer.json
4291
%%WWWDIR%%/apps-pkg/admin_audit/composer/composer.json
4292
%%WWWDIR%%/apps/admin_audit/composer/composer/ClassLoader.php
4292
%%WWWDIR%%/apps-pkg/admin_audit/composer/composer/ClassLoader.php
4293
%%WWWDIR%%/apps/admin_audit/composer/composer/LICENSE
4293
%%WWWDIR%%/apps-pkg/admin_audit/composer/composer/LICENSE
4294
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_classmap.php
4294
%%WWWDIR%%/apps-pkg/admin_audit/composer/composer/autoload_classmap.php
4295
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_namespaces.php
4295
%%WWWDIR%%/apps-pkg/admin_audit/composer/composer/autoload_namespaces.php
4296
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_psr4.php
4296
%%WWWDIR%%/apps-pkg/admin_audit/composer/composer/autoload_psr4.php
4297
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_real.php
4297
%%WWWDIR%%/apps-pkg/admin_audit/composer/composer/autoload_real.php
4298
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_static.php
4298
%%WWWDIR%%/apps-pkg/admin_audit/composer/composer/autoload_static.php
4299
%%WWWDIR%%/apps/admin_audit/lib/Actions/Action.php
4299
%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/Action.php
4300
%%WWWDIR%%/apps/admin_audit/lib/Actions/AppManagement.php
4300
%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/AppManagement.php
4301
%%WWWDIR%%/apps/admin_audit/lib/Actions/Auth.php
4301
%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/Auth.php
4302
%%WWWDIR%%/apps/admin_audit/lib/Actions/Console.php
4302
%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/Console.php
4303
%%WWWDIR%%/apps/admin_audit/lib/Actions/Files.php
4303
%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/Files.php
4304
%%WWWDIR%%/apps/admin_audit/lib/Actions/GroupManagement.php
4304
%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/GroupManagement.php
4305
%%WWWDIR%%/apps/admin_audit/lib/Actions/Sharing.php
4305
%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/Sharing.php
4306
%%WWWDIR%%/apps/admin_audit/lib/Actions/Trashbin.php
4306
%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/Trashbin.php
4307
%%WWWDIR%%/apps/admin_audit/lib/Actions/UserManagement.php
4307
%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/UserManagement.php
4308
%%WWWDIR%%/apps/admin_audit/lib/Actions/Versions.php
4308
%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/Versions.php
4309
%%WWWDIR%%/apps/admin_audit/lib/AppInfo/Application.php
4309
%%WWWDIR%%/apps-pkg/admin_audit/lib/AppInfo/Application.php
4310
%%WWWDIR%%/apps/comments/.bowerrc
4310
%%WWWDIR%%/apps-pkg/comments/.bowerrc
4311
%%WWWDIR%%/apps/comments/appinfo/app.php
4311
%%WWWDIR%%/apps-pkg/comments/appinfo/app.php
4312
%%WWWDIR%%/apps/comments/appinfo/info.xml
4312
%%WWWDIR%%/apps-pkg/comments/appinfo/info.xml
4313
%%WWWDIR%%/apps/comments/appinfo/routes.php
4313
%%WWWDIR%%/apps-pkg/comments/appinfo/routes.php
4314
%%WWWDIR%%/apps/comments/appinfo/signature.json
4314
%%WWWDIR%%/apps-pkg/comments/appinfo/signature.json
4315
%%WWWDIR%%/apps/comments/composer/autoload.php
4315
%%WWWDIR%%/apps-pkg/comments/composer/autoload.php
4316
%%WWWDIR%%/apps/comments/composer/composer.json
4316
%%WWWDIR%%/apps-pkg/comments/composer/composer.json
4317
%%WWWDIR%%/apps/comments/composer/composer/ClassLoader.php
4317
%%WWWDIR%%/apps-pkg/comments/composer/composer/ClassLoader.php
4318
%%WWWDIR%%/apps/comments/composer/composer/LICENSE
4318
%%WWWDIR%%/apps-pkg/comments/composer/composer/LICENSE
4319
%%WWWDIR%%/apps/comments/composer/composer/autoload_classmap.php
4319
%%WWWDIR%%/apps-pkg/comments/composer/composer/autoload_classmap.php
4320
%%WWWDIR%%/apps/comments/composer/composer/autoload_namespaces.php
4320
%%WWWDIR%%/apps-pkg/comments/composer/composer/autoload_namespaces.php
4321
%%WWWDIR%%/apps/comments/composer/composer/autoload_psr4.php
4321
%%WWWDIR%%/apps-pkg/comments/composer/composer/autoload_psr4.php
4322
%%WWWDIR%%/apps/comments/composer/composer/autoload_real.php
4322
%%WWWDIR%%/apps-pkg/comments/composer/composer/autoload_real.php
4323
%%WWWDIR%%/apps/comments/composer/composer/autoload_static.php
4323
%%WWWDIR%%/apps-pkg/comments/composer/composer/autoload_static.php
4324
%%WWWDIR%%/apps/comments/css/autocomplete.scss
4324
%%WWWDIR%%/apps-pkg/comments/css/autocomplete.scss
4325
%%WWWDIR%%/apps/comments/css/comments.css
4325
%%WWWDIR%%/apps-pkg/comments/css/comments.css
4326
%%WWWDIR%%/apps/comments/img/comments-dark.svg
4326
%%WWWDIR%%/apps-pkg/comments/img/comments-dark.svg
4327
%%WWWDIR%%/apps/comments/img/comments.svg
4327
%%WWWDIR%%/apps-pkg/comments/img/comments.svg
4328
%%WWWDIR%%/apps/comments/js/activitytabviewplugin.js
4328
%%WWWDIR%%/apps-pkg/comments/js/activitytabviewplugin.js
4329
%%WWWDIR%%/apps/comments/js/app.js
4329
%%WWWDIR%%/apps-pkg/comments/js/app.js
4330
%%WWWDIR%%/apps/comments/js/commentcollection.js
4330
%%WWWDIR%%/apps-pkg/comments/js/commentcollection.js
4331
%%WWWDIR%%/apps/comments/js/commentmodel.js
4331
%%WWWDIR%%/apps-pkg/comments/js/commentmodel.js
4332
%%WWWDIR%%/apps/comments/js/commentstabview.js
4332
%%WWWDIR%%/apps-pkg/comments/js/commentstabview.js
4333
%%WWWDIR%%/apps/comments/js/commentsummarymodel.js
4333
%%WWWDIR%%/apps-pkg/comments/js/commentsummarymodel.js
4334
%%WWWDIR%%/apps/comments/js/filesplugin.js
4334
%%WWWDIR%%/apps-pkg/comments/js/filesplugin.js
4335
%%WWWDIR%%/apps/comments/js/merged.json
4335
%%WWWDIR%%/apps-pkg/comments/js/merged.json
4336
%%WWWDIR%%/apps/comments/js/vendor/At.js/dist/js/jquery.atwho.min.js
4336
%%WWWDIR%%/apps-pkg/comments/js/vendor/At.js/dist/js/jquery.atwho.min.js
4337
%%WWWDIR%%/apps/comments/js/vendor/Caret.js/dist/jquery.caret.min.js
4337
%%WWWDIR%%/apps-pkg/comments/js/vendor/Caret.js/dist/jquery.caret.min.js
4338
%%WWWDIR%%/apps/comments/l10n/.gitkeep
4338
%%WWWDIR%%/apps-pkg/comments/l10n/.gitkeep
4339
%%WWWDIR%%/apps/comments/l10n/af.js
4339
%%WWWDIR%%/apps-pkg/comments/l10n/af.js
4340
%%WWWDIR%%/apps/comments/l10n/af.json
4340
%%WWWDIR%%/apps-pkg/comments/l10n/af.json
4341
%%WWWDIR%%/apps/comments/l10n/af_ZA.js
4341
%%WWWDIR%%/apps-pkg/comments/l10n/af_ZA.js
4342
%%WWWDIR%%/apps/comments/l10n/af_ZA.json
4342
%%WWWDIR%%/apps-pkg/comments/l10n/af_ZA.json
4343
%%WWWDIR%%/apps/comments/l10n/ar.js
4343
%%WWWDIR%%/apps-pkg/comments/l10n/ar.js
4344
%%WWWDIR%%/apps/comments/l10n/ar.json
4344
%%WWWDIR%%/apps-pkg/comments/l10n/ar.json
4345
%%WWWDIR%%/apps/comments/l10n/ast.js
4345
%%WWWDIR%%/apps-pkg/comments/l10n/ast.js
4346
%%WWWDIR%%/apps/comments/l10n/ast.json
4346
%%WWWDIR%%/apps-pkg/comments/l10n/ast.json
4347
%%WWWDIR%%/apps/comments/l10n/az.js
4347
%%WWWDIR%%/apps-pkg/comments/l10n/az.js
4348
%%WWWDIR%%/apps/comments/l10n/az.json
4348
%%WWWDIR%%/apps-pkg/comments/l10n/az.json
4349
%%WWWDIR%%/apps/comments/l10n/bg.js
4349
%%WWWDIR%%/apps-pkg/comments/l10n/bg.js
4350
%%WWWDIR%%/apps/comments/l10n/bg.json
4350
%%WWWDIR%%/apps-pkg/comments/l10n/bg.json
4351
%%WWWDIR%%/apps/comments/l10n/bg_BG.js
4351
%%WWWDIR%%/apps-pkg/comments/l10n/bg_BG.js
4352
%%WWWDIR%%/apps/comments/l10n/bg_BG.json
4352
%%WWWDIR%%/apps-pkg/comments/l10n/bg_BG.json
4353
%%WWWDIR%%/apps/comments/l10n/bn_BD.js
4353
%%WWWDIR%%/apps-pkg/comments/l10n/bn_BD.js
4354
%%WWWDIR%%/apps/comments/l10n/bn_BD.json
4354
%%WWWDIR%%/apps-pkg/comments/l10n/bn_BD.json
4355
%%WWWDIR%%/apps/comments/l10n/bn_IN.js
4355
%%WWWDIR%%/apps-pkg/comments/l10n/bn_IN.js
4356
%%WWWDIR%%/apps/comments/l10n/bn_IN.json
4356
%%WWWDIR%%/apps-pkg/comments/l10n/bn_IN.json
4357
%%WWWDIR%%/apps/comments/l10n/bs.js
4357
%%WWWDIR%%/apps-pkg/comments/l10n/bs.js
4358
%%WWWDIR%%/apps/comments/l10n/bs.json
4358
%%WWWDIR%%/apps-pkg/comments/l10n/bs.json
4359
%%WWWDIR%%/apps/comments/l10n/ca.js
4359
%%WWWDIR%%/apps-pkg/comments/l10n/ca.js
4360
%%WWWDIR%%/apps/comments/l10n/ca.json
4360
%%WWWDIR%%/apps-pkg/comments/l10n/ca.json
4361
%%WWWDIR%%/apps/comments/l10n/cs.js
4361
%%WWWDIR%%/apps-pkg/comments/l10n/cs.js
4362
%%WWWDIR%%/apps/comments/l10n/cs.json
4362
%%WWWDIR%%/apps-pkg/comments/l10n/cs.json
4363
%%WWWDIR%%/apps/comments/l10n/cs_CZ.js
4363
%%WWWDIR%%/apps-pkg/comments/l10n/cs_CZ.js
4364
%%WWWDIR%%/apps/comments/l10n/cs_CZ.json
4364
%%WWWDIR%%/apps-pkg/comments/l10n/cs_CZ.json
4365
%%WWWDIR%%/apps/comments/l10n/cy_GB.js
4365
%%WWWDIR%%/apps-pkg/comments/l10n/cy_GB.js
4366
%%WWWDIR%%/apps/comments/l10n/cy_GB.json
4366
%%WWWDIR%%/apps-pkg/comments/l10n/cy_GB.json
4367
%%WWWDIR%%/apps/comments/l10n/da.js
4367
%%WWWDIR%%/apps-pkg/comments/l10n/da.js
4368
%%WWWDIR%%/apps/comments/l10n/da.json
4368
%%WWWDIR%%/apps-pkg/comments/l10n/da.json
4369
%%WWWDIR%%/apps/comments/l10n/de.js
4369
%%WWWDIR%%/apps-pkg/comments/l10n/de.js
4370
%%WWWDIR%%/apps/comments/l10n/de.json
4370
%%WWWDIR%%/apps-pkg/comments/l10n/de.json
4371
%%WWWDIR%%/apps/comments/l10n/de_AT.js
4371
%%WWWDIR%%/apps-pkg/comments/l10n/de_AT.js
4372
%%WWWDIR%%/apps/comments/l10n/de_AT.json
4372
%%WWWDIR%%/apps-pkg/comments/l10n/de_AT.json
4373
%%WWWDIR%%/apps/comments/l10n/de_DE.js
4373
%%WWWDIR%%/apps-pkg/comments/l10n/de_DE.js
4374
%%WWWDIR%%/apps/comments/l10n/de_DE.json
4374
%%WWWDIR%%/apps-pkg/comments/l10n/de_DE.json
4375
%%WWWDIR%%/apps/comments/l10n/el.js
4375
%%WWWDIR%%/apps-pkg/comments/l10n/el.js
4376
%%WWWDIR%%/apps/comments/l10n/el.json
4376
%%WWWDIR%%/apps-pkg/comments/l10n/el.json
4377
%%WWWDIR%%/apps/comments/l10n/en_GB.js
4377
%%WWWDIR%%/apps-pkg/comments/l10n/en_GB.js
4378
%%WWWDIR%%/apps/comments/l10n/en_GB.json
4378
%%WWWDIR%%/apps-pkg/comments/l10n/en_GB.json
4379
%%WWWDIR%%/apps/comments/l10n/eo.js
4379
%%WWWDIR%%/apps-pkg/comments/l10n/eo.js
4380
%%WWWDIR%%/apps/comments/l10n/eo.json
4380
%%WWWDIR%%/apps-pkg/comments/l10n/eo.json
4381
%%WWWDIR%%/apps/comments/l10n/es.js
4381
%%WWWDIR%%/apps-pkg/comments/l10n/es.js
4382
%%WWWDIR%%/apps/comments/l10n/es.json
4382
%%WWWDIR%%/apps-pkg/comments/l10n/es.json
4383
%%WWWDIR%%/apps/comments/l10n/es_419.js
4383
%%WWWDIR%%/apps-pkg/comments/l10n/es_419.js
4384
%%WWWDIR%%/apps/comments/l10n/es_419.json
4384
%%WWWDIR%%/apps-pkg/comments/l10n/es_419.json
4385
%%WWWDIR%%/apps/comments/l10n/es_AR.js
4385
%%WWWDIR%%/apps-pkg/comments/l10n/es_AR.js
4386
%%WWWDIR%%/apps/comments/l10n/es_AR.json
4386
%%WWWDIR%%/apps-pkg/comments/l10n/es_AR.json
4387
%%WWWDIR%%/apps/comments/l10n/es_CL.js
4387
%%WWWDIR%%/apps-pkg/comments/l10n/es_CL.js
4388
%%WWWDIR%%/apps/comments/l10n/es_CL.json
4388
%%WWWDIR%%/apps-pkg/comments/l10n/es_CL.json
4389
%%WWWDIR%%/apps/comments/l10n/es_CO.js
4389
%%WWWDIR%%/apps-pkg/comments/l10n/es_CO.js
4390
%%WWWDIR%%/apps/comments/l10n/es_CO.json
4390
%%WWWDIR%%/apps-pkg/comments/l10n/es_CO.json
4391
%%WWWDIR%%/apps/comments/l10n/es_CR.js
4391
%%WWWDIR%%/apps-pkg/comments/l10n/es_CR.js
4392
%%WWWDIR%%/apps/comments/l10n/es_CR.json
4392
%%WWWDIR%%/apps-pkg/comments/l10n/es_CR.json
4393
%%WWWDIR%%/apps/comments/l10n/es_DO.js
4393
%%WWWDIR%%/apps-pkg/comments/l10n/es_DO.js
4394
%%WWWDIR%%/apps/comments/l10n/es_DO.json
4394
%%WWWDIR%%/apps-pkg/comments/l10n/es_DO.json
4395
%%WWWDIR%%/apps/comments/l10n/es_EC.js
4395
%%WWWDIR%%/apps-pkg/comments/l10n/es_EC.js
4396
%%WWWDIR%%/apps/comments/l10n/es_EC.json
4396
%%WWWDIR%%/apps-pkg/comments/l10n/es_EC.json
4397
%%WWWDIR%%/apps/comments/l10n/es_GT.js
4397
%%WWWDIR%%/apps-pkg/comments/l10n/es_GT.js
4398
%%WWWDIR%%/apps/comments/l10n/es_GT.json
4398
%%WWWDIR%%/apps-pkg/comments/l10n/es_GT.json
4399
%%WWWDIR%%/apps/comments/l10n/es_HN.js
4399
%%WWWDIR%%/apps-pkg/comments/l10n/es_HN.js
4400
%%WWWDIR%%/apps/comments/l10n/es_HN.json
4400
%%WWWDIR%%/apps-pkg/comments/l10n/es_HN.json
4401
%%WWWDIR%%/apps/comments/l10n/es_MX.js
4401
%%WWWDIR%%/apps-pkg/comments/l10n/es_MX.js
4402
%%WWWDIR%%/apps/comments/l10n/es_MX.json
4402
%%WWWDIR%%/apps-pkg/comments/l10n/es_MX.json
4403
%%WWWDIR%%/apps/comments/l10n/es_NI.js
4403
%%WWWDIR%%/apps-pkg/comments/l10n/es_NI.js
4404
%%WWWDIR%%/apps/comments/l10n/es_NI.json
4404
%%WWWDIR%%/apps-pkg/comments/l10n/es_NI.json
4405
%%WWWDIR%%/apps/comments/l10n/es_PA.js
4405
%%WWWDIR%%/apps-pkg/comments/l10n/es_PA.js
4406
%%WWWDIR%%/apps/comments/l10n/es_PA.json
4406
%%WWWDIR%%/apps-pkg/comments/l10n/es_PA.json
4407
%%WWWDIR%%/apps/comments/l10n/es_PE.js
4407
%%WWWDIR%%/apps-pkg/comments/l10n/es_PE.js
4408
%%WWWDIR%%/apps/comments/l10n/es_PE.json
4408
%%WWWDIR%%/apps-pkg/comments/l10n/es_PE.json
4409
%%WWWDIR%%/apps/comments/l10n/es_PR.js
4409
%%WWWDIR%%/apps-pkg/comments/l10n/es_PR.js
4410
%%WWWDIR%%/apps/comments/l10n/es_PR.json
4410
%%WWWDIR%%/apps-pkg/comments/l10n/es_PR.json
4411
%%WWWDIR%%/apps/comments/l10n/es_PY.js
4411
%%WWWDIR%%/apps-pkg/comments/l10n/es_PY.js
4412
%%WWWDIR%%/apps/comments/l10n/es_PY.json
4412
%%WWWDIR%%/apps-pkg/comments/l10n/es_PY.json
4413
%%WWWDIR%%/apps/comments/l10n/es_SV.js
4413
%%WWWDIR%%/apps-pkg/comments/l10n/es_SV.js
4414
%%WWWDIR%%/apps/comments/l10n/es_SV.json
4414
%%WWWDIR%%/apps-pkg/comments/l10n/es_SV.json
4415
%%WWWDIR%%/apps/comments/l10n/es_UY.js
4415
%%WWWDIR%%/apps-pkg/comments/l10n/es_UY.js
4416
%%WWWDIR%%/apps/comments/l10n/es_UY.json
4416
%%WWWDIR%%/apps-pkg/comments/l10n/es_UY.json
4417
%%WWWDIR%%/apps/comments/l10n/et_EE.js
4417
%%WWWDIR%%/apps-pkg/comments/l10n/et_EE.js
4418
%%WWWDIR%%/apps/comments/l10n/et_EE.json
4418
%%WWWDIR%%/apps-pkg/comments/l10n/et_EE.json
4419
%%WWWDIR%%/apps/comments/l10n/eu.js
4419
%%WWWDIR%%/apps-pkg/comments/l10n/eu.js
4420
%%WWWDIR%%/apps/comments/l10n/eu.json
4420
%%WWWDIR%%/apps-pkg/comments/l10n/eu.json
4421
%%WWWDIR%%/apps/comments/l10n/fa.js
4421
%%WWWDIR%%/apps-pkg/comments/l10n/fa.js
4422
%%WWWDIR%%/apps/comments/l10n/fa.json
4422
%%WWWDIR%%/apps-pkg/comments/l10n/fa.json
4423
%%WWWDIR%%/apps/comments/l10n/fi.js
4423
%%WWWDIR%%/apps-pkg/comments/l10n/fi.js
4424
%%WWWDIR%%/apps/comments/l10n/fi.json
4424
%%WWWDIR%%/apps-pkg/comments/l10n/fi.json
4425
%%WWWDIR%%/apps/comments/l10n/fi_FI.js
4425
%%WWWDIR%%/apps-pkg/comments/l10n/fi_FI.js
4426
%%WWWDIR%%/apps/comments/l10n/fi_FI.json
4426
%%WWWDIR%%/apps-pkg/comments/l10n/fi_FI.json
4427
%%WWWDIR%%/apps/comments/l10n/fil.js
4427
%%WWWDIR%%/apps-pkg/comments/l10n/fil.js
4428
%%WWWDIR%%/apps/comments/l10n/fil.json
4428
%%WWWDIR%%/apps-pkg/comments/l10n/fil.json
4429
%%WWWDIR%%/apps/comments/l10n/fr.js
4429
%%WWWDIR%%/apps-pkg/comments/l10n/fr.js
4430
%%WWWDIR%%/apps/comments/l10n/fr.json
4430
%%WWWDIR%%/apps-pkg/comments/l10n/fr.json
4431
%%WWWDIR%%/apps/comments/l10n/gl.js
4431
%%WWWDIR%%/apps-pkg/comments/l10n/gl.js
4432
%%WWWDIR%%/apps/comments/l10n/gl.json
4432
%%WWWDIR%%/apps-pkg/comments/l10n/gl.json
4433
%%WWWDIR%%/apps/comments/l10n/he.js
4433
%%WWWDIR%%/apps-pkg/comments/l10n/he.js
4434
%%WWWDIR%%/apps/comments/l10n/he.json
4434
%%WWWDIR%%/apps-pkg/comments/l10n/he.json
4435
%%WWWDIR%%/apps/comments/l10n/hi.js
4435
%%WWWDIR%%/apps-pkg/comments/l10n/hi.js
4436
%%WWWDIR%%/apps/comments/l10n/hi.json
4436
%%WWWDIR%%/apps-pkg/comments/l10n/hi.json
4437
%%WWWDIR%%/apps/comments/l10n/hr.js
4437
%%WWWDIR%%/apps-pkg/comments/l10n/hr.js
4438
%%WWWDIR%%/apps/comments/l10n/hr.json
4438
%%WWWDIR%%/apps-pkg/comments/l10n/hr.json
4439
%%WWWDIR%%/apps/comments/l10n/hu.js
4439
%%WWWDIR%%/apps-pkg/comments/l10n/hu.js
4440
%%WWWDIR%%/apps/comments/l10n/hu.json
4440
%%WWWDIR%%/apps-pkg/comments/l10n/hu.json
4441
%%WWWDIR%%/apps/comments/l10n/hu_HU.js
4441
%%WWWDIR%%/apps-pkg/comments/l10n/hu_HU.js
4442
%%WWWDIR%%/apps/comments/l10n/hu_HU.json
4442
%%WWWDIR%%/apps-pkg/comments/l10n/hu_HU.json
4443
%%WWWDIR%%/apps/comments/l10n/hy.js
4443
%%WWWDIR%%/apps-pkg/comments/l10n/hy.js
4444
%%WWWDIR%%/apps/comments/l10n/hy.json
4444
%%WWWDIR%%/apps-pkg/comments/l10n/hy.json
4445
%%WWWDIR%%/apps/comments/l10n/ia.js
4445
%%WWWDIR%%/apps-pkg/comments/l10n/ia.js
4446
%%WWWDIR%%/apps/comments/l10n/ia.json
4446
%%WWWDIR%%/apps-pkg/comments/l10n/ia.json
4447
%%WWWDIR%%/apps/comments/l10n/id.js
4447
%%WWWDIR%%/apps-pkg/comments/l10n/id.js
4448
%%WWWDIR%%/apps/comments/l10n/id.json
4448
%%WWWDIR%%/apps-pkg/comments/l10n/id.json
4449
%%WWWDIR%%/apps/comments/l10n/is.js
4449
%%WWWDIR%%/apps-pkg/comments/l10n/is.js
4450
%%WWWDIR%%/apps/comments/l10n/is.json
4450
%%WWWDIR%%/apps-pkg/comments/l10n/is.json
4451
%%WWWDIR%%/apps/comments/l10n/it.js
4451
%%WWWDIR%%/apps-pkg/comments/l10n/it.js
4452
%%WWWDIR%%/apps/comments/l10n/it.json
4452
%%WWWDIR%%/apps-pkg/comments/l10n/it.json
4453
%%WWWDIR%%/apps/comments/l10n/ja.js
4453
%%WWWDIR%%/apps-pkg/comments/l10n/ja.js
4454
%%WWWDIR%%/apps/comments/l10n/ja.json
4454
%%WWWDIR%%/apps-pkg/comments/l10n/ja.json
4455
%%WWWDIR%%/apps/comments/l10n/ka_GE.js
4455
%%WWWDIR%%/apps-pkg/comments/l10n/ka_GE.js
4456
%%WWWDIR%%/apps/comments/l10n/ka_GE.json
4456
%%WWWDIR%%/apps-pkg/comments/l10n/ka_GE.json
4457
%%WWWDIR%%/apps/comments/l10n/km.js
4457
%%WWWDIR%%/apps-pkg/comments/l10n/km.js
4458
%%WWWDIR%%/apps/comments/l10n/km.json
4458
%%WWWDIR%%/apps-pkg/comments/l10n/km.json
4459
%%WWWDIR%%/apps/comments/l10n/kn.js
4459
%%WWWDIR%%/apps-pkg/comments/l10n/kn.js
4460
%%WWWDIR%%/apps/comments/l10n/kn.json
4460
%%WWWDIR%%/apps-pkg/comments/l10n/kn.json
4461
%%WWWDIR%%/apps/comments/l10n/ko.js
4461
%%WWWDIR%%/apps-pkg/comments/l10n/ko.js
4462
%%WWWDIR%%/apps/comments/l10n/ko.json
4462
%%WWWDIR%%/apps-pkg/comments/l10n/ko.json
4463
%%WWWDIR%%/apps/comments/l10n/ku_IQ.js
4463
%%WWWDIR%%/apps-pkg/comments/l10n/ku_IQ.js
4464
%%WWWDIR%%/apps/comments/l10n/ku_IQ.json
4464
%%WWWDIR%%/apps-pkg/comments/l10n/ku_IQ.json
4465
%%WWWDIR%%/apps/comments/l10n/lb.js
4465
%%WWWDIR%%/apps-pkg/comments/l10n/lb.js
4466
%%WWWDIR%%/apps/comments/l10n/lb.json
4466
%%WWWDIR%%/apps-pkg/comments/l10n/lb.json
4467
%%WWWDIR%%/apps/comments/l10n/lt_LT.js
4467
%%WWWDIR%%/apps-pkg/comments/l10n/lt_LT.js
4468
%%WWWDIR%%/apps/comments/l10n/lt_LT.json
4468
%%WWWDIR%%/apps-pkg/comments/l10n/lt_LT.json
4469
%%WWWDIR%%/apps/comments/l10n/lv.js
4469
%%WWWDIR%%/apps-pkg/comments/l10n/lv.js
4470
%%WWWDIR%%/apps/comments/l10n/lv.json
4470
%%WWWDIR%%/apps-pkg/comments/l10n/lv.json
4471
%%WWWDIR%%/apps/comments/l10n/mk.js
4471
%%WWWDIR%%/apps-pkg/comments/l10n/mk.js
4472
%%WWWDIR%%/apps/comments/l10n/mk.json
4472
%%WWWDIR%%/apps-pkg/comments/l10n/mk.json
4473
%%WWWDIR%%/apps/comments/l10n/mn.js
4473
%%WWWDIR%%/apps-pkg/comments/l10n/mn.js
4474
%%WWWDIR%%/apps/comments/l10n/mn.json
4474
%%WWWDIR%%/apps-pkg/comments/l10n/mn.json
4475
%%WWWDIR%%/apps/comments/l10n/ms_MY.js
4475
%%WWWDIR%%/apps-pkg/comments/l10n/ms_MY.js
4476
%%WWWDIR%%/apps/comments/l10n/ms_MY.json
4476
%%WWWDIR%%/apps-pkg/comments/l10n/ms_MY.json
4477
%%WWWDIR%%/apps/comments/l10n/my_MM.js
4477
%%WWWDIR%%/apps-pkg/comments/l10n/my_MM.js
4478
%%WWWDIR%%/apps/comments/l10n/my_MM.json
4478
%%WWWDIR%%/apps-pkg/comments/l10n/my_MM.json
4479
%%WWWDIR%%/apps/comments/l10n/nb.js
4479
%%WWWDIR%%/apps-pkg/comments/l10n/nb.js
4480
%%WWWDIR%%/apps/comments/l10n/nb.json
4480
%%WWWDIR%%/apps-pkg/comments/l10n/nb.json
4481
%%WWWDIR%%/apps/comments/l10n/nb_NO.js
4481
%%WWWDIR%%/apps-pkg/comments/l10n/nb_NO.js
4482
%%WWWDIR%%/apps/comments/l10n/nb_NO.json
4482
%%WWWDIR%%/apps-pkg/comments/l10n/nb_NO.json
4483
%%WWWDIR%%/apps/comments/l10n/nds.js
4483
%%WWWDIR%%/apps-pkg/comments/l10n/nds.js
4484
%%WWWDIR%%/apps/comments/l10n/nds.json
4484
%%WWWDIR%%/apps-pkg/comments/l10n/nds.json
4485
%%WWWDIR%%/apps/comments/l10n/nl.js
4485
%%WWWDIR%%/apps-pkg/comments/l10n/nl.js
4486
%%WWWDIR%%/apps/comments/l10n/nl.json
4486
%%WWWDIR%%/apps-pkg/comments/l10n/nl.json
4487
%%WWWDIR%%/apps/comments/l10n/nn_NO.js
4487
%%WWWDIR%%/apps-pkg/comments/l10n/nn_NO.js
4488
%%WWWDIR%%/apps/comments/l10n/nn_NO.json
4488
%%WWWDIR%%/apps-pkg/comments/l10n/nn_NO.json
4489
%%WWWDIR%%/apps/comments/l10n/oc.js
4489
%%WWWDIR%%/apps-pkg/comments/l10n/oc.js
4490
%%WWWDIR%%/apps/comments/l10n/oc.json
4490
%%WWWDIR%%/apps-pkg/comments/l10n/oc.json
4491
%%WWWDIR%%/apps/comments/l10n/pa.js
4491
%%WWWDIR%%/apps-pkg/comments/l10n/pa.js
4492
%%WWWDIR%%/apps/comments/l10n/pa.json
4492
%%WWWDIR%%/apps-pkg/comments/l10n/pa.json
4493
%%WWWDIR%%/apps/comments/l10n/pl.js
4493
%%WWWDIR%%/apps-pkg/comments/l10n/pl.js
4494
%%WWWDIR%%/apps/comments/l10n/pl.json
4494
%%WWWDIR%%/apps-pkg/comments/l10n/pl.json
4495
%%WWWDIR%%/apps/comments/l10n/pt_BR.js
4495
%%WWWDIR%%/apps-pkg/comments/l10n/pt_BR.js
4496
%%WWWDIR%%/apps/comments/l10n/pt_BR.json
4496
%%WWWDIR%%/apps-pkg/comments/l10n/pt_BR.json
4497
%%WWWDIR%%/apps/comments/l10n/pt_PT.js
4497
%%WWWDIR%%/apps-pkg/comments/l10n/pt_PT.js
4498
%%WWWDIR%%/apps/comments/l10n/pt_PT.json
4498
%%WWWDIR%%/apps-pkg/comments/l10n/pt_PT.json
4499
%%WWWDIR%%/apps/comments/l10n/ro.js
4499
%%WWWDIR%%/apps-pkg/comments/l10n/ro.js
4500
%%WWWDIR%%/apps/comments/l10n/ro.json
4500
%%WWWDIR%%/apps-pkg/comments/l10n/ro.json
4501
%%WWWDIR%%/apps/comments/l10n/ru.js
4501
%%WWWDIR%%/apps-pkg/comments/l10n/ru.js
4502
%%WWWDIR%%/apps/comments/l10n/ru.json
4502
%%WWWDIR%%/apps-pkg/comments/l10n/ru.json
4503
%%WWWDIR%%/apps/comments/l10n/si_LK.js
4503
%%WWWDIR%%/apps-pkg/comments/l10n/si_LK.js
4504
%%WWWDIR%%/apps/comments/l10n/si_LK.json
4504
%%WWWDIR%%/apps-pkg/comments/l10n/si_LK.json
4505
%%WWWDIR%%/apps/comments/l10n/sk.js
4505
%%WWWDIR%%/apps-pkg/comments/l10n/sk.js
4506
%%WWWDIR%%/apps/comments/l10n/sk.json
4506
%%WWWDIR%%/apps-pkg/comments/l10n/sk.json
4507
%%WWWDIR%%/apps/comments/l10n/sk_SK.js
4507
%%WWWDIR%%/apps-pkg/comments/l10n/sk_SK.js
4508
%%WWWDIR%%/apps/comments/l10n/sk_SK.json
4508
%%WWWDIR%%/apps-pkg/comments/l10n/sk_SK.json
4509
%%WWWDIR%%/apps/comments/l10n/sl.js
4509
%%WWWDIR%%/apps-pkg/comments/l10n/sl.js
4510
%%WWWDIR%%/apps/comments/l10n/sl.json
4510
%%WWWDIR%%/apps-pkg/comments/l10n/sl.json
4511
%%WWWDIR%%/apps/comments/l10n/sq.js
4511
%%WWWDIR%%/apps-pkg/comments/l10n/sq.js
4512
%%WWWDIR%%/apps/comments/l10n/sq.json
4512
%%WWWDIR%%/apps-pkg/comments/l10n/sq.json
4513
%%WWWDIR%%/apps/comments/l10n/sr.js
4513
%%WWWDIR%%/apps-pkg/comments/l10n/sr.js
4514
%%WWWDIR%%/apps/comments/l10n/sr.json
4514
%%WWWDIR%%/apps-pkg/comments/l10n/sr.json
4515
%%WWWDIR%%/apps/comments/l10n/sr@latin.js
4515
%%WWWDIR%%/apps-pkg/comments/l10n/sr@latin.js
4516
%%WWWDIR%%/apps/comments/l10n/sr@latin.json
4516
%%WWWDIR%%/apps-pkg/comments/l10n/sr@latin.json
4517
%%WWWDIR%%/apps/comments/l10n/sv.js
4517
%%WWWDIR%%/apps-pkg/comments/l10n/sv.js
4518
%%WWWDIR%%/apps/comments/l10n/sv.json
4518
%%WWWDIR%%/apps-pkg/comments/l10n/sv.json
4519
%%WWWDIR%%/apps/comments/l10n/ta_LK.js
4519
%%WWWDIR%%/apps-pkg/comments/l10n/ta_LK.js
4520
%%WWWDIR%%/apps/comments/l10n/ta_LK.json
4520
%%WWWDIR%%/apps-pkg/comments/l10n/ta_LK.json
4521
%%WWWDIR%%/apps/comments/l10n/te.js
4521
%%WWWDIR%%/apps-pkg/comments/l10n/te.js
4522
%%WWWDIR%%/apps/comments/l10n/te.json
4522
%%WWWDIR%%/apps-pkg/comments/l10n/te.json
4523
%%WWWDIR%%/apps/comments/l10n/th_TH.js
4523
%%WWWDIR%%/apps-pkg/comments/l10n/th.js
4524
%%WWWDIR%%/apps/comments/l10n/th_TH.json
4524
%%WWWDIR%%/apps-pkg/comments/l10n/th.json
4525
%%WWWDIR%%/apps/comments/l10n/tr.js
4525
%%WWWDIR%%/apps-pkg/comments/l10n/th_TH.js
4526
%%WWWDIR%%/apps/comments/l10n/tr.json
4526
%%WWWDIR%%/apps-pkg/comments/l10n/th_TH.json
4527
%%WWWDIR%%/apps/comments/l10n/ug.js
4527
%%WWWDIR%%/apps-pkg/comments/l10n/tr.js
4528
%%WWWDIR%%/apps/comments/l10n/ug.json
4528
%%WWWDIR%%/apps-pkg/comments/l10n/tr.json
4529
%%WWWDIR%%/apps/comments/l10n/uk.js
4529
%%WWWDIR%%/apps-pkg/comments/l10n/ug.js
4530
%%WWWDIR%%/apps/comments/l10n/uk.json
4530
%%WWWDIR%%/apps-pkg/comments/l10n/ug.json
4531
%%WWWDIR%%/apps/comments/l10n/ur_PK.js
4531
%%WWWDIR%%/apps-pkg/comments/l10n/uk.js
4532
%%WWWDIR%%/apps/comments/l10n/ur_PK.json
4532
%%WWWDIR%%/apps-pkg/comments/l10n/uk.json
4533
%%WWWDIR%%/apps/comments/l10n/vi.js
4533
%%WWWDIR%%/apps-pkg/comments/l10n/ur_PK.js
4534
%%WWWDIR%%/apps/comments/l10n/vi.json
4534
%%WWWDIR%%/apps-pkg/comments/l10n/ur_PK.json
4535
%%WWWDIR%%/apps/comments/l10n/zh_CN.js
4535
%%WWWDIR%%/apps-pkg/comments/l10n/vi.js
4536
%%WWWDIR%%/apps/comments/l10n/zh_CN.json
4536
%%WWWDIR%%/apps-pkg/comments/l10n/vi.json
4537
%%WWWDIR%%/apps/comments/l10n/zh_HK.js
4537
%%WWWDIR%%/apps-pkg/comments/l10n/zh_CN.js
4538
%%WWWDIR%%/apps/comments/l10n/zh_HK.json
4538
%%WWWDIR%%/apps-pkg/comments/l10n/zh_CN.json
4539
%%WWWDIR%%/apps/comments/l10n/zh_TW.js
4539
%%WWWDIR%%/apps-pkg/comments/l10n/zh_HK.js
4540
%%WWWDIR%%/apps/comments/l10n/zh_TW.json
4540
%%WWWDIR%%/apps-pkg/comments/l10n/zh_HK.json
4541
%%WWWDIR%%/apps/comments/lib/Activity/Filter.php
4541
%%WWWDIR%%/apps-pkg/comments/l10n/zh_TW.js
4542
%%WWWDIR%%/apps/comments/lib/Activity/Listener.php
4542
%%WWWDIR%%/apps-pkg/comments/l10n/zh_TW.json
4543
%%WWWDIR%%/apps/comments/lib/Activity/Provider.php
4543
%%WWWDIR%%/apps-pkg/comments/lib/Activity/Filter.php
4544
%%WWWDIR%%/apps/comments/lib/Activity/Setting.php
4544
%%WWWDIR%%/apps-pkg/comments/lib/Activity/Listener.php
4545
%%WWWDIR%%/apps/comments/lib/AppInfo/Application.php
4545
%%WWWDIR%%/apps-pkg/comments/lib/Activity/Provider.php
4546
%%WWWDIR%%/apps/comments/lib/Collaboration/CommentersSorter.php
4546
%%WWWDIR%%/apps-pkg/comments/lib/Activity/Setting.php
4547
%%WWWDIR%%/apps/comments/lib/Controller/Notifications.php
4547
%%WWWDIR%%/apps-pkg/comments/lib/AppInfo/Application.php
4548
%%WWWDIR%%/apps/comments/lib/EventHandler.php
4548
%%WWWDIR%%/apps-pkg/comments/lib/Collaboration/CommentersSorter.php
4549
%%WWWDIR%%/apps/comments/lib/JSSettingsHelper.php
4549
%%WWWDIR%%/apps-pkg/comments/lib/Controller/Notifications.php
4550
%%WWWDIR%%/apps/comments/lib/Notification/Listener.php
4550
%%WWWDIR%%/apps-pkg/comments/lib/EventHandler.php
4551
%%WWWDIR%%/apps/comments/lib/Notification/Notifier.php
4551
%%WWWDIR%%/apps-pkg/comments/lib/JSSettingsHelper.php
4552
%%WWWDIR%%/apps/dav/appinfo/app.php
4552
%%WWWDIR%%/apps-pkg/comments/lib/Notification/Listener.php
4553
%%WWWDIR%%/apps/dav/appinfo/info.xml
4553
%%WWWDIR%%/apps-pkg/comments/lib/Notification/Notifier.php
4554
%%WWWDIR%%/apps/dav/appinfo/routes.php
4554
%%WWWDIR%%/apps-pkg/dav/appinfo/app.php
4555
%%WWWDIR%%/apps/dav/appinfo/signature.json
4555
%%WWWDIR%%/apps-pkg/dav/appinfo/info.xml
4556
%%WWWDIR%%/apps/dav/appinfo/v1/caldav.php
4556
%%WWWDIR%%/apps-pkg/dav/appinfo/routes.php
4557
%%WWWDIR%%/apps/dav/appinfo/v1/carddav.php
4557
%%WWWDIR%%/apps-pkg/dav/appinfo/signature.json
4558
%%WWWDIR%%/apps/dav/appinfo/v1/publicwebdav.php
4558
%%WWWDIR%%/apps-pkg/dav/appinfo/v1/caldav.php
4559
%%WWWDIR%%/apps/dav/appinfo/v1/webdav.php
4559
%%WWWDIR%%/apps-pkg/dav/appinfo/v1/carddav.php
4560
%%WWWDIR%%/apps/dav/appinfo/v2/remote.php
4560
%%WWWDIR%%/apps-pkg/dav/appinfo/v1/publicwebdav.php
4561
%%WWWDIR%%/apps/dav/bin/chunkperf.php
4561
%%WWWDIR%%/apps-pkg/dav/appinfo/v1/webdav.php
4562
%%WWWDIR%%/apps/dav/composer/autoload.php
4562
%%WWWDIR%%/apps-pkg/dav/appinfo/v2/remote.php
4563
%%WWWDIR%%/apps/dav/composer/composer.json
4563
%%WWWDIR%%/apps-pkg/dav/bin/chunkperf.php
4564
%%WWWDIR%%/apps/dav/composer/composer/ClassLoader.php
4564
%%WWWDIR%%/apps-pkg/dav/composer/autoload.php
4565
%%WWWDIR%%/apps/dav/composer/composer/LICENSE
4565
%%WWWDIR%%/apps-pkg/dav/composer/composer.json
4566
%%WWWDIR%%/apps/dav/composer/composer/autoload_classmap.php
4566
%%WWWDIR%%/apps-pkg/dav/composer/composer/ClassLoader.php
4567
%%WWWDIR%%/apps/dav/composer/composer/autoload_namespaces.php
4567
%%WWWDIR%%/apps-pkg/dav/composer/composer/LICENSE
4568
%%WWWDIR%%/apps/dav/composer/composer/autoload_psr4.php
4568
%%WWWDIR%%/apps-pkg/dav/composer/composer/autoload_classmap.php
4569
%%WWWDIR%%/apps/dav/composer/composer/autoload_real.php
4569
%%WWWDIR%%/apps-pkg/dav/composer/composer/autoload_namespaces.php
4570
%%WWWDIR%%/apps/dav/composer/composer/autoload_static.php
4570
%%WWWDIR%%/apps-pkg/dav/composer/composer/autoload_psr4.php
4571
%%WWWDIR%%/apps/dav/js/settings-admin-caldav.js
4571
%%WWWDIR%%/apps-pkg/dav/composer/composer/autoload_real.php
4572
%%WWWDIR%%/apps/dav/l10n/.gitkeep
4572
%%WWWDIR%%/apps-pkg/dav/composer/composer/autoload_static.php
4573
%%WWWDIR%%/apps/dav/l10n/bg.js
4573
%%WWWDIR%%/apps-pkg/dav/js/settings-admin-caldav.js
4574
%%WWWDIR%%/apps/dav/l10n/bg.json
4574
%%WWWDIR%%/apps-pkg/dav/l10n/.gitkeep
4575
%%WWWDIR%%/apps/dav/l10n/bg_BG.js
4575
%%WWWDIR%%/apps-pkg/dav/l10n/bg.js
4576
%%WWWDIR%%/apps/dav/l10n/bg_BG.json
4576
%%WWWDIR%%/apps-pkg/dav/l10n/bg.json
4577
%%WWWDIR%%/apps/dav/l10n/ca.js
4577
%%WWWDIR%%/apps-pkg/dav/l10n/bg_BG.js
4578
%%WWWDIR%%/apps/dav/l10n/ca.json
4578
%%WWWDIR%%/apps-pkg/dav/l10n/bg_BG.json
4579
%%WWWDIR%%/apps/dav/l10n/cs.js
4579
%%WWWDIR%%/apps-pkg/dav/l10n/ca.js
4580
%%WWWDIR%%/apps/dav/l10n/cs.json
4580
%%WWWDIR%%/apps-pkg/dav/l10n/ca.json
4581
%%WWWDIR%%/apps/dav/l10n/cs_CZ.js
4581
%%WWWDIR%%/apps-pkg/dav/l10n/cs.js
4582
%%WWWDIR%%/apps/dav/l10n/cs_CZ.json
4582
%%WWWDIR%%/apps-pkg/dav/l10n/cs.json
4583
%%WWWDIR%%/apps/dav/l10n/da.js
4583
%%WWWDIR%%/apps-pkg/dav/l10n/cs_CZ.js
4584
%%WWWDIR%%/apps/dav/l10n/da.json
4584
%%WWWDIR%%/apps-pkg/dav/l10n/cs_CZ.json
4585
%%WWWDIR%%/apps/dav/l10n/de.js
4585
%%WWWDIR%%/apps-pkg/dav/l10n/da.js
4586
%%WWWDIR%%/apps/dav/l10n/de.json
4586
%%WWWDIR%%/apps-pkg/dav/l10n/da.json
4587
%%WWWDIR%%/apps/dav/l10n/de_DE.js
4587
%%WWWDIR%%/apps-pkg/dav/l10n/de.js
4588
%%WWWDIR%%/apps/dav/l10n/de_DE.json
4588
%%WWWDIR%%/apps-pkg/dav/l10n/de.json
4589
%%WWWDIR%%/apps/dav/l10n/el.js
4589
%%WWWDIR%%/apps-pkg/dav/l10n/de_DE.js
4590
%%WWWDIR%%/apps/dav/l10n/el.json
4590
%%WWWDIR%%/apps-pkg/dav/l10n/de_DE.json
4591
%%WWWDIR%%/apps/dav/l10n/en_GB.js
4591
%%WWWDIR%%/apps-pkg/dav/l10n/el.js
4592
%%WWWDIR%%/apps/dav/l10n/en_GB.json
4592
%%WWWDIR%%/apps-pkg/dav/l10n/el.json
4593
%%WWWDIR%%/apps/dav/l10n/es.js
4593
%%WWWDIR%%/apps-pkg/dav/l10n/en_GB.js
4594
%%WWWDIR%%/apps/dav/l10n/es.json
4594
%%WWWDIR%%/apps-pkg/dav/l10n/en_GB.json
4595
%%WWWDIR%%/apps/dav/l10n/es_419.js
4595
%%WWWDIR%%/apps-pkg/dav/l10n/es.js
4596
%%WWWDIR%%/apps/dav/l10n/es_419.json
4596
%%WWWDIR%%/apps-pkg/dav/l10n/es.json
4597
%%WWWDIR%%/apps/dav/l10n/es_AR.js
4597
%%WWWDIR%%/apps-pkg/dav/l10n/es_419.js
4598
%%WWWDIR%%/apps/dav/l10n/es_AR.json
4598
%%WWWDIR%%/apps-pkg/dav/l10n/es_419.json
4599
%%WWWDIR%%/apps/dav/l10n/es_CL.js
4599
%%WWWDIR%%/apps-pkg/dav/l10n/es_AR.js
4600
%%WWWDIR%%/apps/dav/l10n/es_CL.json
4600
%%WWWDIR%%/apps-pkg/dav/l10n/es_AR.json
4601
%%WWWDIR%%/apps/dav/l10n/es_CO.js
4601
%%WWWDIR%%/apps-pkg/dav/l10n/es_CL.js
4602
%%WWWDIR%%/apps/dav/l10n/es_CO.json
4602
%%WWWDIR%%/apps-pkg/dav/l10n/es_CL.json
4603
%%WWWDIR%%/apps/dav/l10n/es_CR.js
4603
%%WWWDIR%%/apps-pkg/dav/l10n/es_CO.js
4604
%%WWWDIR%%/apps/dav/l10n/es_CR.json
4604
%%WWWDIR%%/apps-pkg/dav/l10n/es_CO.json
4605
%%WWWDIR%%/apps/dav/l10n/es_DO.js
4605
%%WWWDIR%%/apps-pkg/dav/l10n/es_CR.js
4606
%%WWWDIR%%/apps/dav/l10n/es_DO.json
4606
%%WWWDIR%%/apps-pkg/dav/l10n/es_CR.json
4607
%%WWWDIR%%/apps/dav/l10n/es_EC.js
4607
%%WWWDIR%%/apps-pkg/dav/l10n/es_DO.js
4608
%%WWWDIR%%/apps/dav/l10n/es_EC.json
4608
%%WWWDIR%%/apps-pkg/dav/l10n/es_DO.json
4609
%%WWWDIR%%/apps/dav/l10n/es_GT.js
4609
%%WWWDIR%%/apps-pkg/dav/l10n/es_EC.js
4610
%%WWWDIR%%/apps/dav/l10n/es_GT.json
4610
%%WWWDIR%%/apps-pkg/dav/l10n/es_EC.json
4611
%%WWWDIR%%/apps/dav/l10n/es_HN.js
4611
%%WWWDIR%%/apps-pkg/dav/l10n/es_GT.js
4612
%%WWWDIR%%/apps/dav/l10n/es_HN.json
4612
%%WWWDIR%%/apps-pkg/dav/l10n/es_GT.json
4613
%%WWWDIR%%/apps/dav/l10n/es_MX.js
4613
%%WWWDIR%%/apps-pkg/dav/l10n/es_HN.js
4614
%%WWWDIR%%/apps/dav/l10n/es_MX.json
4614
%%WWWDIR%%/apps-pkg/dav/l10n/es_HN.json
4615
%%WWWDIR%%/apps/dav/l10n/es_NI.js
4615
%%WWWDIR%%/apps-pkg/dav/l10n/es_MX.js
4616
%%WWWDIR%%/apps/dav/l10n/es_NI.json
4616
%%WWWDIR%%/apps-pkg/dav/l10n/es_MX.json
4617
%%WWWDIR%%/apps/dav/l10n/es_PA.js
4617
%%WWWDIR%%/apps-pkg/dav/l10n/es_NI.js
4618
%%WWWDIR%%/apps/dav/l10n/es_PA.json
4618
%%WWWDIR%%/apps-pkg/dav/l10n/es_NI.json
4619
%%WWWDIR%%/apps/dav/l10n/es_PE.js
4619
%%WWWDIR%%/apps-pkg/dav/l10n/es_PA.js
4620
%%WWWDIR%%/apps/dav/l10n/es_PE.json
4620
%%WWWDIR%%/apps-pkg/dav/l10n/es_PA.json
4621
%%WWWDIR%%/apps/dav/l10n/es_PR.js
4621
%%WWWDIR%%/apps-pkg/dav/l10n/es_PE.js
4622
%%WWWDIR%%/apps/dav/l10n/es_PR.json
4622
%%WWWDIR%%/apps-pkg/dav/l10n/es_PE.json
4623
%%WWWDIR%%/apps/dav/l10n/es_PY.js
4623
%%WWWDIR%%/apps-pkg/dav/l10n/es_PR.js
4624
%%WWWDIR%%/apps/dav/l10n/es_PY.json
4624
%%WWWDIR%%/apps-pkg/dav/l10n/es_PR.json
4625
%%WWWDIR%%/apps/dav/l10n/es_SV.js
4625
%%WWWDIR%%/apps-pkg/dav/l10n/es_PY.js
4626
%%WWWDIR%%/apps/dav/l10n/es_SV.json
4626
%%WWWDIR%%/apps-pkg/dav/l10n/es_PY.json
4627
%%WWWDIR%%/apps/dav/l10n/es_UY.js
4627
%%WWWDIR%%/apps-pkg/dav/l10n/es_SV.js
4628
%%WWWDIR%%/apps/dav/l10n/es_UY.json
4628
%%WWWDIR%%/apps-pkg/dav/l10n/es_SV.json
4629
%%WWWDIR%%/apps/dav/l10n/et_EE.js
4629
%%WWWDIR%%/apps-pkg/dav/l10n/es_UY.js
4630
%%WWWDIR%%/apps/dav/l10n/et_EE.json
4630
%%WWWDIR%%/apps-pkg/dav/l10n/es_UY.json
4631
%%WWWDIR%%/apps/dav/l10n/eu.js
4631
%%WWWDIR%%/apps-pkg/dav/l10n/et_EE.js
4632
%%WWWDIR%%/apps/dav/l10n/eu.json
4632
%%WWWDIR%%/apps-pkg/dav/l10n/et_EE.json
4633
%%WWWDIR%%/apps/dav/l10n/fi.js
4633
%%WWWDIR%%/apps-pkg/dav/l10n/eu.js
4634
%%WWWDIR%%/apps/dav/l10n/fi.json
4634
%%WWWDIR%%/apps-pkg/dav/l10n/eu.json
4635
%%WWWDIR%%/apps/dav/l10n/fi_FI.js
4635
%%WWWDIR%%/apps-pkg/dav/l10n/fi.js
4636
%%WWWDIR%%/apps/dav/l10n/fi_FI.json
4636
%%WWWDIR%%/apps-pkg/dav/l10n/fi.json
4637
%%WWWDIR%%/apps/dav/l10n/fr.js
4637
%%WWWDIR%%/apps-pkg/dav/l10n/fi_FI.js
4638
%%WWWDIR%%/apps/dav/l10n/fr.json
4638
%%WWWDIR%%/apps-pkg/dav/l10n/fi_FI.json
4639
%%WWWDIR%%/apps/dav/l10n/gl.js
4639
%%WWWDIR%%/apps-pkg/dav/l10n/fr.js
4640
%%WWWDIR%%/apps/dav/l10n/gl.json
4640
%%WWWDIR%%/apps-pkg/dav/l10n/fr.json
4641
%%WWWDIR%%/apps/dav/l10n/hu.js
4641
%%WWWDIR%%/apps-pkg/dav/l10n/gl.js
4642
%%WWWDIR%%/apps/dav/l10n/hu.json
4642
%%WWWDIR%%/apps-pkg/dav/l10n/gl.json
4643
%%WWWDIR%%/apps/dav/l10n/hu_HU.js
4643
%%WWWDIR%%/apps-pkg/dav/l10n/hu.js
4644
%%WWWDIR%%/apps/dav/l10n/hu_HU.json
4644
%%WWWDIR%%/apps-pkg/dav/l10n/hu.json
4645
%%WWWDIR%%/apps/dav/l10n/id.js
4645
%%WWWDIR%%/apps-pkg/dav/l10n/hu_HU.js
4646
%%WWWDIR%%/apps/dav/l10n/id.json
4646
%%WWWDIR%%/apps-pkg/dav/l10n/hu_HU.json
4647
%%WWWDIR%%/apps/dav/l10n/is.js
4647
%%WWWDIR%%/apps-pkg/dav/l10n/id.js
4648
%%WWWDIR%%/apps/dav/l10n/is.json
4648
%%WWWDIR%%/apps-pkg/dav/l10n/id.json
4649
%%WWWDIR%%/apps/dav/l10n/it.js
4649
%%WWWDIR%%/apps-pkg/dav/l10n/is.js
4650
%%WWWDIR%%/apps/dav/l10n/it.json
4650
%%WWWDIR%%/apps-pkg/dav/l10n/is.json
4651
%%WWWDIR%%/apps/dav/l10n/ja.js
4651
%%WWWDIR%%/apps-pkg/dav/l10n/it.js
4652
%%WWWDIR%%/apps/dav/l10n/ja.json
4652
%%WWWDIR%%/apps-pkg/dav/l10n/it.json
4653
%%WWWDIR%%/apps/dav/l10n/ka_GE.js
4653
%%WWWDIR%%/apps-pkg/dav/l10n/ja.js
4654
%%WWWDIR%%/apps/dav/l10n/ka_GE.json
4654
%%WWWDIR%%/apps-pkg/dav/l10n/ja.json
4655
%%WWWDIR%%/apps/dav/l10n/ko.js
4655
%%WWWDIR%%/apps-pkg/dav/l10n/ka_GE.js
4656
%%WWWDIR%%/apps/dav/l10n/ko.json
4656
%%WWWDIR%%/apps-pkg/dav/l10n/ka_GE.json
4657
%%WWWDIR%%/apps/dav/l10n/lt_LT.js
4657
%%WWWDIR%%/apps-pkg/dav/l10n/ko.js
4658
%%WWWDIR%%/apps/dav/l10n/lt_LT.json
4658
%%WWWDIR%%/apps-pkg/dav/l10n/ko.json
4659
%%WWWDIR%%/apps/dav/l10n/lv.js
4659
%%WWWDIR%%/apps-pkg/dav/l10n/lt_LT.js
4660
%%WWWDIR%%/apps/dav/l10n/lv.json
4660
%%WWWDIR%%/apps-pkg/dav/l10n/lt_LT.json
4661
%%WWWDIR%%/apps/dav/l10n/nb.js
4661
%%WWWDIR%%/apps-pkg/dav/l10n/lv.js
4662
%%WWWDIR%%/apps/dav/l10n/nb.json
4662
%%WWWDIR%%/apps-pkg/dav/l10n/lv.json
4663
%%WWWDIR%%/apps/dav/l10n/nb_NO.js
4663
%%WWWDIR%%/apps-pkg/dav/l10n/nb.js
4664
%%WWWDIR%%/apps/dav/l10n/nb_NO.json
4664
%%WWWDIR%%/apps-pkg/dav/l10n/nb.json
4665
%%WWWDIR%%/apps/dav/l10n/nl.js
4665
%%WWWDIR%%/apps-pkg/dav/l10n/nb_NO.js
4666
%%WWWDIR%%/apps/dav/l10n/nl.json
4666
%%WWWDIR%%/apps-pkg/dav/l10n/nb_NO.json
4667
%%WWWDIR%%/apps/dav/l10n/pl.js
4667
%%WWWDIR%%/apps-pkg/dav/l10n/nl.js
4668
%%WWWDIR%%/apps/dav/l10n/pl.json
4668
%%WWWDIR%%/apps-pkg/dav/l10n/nl.json
4669
%%WWWDIR%%/apps/dav/l10n/pt_BR.js
4669
%%WWWDIR%%/apps-pkg/dav/l10n/nn_NO.js
4670
%%WWWDIR%%/apps/dav/l10n/pt_BR.json
4670
%%WWWDIR%%/apps-pkg/dav/l10n/nn_NO.json
4671
%%WWWDIR%%/apps/dav/l10n/ro.js
4671
%%WWWDIR%%/apps-pkg/dav/l10n/pl.js
4672
%%WWWDIR%%/apps/dav/l10n/ro.json
4672
%%WWWDIR%%/apps-pkg/dav/l10n/pl.json
4673
%%WWWDIR%%/apps/dav/l10n/ru.js
4673
%%WWWDIR%%/apps-pkg/dav/l10n/pt_BR.js
4674
%%WWWDIR%%/apps/dav/l10n/ru.json
4674
%%WWWDIR%%/apps-pkg/dav/l10n/pt_BR.json
4675
%%WWWDIR%%/apps/dav/l10n/sk.js
4675
%%WWWDIR%%/apps-pkg/dav/l10n/ro.js
4676
%%WWWDIR%%/apps/dav/l10n/sk.json
4676
%%WWWDIR%%/apps-pkg/dav/l10n/ro.json
4677
%%WWWDIR%%/apps/dav/l10n/sl.js
4677
%%WWWDIR%%/apps-pkg/dav/l10n/ru.js
4678
%%WWWDIR%%/apps/dav/l10n/sl.json
4678
%%WWWDIR%%/apps-pkg/dav/l10n/ru.json
4679
%%WWWDIR%%/apps/dav/l10n/sq.js
4679
%%WWWDIR%%/apps-pkg/dav/l10n/sk.js
4680
%%WWWDIR%%/apps/dav/l10n/sq.json
4680
%%WWWDIR%%/apps-pkg/dav/l10n/sk.json
4681
%%WWWDIR%%/apps/dav/l10n/sr.js
4681
%%WWWDIR%%/apps-pkg/dav/l10n/sl.js
4682
%%WWWDIR%%/apps/dav/l10n/sr.json
4682
%%WWWDIR%%/apps-pkg/dav/l10n/sl.json
4683
%%WWWDIR%%/apps/dav/l10n/sv.js
4683
%%WWWDIR%%/apps-pkg/dav/l10n/sq.js
4684
%%WWWDIR%%/apps/dav/l10n/sv.json
4684
%%WWWDIR%%/apps-pkg/dav/l10n/sq.json
4685
%%WWWDIR%%/apps/dav/l10n/tr.js
4685
%%WWWDIR%%/apps-pkg/dav/l10n/sr.js
4686
%%WWWDIR%%/apps/dav/l10n/tr.json
4686
%%WWWDIR%%/apps-pkg/dav/l10n/sr.json
4687
%%WWWDIR%%/apps/dav/l10n/zh_CN.js
4687
%%WWWDIR%%/apps-pkg/dav/l10n/sv.js
4688
%%WWWDIR%%/apps/dav/l10n/zh_CN.json
4688
%%WWWDIR%%/apps-pkg/dav/l10n/sv.json
4689
%%WWWDIR%%/apps/dav/l10n/zh_TW.js
4689
%%WWWDIR%%/apps-pkg/dav/l10n/tr.js
4690
%%WWWDIR%%/apps/dav/l10n/zh_TW.json
4690
%%WWWDIR%%/apps-pkg/dav/l10n/tr.json
4691
%%WWWDIR%%/apps/dav/lib/AppInfo/Application.php
4691
%%WWWDIR%%/apps-pkg/dav/l10n/zh_CN.js
4692
%%WWWDIR%%/apps/dav/lib/AppInfo/PluginManager.php
4692
%%WWWDIR%%/apps-pkg/dav/l10n/zh_CN.json
4693
%%WWWDIR%%/apps/dav/lib/Avatars/AvatarHome.php
4693
%%WWWDIR%%/apps-pkg/dav/l10n/zh_TW.js
4694
%%WWWDIR%%/apps/dav/lib/Avatars/AvatarNode.php
4694
%%WWWDIR%%/apps-pkg/dav/l10n/zh_TW.json
4695
%%WWWDIR%%/apps/dav/lib/Avatars/RootCollection.php
4695
%%WWWDIR%%/apps-pkg/dav/lib/AppInfo/Application.php
4696
%%WWWDIR%%/apps/dav/lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php
4696
%%WWWDIR%%/apps-pkg/dav/lib/AppInfo/PluginManager.php
4697
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Backend.php
4697
%%WWWDIR%%/apps-pkg/dav/lib/Avatars/AvatarHome.php
4698
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Filter/Calendar.php
4698
%%WWWDIR%%/apps-pkg/dav/lib/Avatars/AvatarNode.php
4699
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Filter/Todo.php
4699
%%WWWDIR%%/apps-pkg/dav/lib/Avatars/RootCollection.php
4700
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Provider/Base.php
4700
%%WWWDIR%%/apps-pkg/dav/lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php
4701
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Provider/Calendar.php
4701
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Backend.php
4702
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Provider/Event.php
4702
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Filter/Calendar.php
4703
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Provider/Todo.php
4703
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Filter/Todo.php
4704
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Calendar.php
4704
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Provider/Base.php
4705
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Event.php
4705
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Provider/Calendar.php
4706
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Todo.php
4706
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Provider/Event.php
4707
%%WWWDIR%%/apps/dav/lib/CalDAV/BirthdayCalendar/EnablePlugin.php
4707
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Provider/Todo.php
4708
%%WWWDIR%%/apps/dav/lib/CalDAV/BirthdayService.php
4708
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Setting/Calendar.php
4709
%%WWWDIR%%/apps/dav/lib/CalDAV/CalDavBackend.php
4709
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Setting/Event.php
4710
%%WWWDIR%%/apps/dav/lib/CalDAV/Calendar.php
4710
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Setting/Todo.php
4711
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarHome.php
4711
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/BirthdayCalendar/EnablePlugin.php
4712
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarImpl.php
4712
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/BirthdayService.php
4713
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarManager.php
4713
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/CalDavBackend.php
4714
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarObject.php
4714
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Calendar.php
4715
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarRoot.php
4715
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/CalendarHome.php
4716
%%WWWDIR%%/apps/dav/lib/CalDAV/Plugin.php
4716
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/CalendarImpl.php
4717
%%WWWDIR%%/apps/dav/lib/CalDAV/Principal/Collection.php
4717
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/CalendarManager.php
4718
%%WWWDIR%%/apps/dav/lib/CalDAV/Principal/User.php
4718
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/CalendarObject.php
4719
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendar.php
4719
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/CalendarRoot.php
4720
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendarObject.php
4720
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Plugin.php
4721
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendarRoot.php
4721
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Principal/Collection.php
4722
%%WWWDIR%%/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php
4722
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Principal/User.php
4723
%%WWWDIR%%/apps/dav/lib/CalDAV/Publishing/Xml/Publisher.php
4723
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/PublicCalendar.php
4724
%%WWWDIR%%/apps/dav/lib/CalDAV/Schedule/IMipPlugin.php
4724
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/PublicCalendarObject.php
4725
%%WWWDIR%%/apps/dav/lib/CalDAV/Schedule/Plugin.php
4725
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/PublicCalendarRoot.php
4726
%%WWWDIR%%/apps/dav/lib/CalDAV/Search/SearchPlugin.php
4726
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Publishing/PublishPlugin.php
4727
%%WWWDIR%%/apps/dav/lib/CalDAV/Search/Xml/Filter/CompFilter.php
4727
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Publishing/Xml/Publisher.php
4728
%%WWWDIR%%/apps/dav/lib/CalDAV/Search/Xml/Filter/LimitFilter.php
4728
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Schedule/IMipPlugin.php
4729
%%WWWDIR%%/apps/dav/lib/CalDAV/Search/Xml/Filter/OffsetFilter.php
4729
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Schedule/Plugin.php
4730
%%WWWDIR%%/apps/dav/lib/CalDAV/Search/Xml/Filter/ParamFilter.php
4730
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/SearchPlugin.php
4731
%%WWWDIR%%/apps/dav/lib/CalDAV/Search/Xml/Filter/PropFilter.php
4731
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/Xml/Filter/CompFilter.php
4732
%%WWWDIR%%/apps/dav/lib/CalDAV/Search/Xml/Filter/SearchTermFilter.php
4732
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/Xml/Filter/LimitFilter.php
4733
%%WWWDIR%%/apps/dav/lib/CalDAV/Search/Xml/Request/CalendarSearchReport.php
4733
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/Xml/Filter/OffsetFilter.php
4734
%%WWWDIR%%/apps/dav/lib/Capabilities.php
4734
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/Xml/Filter/ParamFilter.php
4735
%%WWWDIR%%/apps/dav/lib/CardDAV/AddressBook.php
4735
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/Xml/Filter/PropFilter.php
4736
%%WWWDIR%%/apps/dav/lib/CardDAV/AddressBookImpl.php
4736
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/Xml/Filter/SearchTermFilter.php
4737
%%WWWDIR%%/apps/dav/lib/CardDAV/AddressBookRoot.php
4737
%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/Xml/Request/CalendarSearchReport.php
4738
%%WWWDIR%%/apps/dav/lib/CardDAV/CardDavBackend.php
4738
%%WWWDIR%%/apps-pkg/dav/lib/Capabilities.php
4739
%%WWWDIR%%/apps/dav/lib/CardDAV/ContactsManager.php
4739
%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/AddressBook.php
4740
%%WWWDIR%%/apps/dav/lib/CardDAV/Converter.php
4740
%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/AddressBookImpl.php
4741
%%WWWDIR%%/apps/dav/lib/CardDAV/ImageExportPlugin.php
4741
%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/AddressBookRoot.php
4742
%%WWWDIR%%/apps/dav/lib/CardDAV/PhotoCache.php
4742
%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/CardDavBackend.php
4743
%%WWWDIR%%/apps/dav/lib/CardDAV/Plugin.php
4743
%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/ContactsManager.php
4744
%%WWWDIR%%/apps/dav/lib/CardDAV/SyncService.php
4744
%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/Converter.php
4745
%%WWWDIR%%/apps/dav/lib/CardDAV/UserAddressBooks.php
4745
%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/ImageExportPlugin.php
4746
%%WWWDIR%%/apps/dav/lib/CardDAV/Xml/Groups.php
4746
%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/PhotoCache.php
4747
%%WWWDIR%%/apps/dav/lib/Command/CreateAddressBook.php
4747
%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/Plugin.php
4748
%%WWWDIR%%/apps/dav/lib/Command/CreateCalendar.php
4748
%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/SyncService.php
4749
%%WWWDIR%%/apps/dav/lib/Command/SyncBirthdayCalendar.php
4749
%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/UserAddressBooks.php
4750
%%WWWDIR%%/apps/dav/lib/Command/SyncSystemAddressBook.php
4750
%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/Xml/Groups.php
4751
%%WWWDIR%%/apps/dav/lib/Comments/CommentNode.php
4751
%%WWWDIR%%/apps-pkg/dav/lib/Command/CreateAddressBook.php
4752
%%WWWDIR%%/apps/dav/lib/Comments/CommentsPlugin.php
4752
%%WWWDIR%%/apps-pkg/dav/lib/Command/CreateCalendar.php
4753
%%WWWDIR%%/apps/dav/lib/Comments/EntityCollection.php
4753
%%WWWDIR%%/apps-pkg/dav/lib/Command/SyncBirthdayCalendar.php
4754
%%WWWDIR%%/apps/dav/lib/Comments/EntityTypeCollection.php
4754
%%WWWDIR%%/apps-pkg/dav/lib/Command/SyncSystemAddressBook.php
4755
%%WWWDIR%%/apps/dav/lib/Comments/RootCollection.php
4755
%%WWWDIR%%/apps-pkg/dav/lib/Comments/CommentNode.php
4756
%%WWWDIR%%/apps/dav/lib/Connector/LegacyDAVACL.php
4756
%%WWWDIR%%/apps-pkg/dav/lib/Comments/CommentsPlugin.php
4757
%%WWWDIR%%/apps/dav/lib/Connector/PublicAuth.php
4757
%%WWWDIR%%/apps-pkg/dav/lib/Comments/EntityCollection.php
4758
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/AppEnabledPlugin.php
4758
%%WWWDIR%%/apps-pkg/dav/lib/Comments/EntityTypeCollection.php
4759
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Auth.php
4759
%%WWWDIR%%/apps-pkg/dav/lib/Comments/RootCollection.php
4760
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/BearerAuth.php
4760
%%WWWDIR%%/apps-pkg/dav/lib/Connector/LegacyDAVACL.php
4761
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php
4761
%%WWWDIR%%/apps-pkg/dav/lib/Connector/PublicAuth.php
4762
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/CachingTree.php
4762
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/AppEnabledPlugin.php
4763
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/ChecksumList.php
4763
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Auth.php
4764
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/CommentPropertiesPlugin.php
4764
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/BearerAuth.php
4765
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/CopyEtagHeaderPlugin.php
4765
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php
4766
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/CustomPropertiesBackend.php
4766
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/CachingTree.php
4767
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/DavAclPlugin.php
4767
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/ChecksumList.php
4768
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Directory.php
4768
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/CommentPropertiesPlugin.php
4769
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/DummyGetResponsePlugin.php
4769
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/CopyEtagHeaderPlugin.php
4770
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Exception/EntityTooLarge.php
4770
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/CustomPropertiesBackend.php
4771
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Exception/FileLocked.php
4771
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/DavAclPlugin.php
4772
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Exception/Forbidden.php
4772
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Directory.php
4773
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Exception/InvalidPath.php
4773
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/DummyGetResponsePlugin.php
4774
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Exception/PasswordLoginForbidden.php
4774
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Exception/EntityTooLarge.php
4775
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Exception/UnsupportedMediaType.php
4775
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Exception/FileLocked.php
4776
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php
4776
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Exception/Forbidden.php
4777
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/FakeLockerPlugin.php
4777
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Exception/InvalidPath.php
4778
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/File.php
4778
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Exception/PasswordLoginForbidden.php
4779
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/FilesPlugin.php
4779
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Exception/UnsupportedMediaType.php
4780
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/FilesReportPlugin.php
4780
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php
4781
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/LockPlugin.php
4781
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/FakeLockerPlugin.php
4782
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/MaintenancePlugin.php
4782
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/File.php
4783
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Node.php
4783
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/FilesPlugin.php
4784
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/ObjectTree.php
4784
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/FilesReportPlugin.php
4785
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Principal.php
4785
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/LockPlugin.php
4786
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/QuotaPlugin.php
4786
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/MaintenancePlugin.php
4787
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Server.php
4787
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Node.php
4788
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/ServerFactory.php
4788
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/ObjectTree.php
4789
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/ShareTypeList.php
4789
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Principal.php
4790
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/SharesPlugin.php
4790
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/QuotaPlugin.php
4791
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/TagList.php
4791
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Server.php
4792
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/TagsPlugin.php
4792
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/ServerFactory.php
4793
%%WWWDIR%%/apps/dav/lib/Controller/BirthdayCalendarController.php
4793
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/ShareTypeList.php
4794
%%WWWDIR%%/apps/dav/lib/DAV/CustomPropertiesBackend.php
4794
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/SharesPlugin.php
4795
%%WWWDIR%%/apps/dav/lib/DAV/GroupPrincipalBackend.php
4795
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/TagList.php
4796
%%WWWDIR%%/apps/dav/lib/DAV/PublicAuth.php
4796
%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/TagsPlugin.php
4797
%%WWWDIR%%/apps/dav/lib/DAV/Sharing/Backend.php
4797
%%WWWDIR%%/apps-pkg/dav/lib/Controller/BirthdayCalendarController.php
4798
%%WWWDIR%%/apps/dav/lib/DAV/Sharing/IShareable.php
4798
%%WWWDIR%%/apps-pkg/dav/lib/DAV/CustomPropertiesBackend.php
4799
%%WWWDIR%%/apps/dav/lib/DAV/Sharing/Plugin.php
4799
%%WWWDIR%%/apps-pkg/dav/lib/DAV/GroupPrincipalBackend.php
4800
%%WWWDIR%%/apps/dav/lib/DAV/Sharing/Xml/Invite.php
4800
%%WWWDIR%%/apps-pkg/dav/lib/DAV/PublicAuth.php
4801
%%WWWDIR%%/apps/dav/lib/DAV/Sharing/Xml/ShareRequest.php
4801
%%WWWDIR%%/apps-pkg/dav/lib/DAV/Sharing/Backend.php
4802
%%WWWDIR%%/apps/dav/lib/DAV/SystemPrincipalBackend.php
4802
%%WWWDIR%%/apps-pkg/dav/lib/DAV/Sharing/IShareable.php
4803
%%WWWDIR%%/apps/dav/lib/Files/BrowserErrorPagePlugin.php
4803
%%WWWDIR%%/apps-pkg/dav/lib/DAV/Sharing/Plugin.php
4804
%%WWWDIR%%/apps/dav/lib/Files/FileSearchBackend.php
4804
%%WWWDIR%%/apps-pkg/dav/lib/DAV/Sharing/Xml/Invite.php
4805
%%WWWDIR%%/apps/dav/lib/Files/FilesHome.php
4805
%%WWWDIR%%/apps-pkg/dav/lib/DAV/Sharing/Xml/ShareRequest.php
4806
%%WWWDIR%%/apps/dav/lib/Files/RootCollection.php
4806
%%WWWDIR%%/apps-pkg/dav/lib/DAV/SystemPrincipalBackend.php
4807
%%WWWDIR%%/apps/dav/lib/Files/Sharing/FilesDropPlugin.php
4807
%%WWWDIR%%/apps-pkg/dav/lib/Files/BrowserErrorPagePlugin.php
4808
%%WWWDIR%%/apps/dav/lib/Files/Sharing/PublicLinkCheckPlugin.php
4808
%%WWWDIR%%/apps-pkg/dav/lib/Files/FileSearchBackend.php
4809
%%WWWDIR%%/apps/dav/lib/HookManager.php
4809
%%WWWDIR%%/apps-pkg/dav/lib/Files/FilesHome.php
4810
%%WWWDIR%%/apps/dav/lib/Migration/BuildCalendarSearchIndex.php
4810
%%WWWDIR%%/apps-pkg/dav/lib/Files/RootCollection.php
4811
%%WWWDIR%%/apps/dav/lib/Migration/BuildCalendarSearchIndexBackgroundJob.php
4811
%%WWWDIR%%/apps-pkg/dav/lib/Files/Sharing/FilesDropPlugin.php
4812
%%WWWDIR%%/apps/dav/lib/Migration/CalDAVRemoveEmptyValue.php
4812
%%WWWDIR%%/apps-pkg/dav/lib/Files/Sharing/PublicLinkCheckPlugin.php
4813
%%WWWDIR%%/apps/dav/lib/Migration/FixBirthdayCalendarComponent.php
4813
%%WWWDIR%%/apps-pkg/dav/lib/HookManager.php
4814
%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170825134824.php
4814
%%WWWDIR%%/apps-pkg/dav/lib/Migration/BuildCalendarSearchIndex.php
4815
%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170919104507.php
4815
%%WWWDIR%%/apps-pkg/dav/lib/Migration/BuildCalendarSearchIndexBackgroundJob.php
4816
%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170924124212.php
4816
%%WWWDIR%%/apps-pkg/dav/lib/Migration/CalDAVRemoveEmptyValue.php
4817
%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170926103422.php
4817
%%WWWDIR%%/apps-pkg/dav/lib/Migration/FixBirthdayCalendarComponent.php
4818
%%WWWDIR%%/apps/dav/lib/RootCollection.php
4818
%%WWWDIR%%/apps-pkg/dav/lib/Migration/Version1004Date20170825134824.php
4819
%%WWWDIR%%/apps/dav/lib/Server.php
4819
%%WWWDIR%%/apps-pkg/dav/lib/Migration/Version1004Date20170919104507.php
4820
%%WWWDIR%%/apps/dav/lib/Settings/CalDAVSettings.php
4820
%%WWWDIR%%/apps-pkg/dav/lib/Migration/Version1004Date20170924124212.php
4821
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagMappingNode.php
4821
%%WWWDIR%%/apps-pkg/dav/lib/Migration/Version1004Date20170926103422.php
4822
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagNode.php
4822
%%WWWDIR%%/apps-pkg/dav/lib/RootCollection.php
4823
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagPlugin.php
4823
%%WWWDIR%%/apps-pkg/dav/lib/Server.php
4824
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagsByIdCollection.php
4824
%%WWWDIR%%/apps-pkg/dav/lib/Settings/CalDAVSettings.php
4825
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagsObjectMappingCollection.php
4825
%%WWWDIR%%/apps-pkg/dav/lib/SystemTag/SystemTagMappingNode.php
4826
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagsObjectTypeCollection.php
4826
%%WWWDIR%%/apps-pkg/dav/lib/SystemTag/SystemTagNode.php
4827
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagsRelationsCollection.php
4827
%%WWWDIR%%/apps-pkg/dav/lib/SystemTag/SystemTagPlugin.php
4828
%%WWWDIR%%/apps/dav/lib/Upload/AssemblyStream.php
4828
%%WWWDIR%%/apps-pkg/dav/lib/SystemTag/SystemTagsByIdCollection.php
4829
%%WWWDIR%%/apps/dav/lib/Upload/ChunkingPlugin.php
4829
%%WWWDIR%%/apps-pkg/dav/lib/SystemTag/SystemTagsObjectMappingCollection.php
4830
%%WWWDIR%%/apps/dav/lib/Upload/FutureFile.php
4830
%%WWWDIR%%/apps-pkg/dav/lib/SystemTag/SystemTagsObjectTypeCollection.php
4831
%%WWWDIR%%/apps/dav/lib/Upload/RootCollection.php
4831
%%WWWDIR%%/apps-pkg/dav/lib/SystemTag/SystemTagsRelationsCollection.php
4832
%%WWWDIR%%/apps/dav/lib/Upload/UploadFolder.php
4832
%%WWWDIR%%/apps-pkg/dav/lib/Upload/AssemblyStream.php
4833
%%WWWDIR%%/apps/dav/lib/Upload/UploadHome.php
4833
%%WWWDIR%%/apps-pkg/dav/lib/Upload/ChunkingPlugin.php
4834
%%WWWDIR%%/apps/dav/templates/exception.php
4834
%%WWWDIR%%/apps-pkg/dav/lib/Upload/FutureFile.php
4835
%%WWWDIR%%/apps/dav/templates/settings-admin-caldav.php
4835
%%WWWDIR%%/apps-pkg/dav/lib/Upload/RootCollection.php
4836
%%WWWDIR%%/apps/encryption/appinfo/app.php
4836
%%WWWDIR%%/apps-pkg/dav/lib/Upload/UploadFolder.php
4837
%%WWWDIR%%/apps/encryption/appinfo/info.xml
4837
%%WWWDIR%%/apps-pkg/dav/lib/Upload/UploadHome.php
4838
%%WWWDIR%%/apps/encryption/appinfo/routes.php
4838
%%WWWDIR%%/apps-pkg/dav/templates/exception.php
4839
%%WWWDIR%%/apps/encryption/appinfo/signature.json
4839
%%WWWDIR%%/apps-pkg/dav/templates/settings-admin-caldav.php
4840
%%WWWDIR%%/apps/encryption/composer/autoload.php
4840
%%WWWDIR%%/apps-pkg/encryption/appinfo/app.php
4841
%%WWWDIR%%/apps/encryption/composer/composer.json
4841
%%WWWDIR%%/apps-pkg/encryption/appinfo/info.xml
4842
%%WWWDIR%%/apps/encryption/composer/composer/ClassLoader.php
4842
%%WWWDIR%%/apps-pkg/encryption/appinfo/routes.php
4843
%%WWWDIR%%/apps/encryption/composer/composer/LICENSE
4843
%%WWWDIR%%/apps-pkg/encryption/appinfo/signature.json
4844
%%WWWDIR%%/apps/encryption/composer/composer/autoload_classmap.php
4844
%%WWWDIR%%/apps-pkg/encryption/composer/autoload.php
4845
%%WWWDIR%%/apps/encryption/composer/composer/autoload_namespaces.php
4845
%%WWWDIR%%/apps-pkg/encryption/composer/composer.json
4846
%%WWWDIR%%/apps/encryption/composer/composer/autoload_psr4.php
4846
%%WWWDIR%%/apps-pkg/encryption/composer/composer/ClassLoader.php
4847
%%WWWDIR%%/apps/encryption/composer/composer/autoload_real.php
4847
%%WWWDIR%%/apps-pkg/encryption/composer/composer/LICENSE
4848
%%WWWDIR%%/apps/encryption/composer/composer/autoload_static.php
4848
%%WWWDIR%%/apps-pkg/encryption/composer/composer/autoload_classmap.php
4849
%%WWWDIR%%/apps/encryption/css/settings-admin.css
4849
%%WWWDIR%%/apps-pkg/encryption/composer/composer/autoload_namespaces.php
4850
%%WWWDIR%%/apps/encryption/css/settings-personal.css
4850
%%WWWDIR%%/apps-pkg/encryption/composer/composer/autoload_psr4.php
4851
%%WWWDIR%%/apps/encryption/img/app.svg
4851
%%WWWDIR%%/apps-pkg/encryption/composer/composer/autoload_real.php
4852
%%WWWDIR%%/apps/encryption/js/encryption.js
4852
%%WWWDIR%%/apps-pkg/encryption/composer/composer/autoload_static.php
4853
%%WWWDIR%%/apps/encryption/js/settings-admin.js
4853
%%WWWDIR%%/apps-pkg/encryption/css/settings-admin.css
4854
%%WWWDIR%%/apps/encryption/js/settings-personal.js
4854
%%WWWDIR%%/apps-pkg/encryption/css/settings-personal.css
4855
%%WWWDIR%%/apps/encryption/l10n/.gitkeep
4855
%%WWWDIR%%/apps-pkg/encryption/img/app.svg
4856
%%WWWDIR%%/apps/encryption/l10n/ar.js
4856
%%WWWDIR%%/apps-pkg/encryption/js/encryption.js
4857
%%WWWDIR%%/apps/encryption/l10n/ar.json
4857
%%WWWDIR%%/apps-pkg/encryption/js/settings-admin.js
4858
%%WWWDIR%%/apps/encryption/l10n/ast.js
4858
%%WWWDIR%%/apps-pkg/encryption/js/settings-personal.js
4859
%%WWWDIR%%/apps/encryption/l10n/ast.json
4859
%%WWWDIR%%/apps-pkg/encryption/l10n/.gitkeep
4860
%%WWWDIR%%/apps/encryption/l10n/az.js
4860
%%WWWDIR%%/apps-pkg/encryption/l10n/ar.js
4861
%%WWWDIR%%/apps/encryption/l10n/az.json
4861
%%WWWDIR%%/apps-pkg/encryption/l10n/ar.json
4862
%%WWWDIR%%/apps/encryption/l10n/bg_BG.js
4862
%%WWWDIR%%/apps-pkg/encryption/l10n/ast.js
4863
%%WWWDIR%%/apps/encryption/l10n/bg_BG.json
4863
%%WWWDIR%%/apps-pkg/encryption/l10n/ast.json
4864
%%WWWDIR%%/apps/encryption/l10n/bn_BD.js
4864
%%WWWDIR%%/apps-pkg/encryption/l10n/az.js
4865
%%WWWDIR%%/apps/encryption/l10n/bn_BD.json
4865
%%WWWDIR%%/apps-pkg/encryption/l10n/az.json
4866
%%WWWDIR%%/apps/encryption/l10n/bs.js
4866
%%WWWDIR%%/apps-pkg/encryption/l10n/bg.js
4867
%%WWWDIR%%/apps/encryption/l10n/bs.json
4867
%%WWWDIR%%/apps-pkg/encryption/l10n/bg.json
4868
%%WWWDIR%%/apps/encryption/l10n/ca.js
4868
%%WWWDIR%%/apps-pkg/encryption/l10n/bg_BG.js
4869
%%WWWDIR%%/apps/encryption/l10n/ca.json
4869
%%WWWDIR%%/apps-pkg/encryption/l10n/bg_BG.json
4870
%%WWWDIR%%/apps/encryption/l10n/cs.js
4870
%%WWWDIR%%/apps-pkg/encryption/l10n/bn_BD.js
4871
%%WWWDIR%%/apps/encryption/l10n/cs.json
4871
%%WWWDIR%%/apps-pkg/encryption/l10n/bn_BD.json
4872
%%WWWDIR%%/apps/encryption/l10n/cs_CZ.js
4872
%%WWWDIR%%/apps-pkg/encryption/l10n/bs.js
4873
%%WWWDIR%%/apps/encryption/l10n/cs_CZ.json
4873
%%WWWDIR%%/apps-pkg/encryption/l10n/bs.json
4874
%%WWWDIR%%/apps/encryption/l10n/da.js
4874
%%WWWDIR%%/apps-pkg/encryption/l10n/ca.js
4875
%%WWWDIR%%/apps/encryption/l10n/da.json
4875
%%WWWDIR%%/apps-pkg/encryption/l10n/ca.json
4876
%%WWWDIR%%/apps/encryption/l10n/de.js
4876
%%WWWDIR%%/apps-pkg/encryption/l10n/cs.js
4877
%%WWWDIR%%/apps/encryption/l10n/de.json
4877
%%WWWDIR%%/apps-pkg/encryption/l10n/cs.json
4878
%%WWWDIR%%/apps/encryption/l10n/de_AT.js
4878
%%WWWDIR%%/apps-pkg/encryption/l10n/cs_CZ.js
4879
%%WWWDIR%%/apps/encryption/l10n/de_AT.json
4879
%%WWWDIR%%/apps-pkg/encryption/l10n/cs_CZ.json
4880
%%WWWDIR%%/apps/encryption/l10n/de_DE.js
4880
%%WWWDIR%%/apps-pkg/encryption/l10n/da.js
4881
%%WWWDIR%%/apps/encryption/l10n/de_DE.json
4881
%%WWWDIR%%/apps-pkg/encryption/l10n/da.json
4882
%%WWWDIR%%/apps/encryption/l10n/el.js
4882
%%WWWDIR%%/apps-pkg/encryption/l10n/de.js
4883
%%WWWDIR%%/apps/encryption/l10n/el.json
4883
%%WWWDIR%%/apps-pkg/encryption/l10n/de.json
4884
%%WWWDIR%%/apps/encryption/l10n/en_GB.js
4884
%%WWWDIR%%/apps-pkg/encryption/l10n/de_AT.js
4885
%%WWWDIR%%/apps/encryption/l10n/en_GB.json
4885
%%WWWDIR%%/apps-pkg/encryption/l10n/de_AT.json
4886
%%WWWDIR%%/apps/encryption/l10n/eo.js
4886
%%WWWDIR%%/apps-pkg/encryption/l10n/de_DE.js
4887
%%WWWDIR%%/apps/encryption/l10n/eo.json
4887
%%WWWDIR%%/apps-pkg/encryption/l10n/de_DE.json
4888
%%WWWDIR%%/apps/encryption/l10n/es.js
4888
%%WWWDIR%%/apps-pkg/encryption/l10n/el.js
4889
%%WWWDIR%%/apps/encryption/l10n/es.json
4889
%%WWWDIR%%/apps-pkg/encryption/l10n/el.json
4890
%%WWWDIR%%/apps/encryption/l10n/es_419.js
4890
%%WWWDIR%%/apps-pkg/encryption/l10n/en_GB.js
4891
%%WWWDIR%%/apps/encryption/l10n/es_419.json
4891
%%WWWDIR%%/apps-pkg/encryption/l10n/en_GB.json
4892
%%WWWDIR%%/apps/encryption/l10n/es_AR.js
4892
%%WWWDIR%%/apps-pkg/encryption/l10n/eo.js
4893
%%WWWDIR%%/apps/encryption/l10n/es_AR.json
4893
%%WWWDIR%%/apps-pkg/encryption/l10n/eo.json
4894
%%WWWDIR%%/apps/encryption/l10n/es_CL.js
4894
%%WWWDIR%%/apps-pkg/encryption/l10n/es.js
4895
%%WWWDIR%%/apps/encryption/l10n/es_CL.json
4895
%%WWWDIR%%/apps-pkg/encryption/l10n/es.json
4896
%%WWWDIR%%/apps/encryption/l10n/es_CO.js
4896
%%WWWDIR%%/apps-pkg/encryption/l10n/es_419.js
4897
%%WWWDIR%%/apps/encryption/l10n/es_CO.json
4897
%%WWWDIR%%/apps-pkg/encryption/l10n/es_419.json
4898
%%WWWDIR%%/apps/encryption/l10n/es_CR.js
4898
%%WWWDIR%%/apps-pkg/encryption/l10n/es_AR.js
4899
%%WWWDIR%%/apps/encryption/l10n/es_CR.json
4899
%%WWWDIR%%/apps-pkg/encryption/l10n/es_AR.json
4900
%%WWWDIR%%/apps/encryption/l10n/es_DO.js
4900
%%WWWDIR%%/apps-pkg/encryption/l10n/es_CL.js
4901
%%WWWDIR%%/apps/encryption/l10n/es_DO.json
4901
%%WWWDIR%%/apps-pkg/encryption/l10n/es_CL.json
4902
%%WWWDIR%%/apps/encryption/l10n/es_EC.js
4902
%%WWWDIR%%/apps-pkg/encryption/l10n/es_CO.js
4903
%%WWWDIR%%/apps/encryption/l10n/es_EC.json
4903
%%WWWDIR%%/apps-pkg/encryption/l10n/es_CO.json
4904
%%WWWDIR%%/apps/encryption/l10n/es_GT.js
4904
%%WWWDIR%%/apps-pkg/encryption/l10n/es_CR.js
4905
%%WWWDIR%%/apps/encryption/l10n/es_GT.json
4905
%%WWWDIR%%/apps-pkg/encryption/l10n/es_CR.json
4906
%%WWWDIR%%/apps/encryption/l10n/es_HN.js
4906
%%WWWDIR%%/apps-pkg/encryption/l10n/es_DO.js
4907
%%WWWDIR%%/apps/encryption/l10n/es_HN.json
4907
%%WWWDIR%%/apps-pkg/encryption/l10n/es_DO.json
4908
%%WWWDIR%%/apps/encryption/l10n/es_MX.js
4908
%%WWWDIR%%/apps-pkg/encryption/l10n/es_EC.js
4909
%%WWWDIR%%/apps/encryption/l10n/es_MX.json
4909
%%WWWDIR%%/apps-pkg/encryption/l10n/es_EC.json
4910
%%WWWDIR%%/apps/encryption/l10n/es_NI.js
4910
%%WWWDIR%%/apps-pkg/encryption/l10n/es_GT.js
4911
%%WWWDIR%%/apps/encryption/l10n/es_NI.json
4911
%%WWWDIR%%/apps-pkg/encryption/l10n/es_GT.json
4912
%%WWWDIR%%/apps/encryption/l10n/es_PA.js
4912
%%WWWDIR%%/apps-pkg/encryption/l10n/es_HN.js
4913
%%WWWDIR%%/apps/encryption/l10n/es_PA.json
4913
%%WWWDIR%%/apps-pkg/encryption/l10n/es_HN.json
4914
%%WWWDIR%%/apps/encryption/l10n/es_PE.js
4914
%%WWWDIR%%/apps-pkg/encryption/l10n/es_MX.js
4915
%%WWWDIR%%/apps/encryption/l10n/es_PE.json
4915
%%WWWDIR%%/apps-pkg/encryption/l10n/es_MX.json
4916
%%WWWDIR%%/apps/encryption/l10n/es_PR.js
4916
%%WWWDIR%%/apps-pkg/encryption/l10n/es_NI.js
4917
%%WWWDIR%%/apps/encryption/l10n/es_PR.json
4917
%%WWWDIR%%/apps-pkg/encryption/l10n/es_NI.json
4918
%%WWWDIR%%/apps/encryption/l10n/es_PY.js
4918
%%WWWDIR%%/apps-pkg/encryption/l10n/es_PA.js
4919
%%WWWDIR%%/apps/encryption/l10n/es_PY.json
4919
%%WWWDIR%%/apps-pkg/encryption/l10n/es_PA.json
4920
%%WWWDIR%%/apps/encryption/l10n/es_SV.js
4920
%%WWWDIR%%/apps-pkg/encryption/l10n/es_PE.js
4921
%%WWWDIR%%/apps/encryption/l10n/es_SV.json
4921
%%WWWDIR%%/apps-pkg/encryption/l10n/es_PE.json
4922
%%WWWDIR%%/apps/encryption/l10n/es_UY.js
4922
%%WWWDIR%%/apps-pkg/encryption/l10n/es_PR.js
4923
%%WWWDIR%%/apps/encryption/l10n/es_UY.json
4923
%%WWWDIR%%/apps-pkg/encryption/l10n/es_PR.json
4924
%%WWWDIR%%/apps/encryption/l10n/et_EE.js
4924
%%WWWDIR%%/apps-pkg/encryption/l10n/es_PY.js
4925
%%WWWDIR%%/apps/encryption/l10n/et_EE.json
4925
%%WWWDIR%%/apps-pkg/encryption/l10n/es_PY.json
4926
%%WWWDIR%%/apps/encryption/l10n/eu.js
4926
%%WWWDIR%%/apps-pkg/encryption/l10n/es_SV.js
4927
%%WWWDIR%%/apps/encryption/l10n/eu.json
4927
%%WWWDIR%%/apps-pkg/encryption/l10n/es_SV.json
4928
%%WWWDIR%%/apps/encryption/l10n/fa.js
4928
%%WWWDIR%%/apps-pkg/encryption/l10n/es_UY.js
4929
%%WWWDIR%%/apps/encryption/l10n/fa.json
4929
%%WWWDIR%%/apps-pkg/encryption/l10n/es_UY.json
4930
%%WWWDIR%%/apps/encryption/l10n/fi.js
4930
%%WWWDIR%%/apps-pkg/encryption/l10n/et_EE.js
4931
%%WWWDIR%%/apps/encryption/l10n/fi.json
4931
%%WWWDIR%%/apps-pkg/encryption/l10n/et_EE.json
4932
%%WWWDIR%%/apps/encryption/l10n/fi_FI.js
4932
%%WWWDIR%%/apps-pkg/encryption/l10n/eu.js
4933
%%WWWDIR%%/apps/encryption/l10n/fi_FI.json
4933
%%WWWDIR%%/apps-pkg/encryption/l10n/eu.json
4934
%%WWWDIR%%/apps/encryption/l10n/fr.js
4934
%%WWWDIR%%/apps-pkg/encryption/l10n/fa.js
4935
%%WWWDIR%%/apps/encryption/l10n/fr.json
4935
%%WWWDIR%%/apps-pkg/encryption/l10n/fa.json
4936
%%WWWDIR%%/apps/encryption/l10n/gl.js
4936
%%WWWDIR%%/apps-pkg/encryption/l10n/fi.js
4937
%%WWWDIR%%/apps/encryption/l10n/gl.json
4937
%%WWWDIR%%/apps-pkg/encryption/l10n/fi.json
4938
%%WWWDIR%%/apps/encryption/l10n/he.js
4938
%%WWWDIR%%/apps-pkg/encryption/l10n/fi_FI.js
4939
%%WWWDIR%%/apps/encryption/l10n/he.json
4939
%%WWWDIR%%/apps-pkg/encryption/l10n/fi_FI.json
4940
%%WWWDIR%%/apps/encryption/l10n/hr.js
4940
%%WWWDIR%%/apps-pkg/encryption/l10n/fr.js
4941
%%WWWDIR%%/apps/encryption/l10n/hr.json
4941
%%WWWDIR%%/apps-pkg/encryption/l10n/fr.json
4942
%%WWWDIR%%/apps/encryption/l10n/hu.js
4942
%%WWWDIR%%/apps-pkg/encryption/l10n/gl.js
4943
%%WWWDIR%%/apps/encryption/l10n/hu.json
4943
%%WWWDIR%%/apps-pkg/encryption/l10n/gl.json
4944
%%WWWDIR%%/apps/encryption/l10n/hu_HU.js
4944
%%WWWDIR%%/apps-pkg/encryption/l10n/he.js
4945
%%WWWDIR%%/apps/encryption/l10n/hu_HU.json
4945
%%WWWDIR%%/apps-pkg/encryption/l10n/he.json
4946
%%WWWDIR%%/apps/encryption/l10n/ia.js
4946
%%WWWDIR%%/apps-pkg/encryption/l10n/hr.js
4947
%%WWWDIR%%/apps/encryption/l10n/ia.json
4947
%%WWWDIR%%/apps-pkg/encryption/l10n/hr.json
4948
%%WWWDIR%%/apps/encryption/l10n/id.js
4948
%%WWWDIR%%/apps-pkg/encryption/l10n/hu.js
4949
%%WWWDIR%%/apps/encryption/l10n/id.json
4949
%%WWWDIR%%/apps-pkg/encryption/l10n/hu.json
4950
%%WWWDIR%%/apps/encryption/l10n/is.js
4950
%%WWWDIR%%/apps-pkg/encryption/l10n/hu_HU.js
4951
%%WWWDIR%%/apps/encryption/l10n/is.json
4951
%%WWWDIR%%/apps-pkg/encryption/l10n/hu_HU.json
4952
%%WWWDIR%%/apps/encryption/l10n/it.js
4952
%%WWWDIR%%/apps-pkg/encryption/l10n/ia.js
4953
%%WWWDIR%%/apps/encryption/l10n/it.json
4953
%%WWWDIR%%/apps-pkg/encryption/l10n/ia.json
4954
%%WWWDIR%%/apps/encryption/l10n/ja.js
4954
%%WWWDIR%%/apps-pkg/encryption/l10n/id.js
4955
%%WWWDIR%%/apps/encryption/l10n/ja.json
4955
%%WWWDIR%%/apps-pkg/encryption/l10n/id.json
4956
%%WWWDIR%%/apps/encryption/l10n/ka_GE.js
4956
%%WWWDIR%%/apps-pkg/encryption/l10n/is.js
4957
%%WWWDIR%%/apps/encryption/l10n/ka_GE.json
4957
%%WWWDIR%%/apps-pkg/encryption/l10n/is.json
4958
%%WWWDIR%%/apps/encryption/l10n/km.js
4958
%%WWWDIR%%/apps-pkg/encryption/l10n/it.js
4959
%%WWWDIR%%/apps/encryption/l10n/km.json
4959
%%WWWDIR%%/apps-pkg/encryption/l10n/it.json
4960
%%WWWDIR%%/apps/encryption/l10n/kn.js
4960
%%WWWDIR%%/apps-pkg/encryption/l10n/ja.js
4961
%%WWWDIR%%/apps/encryption/l10n/kn.json
4961
%%WWWDIR%%/apps-pkg/encryption/l10n/ja.json
4962
%%WWWDIR%%/apps/encryption/l10n/ko.js
4962
%%WWWDIR%%/apps-pkg/encryption/l10n/ka_GE.js
4963
%%WWWDIR%%/apps/encryption/l10n/ko.json
4963
%%WWWDIR%%/apps-pkg/encryption/l10n/ka_GE.json
4964
%%WWWDIR%%/apps/encryption/l10n/lb.js
4964
%%WWWDIR%%/apps-pkg/encryption/l10n/km.js
4965
%%WWWDIR%%/apps/encryption/l10n/lb.json
4965
%%WWWDIR%%/apps-pkg/encryption/l10n/km.json
4966
%%WWWDIR%%/apps/encryption/l10n/lt_LT.js
4966
%%WWWDIR%%/apps-pkg/encryption/l10n/kn.js
4967
%%WWWDIR%%/apps/encryption/l10n/lt_LT.json
4967
%%WWWDIR%%/apps-pkg/encryption/l10n/kn.json
4968
%%WWWDIR%%/apps/encryption/l10n/lv.js
4968
%%WWWDIR%%/apps-pkg/encryption/l10n/ko.js
4969
%%WWWDIR%%/apps/encryption/l10n/lv.json
4969
%%WWWDIR%%/apps-pkg/encryption/l10n/ko.json
4970
%%WWWDIR%%/apps/encryption/l10n/mk.js
4970
%%WWWDIR%%/apps-pkg/encryption/l10n/lb.js
4971
%%WWWDIR%%/apps/encryption/l10n/mk.json
4971
%%WWWDIR%%/apps-pkg/encryption/l10n/lb.json
4972
%%WWWDIR%%/apps/encryption/l10n/nb.js
4972
%%WWWDIR%%/apps-pkg/encryption/l10n/lt_LT.js
4973
%%WWWDIR%%/apps/encryption/l10n/nb.json
4973
%%WWWDIR%%/apps-pkg/encryption/l10n/lt_LT.json
4974
%%WWWDIR%%/apps/encryption/l10n/nb_NO.js
4974
%%WWWDIR%%/apps-pkg/encryption/l10n/lv.js
4975
%%WWWDIR%%/apps/encryption/l10n/nb_NO.json
4975
%%WWWDIR%%/apps-pkg/encryption/l10n/lv.json
4976
%%WWWDIR%%/apps/encryption/l10n/nl.js
4976
%%WWWDIR%%/apps-pkg/encryption/l10n/mk.js
4977
%%WWWDIR%%/apps/encryption/l10n/nl.json
4977
%%WWWDIR%%/apps-pkg/encryption/l10n/mk.json
4978
%%WWWDIR%%/apps/encryption/l10n/oc.js
4978
%%WWWDIR%%/apps-pkg/encryption/l10n/nb.js
4979
%%WWWDIR%%/apps/encryption/l10n/oc.json
4979
%%WWWDIR%%/apps-pkg/encryption/l10n/nb.json
4980
%%WWWDIR%%/apps/encryption/l10n/pl.js
4980
%%WWWDIR%%/apps-pkg/encryption/l10n/nb_NO.js
4981
%%WWWDIR%%/apps/encryption/l10n/pl.json
4981
%%WWWDIR%%/apps-pkg/encryption/l10n/nb_NO.json
4982
%%WWWDIR%%/apps/encryption/l10n/pt_BR.js
4982
%%WWWDIR%%/apps-pkg/encryption/l10n/nl.js
4983
%%WWWDIR%%/apps/encryption/l10n/pt_BR.json
4983
%%WWWDIR%%/apps-pkg/encryption/l10n/nl.json
4984
%%WWWDIR%%/apps/encryption/l10n/pt_PT.js
4984
%%WWWDIR%%/apps-pkg/encryption/l10n/oc.js
4985
%%WWWDIR%%/apps/encryption/l10n/pt_PT.json
4985
%%WWWDIR%%/apps-pkg/encryption/l10n/oc.json
4986
%%WWWDIR%%/apps/encryption/l10n/ro.js
4986
%%WWWDIR%%/apps-pkg/encryption/l10n/pl.js
4987
%%WWWDIR%%/apps/encryption/l10n/ro.json
4987
%%WWWDIR%%/apps-pkg/encryption/l10n/pl.json
4988
%%WWWDIR%%/apps/encryption/l10n/ru.js
4988
%%WWWDIR%%/apps-pkg/encryption/l10n/pt_BR.js
4989
%%WWWDIR%%/apps/encryption/l10n/ru.json
4989
%%WWWDIR%%/apps-pkg/encryption/l10n/pt_BR.json
4990
%%WWWDIR%%/apps/encryption/l10n/sk.js
4990
%%WWWDIR%%/apps-pkg/encryption/l10n/pt_PT.js
4991
%%WWWDIR%%/apps/encryption/l10n/sk.json
4991
%%WWWDIR%%/apps-pkg/encryption/l10n/pt_PT.json
4992
%%WWWDIR%%/apps/encryption/l10n/sk_SK.js
4992
%%WWWDIR%%/apps-pkg/encryption/l10n/ro.js
4993
%%WWWDIR%%/apps/encryption/l10n/sk_SK.json
4993
%%WWWDIR%%/apps-pkg/encryption/l10n/ro.json
4994
%%WWWDIR%%/apps/encryption/l10n/sl.js
4994
%%WWWDIR%%/apps-pkg/encryption/l10n/ru.js
4995
%%WWWDIR%%/apps/encryption/l10n/sl.json
4995
%%WWWDIR%%/apps-pkg/encryption/l10n/ru.json
4996
%%WWWDIR%%/apps/encryption/l10n/sq.js
4996
%%WWWDIR%%/apps-pkg/encryption/l10n/sk.js
4997
%%WWWDIR%%/apps/encryption/l10n/sq.json
4997
%%WWWDIR%%/apps-pkg/encryption/l10n/sk.json
4998
%%WWWDIR%%/apps/encryption/l10n/sr.js
4998
%%WWWDIR%%/apps-pkg/encryption/l10n/sk_SK.js
4999
%%WWWDIR%%/apps/encryption/l10n/sr.json
4999
%%WWWDIR%%/apps-pkg/encryption/l10n/sk_SK.json
5000
%%WWWDIR%%/apps/encryption/l10n/sr@latin.js
5000
%%WWWDIR%%/apps-pkg/encryption/l10n/sl.js
5001
%%WWWDIR%%/apps/encryption/l10n/sr@latin.json
5001
%%WWWDIR%%/apps-pkg/encryption/l10n/sl.json
5002
%%WWWDIR%%/apps/encryption/l10n/sv.js
5002
%%WWWDIR%%/apps-pkg/encryption/l10n/sq.js
5003
%%WWWDIR%%/apps/encryption/l10n/sv.json
5003
%%WWWDIR%%/apps-pkg/encryption/l10n/sq.json
5004
%%WWWDIR%%/apps/encryption/l10n/th.js
5004
%%WWWDIR%%/apps-pkg/encryption/l10n/sr.js
5005
%%WWWDIR%%/apps/encryption/l10n/th.json
5005
%%WWWDIR%%/apps-pkg/encryption/l10n/sr.json
5006
%%WWWDIR%%/apps/encryption/l10n/th_TH.js
5006
%%WWWDIR%%/apps-pkg/encryption/l10n/sr@latin.js
5007
%%WWWDIR%%/apps/encryption/l10n/th_TH.json
5007
%%WWWDIR%%/apps-pkg/encryption/l10n/sr@latin.json
5008
%%WWWDIR%%/apps/encryption/l10n/tr.js
5008
%%WWWDIR%%/apps-pkg/encryption/l10n/sv.js
5009
%%WWWDIR%%/apps/encryption/l10n/tr.json
5009
%%WWWDIR%%/apps-pkg/encryption/l10n/sv.json
5010
%%WWWDIR%%/apps/encryption/l10n/uk.js
5010
%%WWWDIR%%/apps-pkg/encryption/l10n/th.js
5011
%%WWWDIR%%/apps/encryption/l10n/uk.json
5011
%%WWWDIR%%/apps-pkg/encryption/l10n/th.json
5012
%%WWWDIR%%/apps/encryption/l10n/ur_PK.js
5012
%%WWWDIR%%/apps-pkg/encryption/l10n/th_TH.js
5013
%%WWWDIR%%/apps/encryption/l10n/ur_PK.json
5013
%%WWWDIR%%/apps-pkg/encryption/l10n/th_TH.json
5014
%%WWWDIR%%/apps/encryption/l10n/vi.js
5014
%%WWWDIR%%/apps-pkg/encryption/l10n/tr.js
5015
%%WWWDIR%%/apps/encryption/l10n/vi.json
5015
%%WWWDIR%%/apps-pkg/encryption/l10n/tr.json
5016
%%WWWDIR%%/apps/encryption/l10n/zh_CN.js
5016
%%WWWDIR%%/apps-pkg/encryption/l10n/uk.js
5017
%%WWWDIR%%/apps/encryption/l10n/zh_CN.json
5017
%%WWWDIR%%/apps-pkg/encryption/l10n/uk.json
5018
%%WWWDIR%%/apps/encryption/l10n/zh_HK.js
5018
%%WWWDIR%%/apps-pkg/encryption/l10n/ur_PK.js
5019
%%WWWDIR%%/apps/encryption/l10n/zh_HK.json
5019
%%WWWDIR%%/apps-pkg/encryption/l10n/ur_PK.json
5020
%%WWWDIR%%/apps/encryption/l10n/zh_TW.js
5020
%%WWWDIR%%/apps-pkg/encryption/l10n/vi.js
5021
%%WWWDIR%%/apps/encryption/l10n/zh_TW.json
5021
%%WWWDIR%%/apps-pkg/encryption/l10n/vi.json
5022
%%WWWDIR%%/apps/encryption/lib/AppInfo/Application.php
5022
%%WWWDIR%%/apps-pkg/encryption/l10n/zh_CN.js
5023
%%WWWDIR%%/apps/encryption/lib/Command/DisableMasterKey.php
5023
%%WWWDIR%%/apps-pkg/encryption/l10n/zh_CN.json
5024
%%WWWDIR%%/apps/encryption/lib/Command/EnableMasterKey.php
5024
%%WWWDIR%%/apps-pkg/encryption/l10n/zh_HK.js
5025
%%WWWDIR%%/apps/encryption/lib/Command/MigrateKeys.php
5025
%%WWWDIR%%/apps-pkg/encryption/l10n/zh_HK.json
5026
%%WWWDIR%%/apps/encryption/lib/Controller/RecoveryController.php
5026
%%WWWDIR%%/apps-pkg/encryption/l10n/zh_TW.js
5027
%%WWWDIR%%/apps/encryption/lib/Controller/SettingsController.php
5027
%%WWWDIR%%/apps-pkg/encryption/l10n/zh_TW.json
5028
%%WWWDIR%%/apps/encryption/lib/Controller/StatusController.php
5028
%%WWWDIR%%/apps-pkg/encryption/lib/AppInfo/Application.php
5029
%%WWWDIR%%/apps/encryption/lib/Crypto/Crypt.php
5029
%%WWWDIR%%/apps-pkg/encryption/lib/Command/DisableMasterKey.php
5030
%%WWWDIR%%/apps/encryption/lib/Crypto/DecryptAll.php
5030
%%WWWDIR%%/apps-pkg/encryption/lib/Command/EnableMasterKey.php
5031
%%WWWDIR%%/apps/encryption/lib/Crypto/EncryptAll.php
5031
%%WWWDIR%%/apps-pkg/encryption/lib/Command/MigrateKeys.php
5032
%%WWWDIR%%/apps/encryption/lib/Crypto/Encryption.php
5032
%%WWWDIR%%/apps-pkg/encryption/lib/Controller/RecoveryController.php
5033
%%WWWDIR%%/apps/encryption/lib/Exceptions/MultiKeyDecryptException.php
5033
%%WWWDIR%%/apps-pkg/encryption/lib/Controller/SettingsController.php
5034
%%WWWDIR%%/apps/encryption/lib/Exceptions/MultiKeyEncryptException.php
5034
%%WWWDIR%%/apps-pkg/encryption/lib/Controller/StatusController.php
5035
%%WWWDIR%%/apps/encryption/lib/Exceptions/PrivateKeyMissingException.php
5035
%%WWWDIR%%/apps-pkg/encryption/lib/Crypto/Crypt.php
5036
%%WWWDIR%%/apps/encryption/lib/Exceptions/PublicKeyMissingException.php
5036
%%WWWDIR%%/apps-pkg/encryption/lib/Crypto/DecryptAll.php
5037
%%WWWDIR%%/apps/encryption/lib/HookManager.php
5037
%%WWWDIR%%/apps-pkg/encryption/lib/Crypto/EncryptAll.php
5038
%%WWWDIR%%/apps/encryption/lib/Hooks/Contracts/IHook.php
5038
%%WWWDIR%%/apps-pkg/encryption/lib/Crypto/Encryption.php
5039
%%WWWDIR%%/apps/encryption/lib/Hooks/UserHooks.php
5039
%%WWWDIR%%/apps-pkg/encryption/lib/Exceptions/MultiKeyDecryptException.php
5040
%%WWWDIR%%/apps/encryption/lib/KeyManager.php
5040
%%WWWDIR%%/apps-pkg/encryption/lib/Exceptions/MultiKeyEncryptException.php
5041
%%WWWDIR%%/apps/encryption/lib/Migration.php
5041
%%WWWDIR%%/apps-pkg/encryption/lib/Exceptions/PrivateKeyMissingException.php
5042
%%WWWDIR%%/apps/encryption/lib/Migration/SetMasterKeyStatus.php
5042
%%WWWDIR%%/apps-pkg/encryption/lib/Exceptions/PublicKeyMissingException.php
5043
%%WWWDIR%%/apps/encryption/lib/Recovery.php
5043
%%WWWDIR%%/apps-pkg/encryption/lib/HookManager.php
5044
%%WWWDIR%%/apps/encryption/lib/Session.php
5044
%%WWWDIR%%/apps-pkg/encryption/lib/Hooks/Contracts/IHook.php
5045
%%WWWDIR%%/apps/encryption/lib/Settings/Admin.php
5045
%%WWWDIR%%/apps-pkg/encryption/lib/Hooks/UserHooks.php
5046
%%WWWDIR%%/apps/encryption/lib/Settings/Personal.php
5046
%%WWWDIR%%/apps-pkg/encryption/lib/KeyManager.php
5047
%%WWWDIR%%/apps/encryption/lib/Users/Setup.php
5047
%%WWWDIR%%/apps-pkg/encryption/lib/Migration.php
5048
%%WWWDIR%%/apps/encryption/lib/Util.php
5048
%%WWWDIR%%/apps-pkg/encryption/lib/Migration/SetMasterKeyStatus.php
5049
%%WWWDIR%%/apps/encryption/templates/altmail.php
5049
%%WWWDIR%%/apps-pkg/encryption/lib/Recovery.php
5050
%%WWWDIR%%/apps/encryption/templates/mail.php
5050
%%WWWDIR%%/apps-pkg/encryption/lib/Session.php
5051
%%WWWDIR%%/apps/encryption/templates/settings-admin.php
5051
%%WWWDIR%%/apps-pkg/encryption/lib/Settings/Admin.php
5052
%%WWWDIR%%/apps/encryption/templates/settings-personal.php
5052
%%WWWDIR%%/apps-pkg/encryption/lib/Settings/Personal.php
5053
%%WWWDIR%%/apps/federatedfilesharing/appinfo/app.php
5053
%%WWWDIR%%/apps-pkg/encryption/lib/Users/Setup.php
5054
%%WWWDIR%%/apps/federatedfilesharing/appinfo/database.xml
5054
%%WWWDIR%%/apps-pkg/encryption/lib/Util.php
5055
%%WWWDIR%%/apps/federatedfilesharing/appinfo/info.xml
5055
%%WWWDIR%%/apps-pkg/encryption/templates/altmail.php
5056
%%WWWDIR%%/apps/federatedfilesharing/appinfo/routes.php
5056
%%WWWDIR%%/apps-pkg/encryption/templates/mail.php
5057
%%WWWDIR%%/apps/federatedfilesharing/appinfo/signature.json
5057
%%WWWDIR%%/apps-pkg/encryption/templates/settings-admin.php
5058
%%WWWDIR%%/apps/federatedfilesharing/composer/autoload.php
5058
%%WWWDIR%%/apps-pkg/encryption/templates/settings-personal.php
5059
%%WWWDIR%%/apps/federatedfilesharing/composer/composer.json
5059
%%WWWDIR%%/apps-pkg/federatedfilesharing/appinfo/app.php
5060
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/ClassLoader.php
5060
%%WWWDIR%%/apps-pkg/federatedfilesharing/appinfo/database.xml
5061
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/LICENSE
5061
%%WWWDIR%%/apps-pkg/federatedfilesharing/appinfo/info.xml
5062
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_classmap.php
5062
%%WWWDIR%%/apps-pkg/federatedfilesharing/appinfo/routes.php
5063
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_namespaces.php
5063
%%WWWDIR%%/apps-pkg/federatedfilesharing/appinfo/signature.json
5064
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_psr4.php
5064
%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/autoload.php
5065
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_real.php
5065
%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer.json
5066
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_static.php
5066
%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer/ClassLoader.php
5067
%%WWWDIR%%/apps/federatedfilesharing/css/settings-personal.css
5067
%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer/LICENSE
5068
%%WWWDIR%%/apps/federatedfilesharing/img/social-diaspora.svg
5068
%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer/autoload_classmap.php
5069
%%WWWDIR%%/apps/federatedfilesharing/img/social-facebook.svg
5069
%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer/autoload_namespaces.php
5070
%%WWWDIR%%/apps/federatedfilesharing/img/social-googleplus.svg
5070
%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer/autoload_psr4.php
5071
%%WWWDIR%%/apps/federatedfilesharing/img/social-twitter.svg
5071
%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer/autoload_real.php
5072
%%WWWDIR%%/apps/federatedfilesharing/js/external.js
5072
%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer/autoload_static.php
5073
%%WWWDIR%%/apps/federatedfilesharing/js/settings-admin.js
5073
%%WWWDIR%%/apps-pkg/federatedfilesharing/css/settings-personal.css
5074
%%WWWDIR%%/apps/federatedfilesharing/js/settings-personal.js
5074
%%WWWDIR%%/apps-pkg/federatedfilesharing/img/social-diaspora.svg
5075
%%WWWDIR%%/apps/federatedfilesharing/l10n/.gitkeep
5075
%%WWWDIR%%/apps-pkg/federatedfilesharing/img/social-facebook.svg
5076
%%WWWDIR%%/apps/federatedfilesharing/l10n/ar.js
5076
%%WWWDIR%%/apps-pkg/federatedfilesharing/img/social-googleplus.svg
5077
%%WWWDIR%%/apps/federatedfilesharing/l10n/ar.json
5077
%%WWWDIR%%/apps-pkg/federatedfilesharing/img/social-twitter.svg
5078
%%WWWDIR%%/apps/federatedfilesharing/l10n/ast.js
5078
%%WWWDIR%%/apps-pkg/federatedfilesharing/js/external.js
5079
%%WWWDIR%%/apps/federatedfilesharing/l10n/ast.json
5079
%%WWWDIR%%/apps-pkg/federatedfilesharing/js/settings-admin.js
5080
%%WWWDIR%%/apps/federatedfilesharing/l10n/az.js
5080
%%WWWDIR%%/apps-pkg/federatedfilesharing/js/settings-personal.js
5081
%%WWWDIR%%/apps/federatedfilesharing/l10n/az.json
5081
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/.gitkeep
5082
%%WWWDIR%%/apps/federatedfilesharing/l10n/bg_BG.js
5082
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ar.js
5083
%%WWWDIR%%/apps/federatedfilesharing/l10n/bg_BG.json
5083
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ar.json
5084
%%WWWDIR%%/apps/federatedfilesharing/l10n/ca.js
5084
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ast.js
5085
%%WWWDIR%%/apps/federatedfilesharing/l10n/ca.json
5085
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ast.json
5086
%%WWWDIR%%/apps/federatedfilesharing/l10n/cs.js
5086
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/az.js
5087
%%WWWDIR%%/apps/federatedfilesharing/l10n/cs.json
5087
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/az.json
5088
%%WWWDIR%%/apps/federatedfilesharing/l10n/cs_CZ.js
5088
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/bg.js
5089
%%WWWDIR%%/apps/federatedfilesharing/l10n/cs_CZ.json
5089
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/bg.json
5090
%%WWWDIR%%/apps/federatedfilesharing/l10n/da.js
5090
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/bg_BG.js
5091
%%WWWDIR%%/apps/federatedfilesharing/l10n/da.json
5091
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/bg_BG.json
5092
%%WWWDIR%%/apps/federatedfilesharing/l10n/de.js
5092
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ca.js
5093
%%WWWDIR%%/apps/federatedfilesharing/l10n/de.json
5093
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ca.json
5094
%%WWWDIR%%/apps/federatedfilesharing/l10n/de_DE.js
5094
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/cs.js
5095
%%WWWDIR%%/apps/federatedfilesharing/l10n/de_DE.json
5095
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/cs.json
5096
%%WWWDIR%%/apps/federatedfilesharing/l10n/el.js
5096
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/cs_CZ.js
5097
%%WWWDIR%%/apps/federatedfilesharing/l10n/el.json
5097
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/cs_CZ.json
5098
%%WWWDIR%%/apps/federatedfilesharing/l10n/en_GB.js
5098
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/da.js
5099
%%WWWDIR%%/apps/federatedfilesharing/l10n/en_GB.json
5099
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/da.json
5100
%%WWWDIR%%/apps/federatedfilesharing/l10n/eo.js
5100
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/de.js
5101
%%WWWDIR%%/apps/federatedfilesharing/l10n/eo.json
5101
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/de.json
5102
%%WWWDIR%%/apps/federatedfilesharing/l10n/es.js
5102
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/de_DE.js
5103
%%WWWDIR%%/apps/federatedfilesharing/l10n/es.json
5103
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/de_DE.json
5104
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_419.js
5104
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/el.js
5105
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_419.json
5105
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/el.json
5106
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_AR.js
5106
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/en_GB.js
5107
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_AR.json
5107
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/en_GB.json
5108
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_CL.js
5108
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/eo.js
5109
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_CL.json
5109
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/eo.json
5110
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_CO.js
5110
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es.js
5111
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_CO.json
5111
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es.json
5112
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_CR.js
5112
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_419.js
5113
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_CR.json
5113
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_419.json
5114
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_DO.js
5114
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_AR.js
5115
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_DO.json
5115
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_AR.json
5116
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_EC.js
5116
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_CL.js
5117
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_EC.json
5117
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_CL.json
5118
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_GT.js
5118
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_CO.js
5119
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_GT.json
5119
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_CO.json
5120
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_HN.js
5120
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_CR.js
5121
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_HN.json
5121
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_CR.json
5122
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_MX.js
5122
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_DO.js
5123
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_MX.json
5123
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_DO.json
5124
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_NI.js
5124
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_EC.js
5125
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_NI.json
5125
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_EC.json
5126
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PA.js
5126
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_GT.js
5127
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PA.json
5127
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_GT.json
5128
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PE.js
5128
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_HN.js
5129
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PE.json
5129
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_HN.json
5130
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PR.js
5130
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_MX.js
5131
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PR.json
5131
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_MX.json
5132
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PY.js
5132
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_NI.js
5133
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PY.json
5133
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_NI.json
5134
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_SV.js
5134
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PA.js
5135
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_SV.json
5135
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PA.json
5136
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_UY.js
5136
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PE.js
5137
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_UY.json
5137
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PE.json
5138
%%WWWDIR%%/apps/federatedfilesharing/l10n/et_EE.js
5138
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PR.js
5139
%%WWWDIR%%/apps/federatedfilesharing/l10n/et_EE.json
5139
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PR.json
5140
%%WWWDIR%%/apps/federatedfilesharing/l10n/eu.js
5140
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PY.js
5141
%%WWWDIR%%/apps/federatedfilesharing/l10n/eu.json
5141
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PY.json
5142
%%WWWDIR%%/apps/federatedfilesharing/l10n/fa.js
5142
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_SV.js
5143
%%WWWDIR%%/apps/federatedfilesharing/l10n/fa.json
5143
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_SV.json
5144
%%WWWDIR%%/apps/federatedfilesharing/l10n/fi.js
5144
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_UY.js
5145
%%WWWDIR%%/apps/federatedfilesharing/l10n/fi.json
5145
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_UY.json
5146
%%WWWDIR%%/apps/federatedfilesharing/l10n/fi_FI.js
5146
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/et_EE.js
5147
%%WWWDIR%%/apps/federatedfilesharing/l10n/fi_FI.json
5147
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/et_EE.json
5148
%%WWWDIR%%/apps/federatedfilesharing/l10n/fr.js
5148
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/eu.js
5149
%%WWWDIR%%/apps/federatedfilesharing/l10n/fr.json
5149
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/eu.json
5150
%%WWWDIR%%/apps/federatedfilesharing/l10n/gl.js
5150
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fa.js
5151
%%WWWDIR%%/apps/federatedfilesharing/l10n/gl.json
5151
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fa.json
5152
%%WWWDIR%%/apps/federatedfilesharing/l10n/he.js
5152
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fi.js
5153
%%WWWDIR%%/apps/federatedfilesharing/l10n/he.json
5153
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fi.json
5154
%%WWWDIR%%/apps/federatedfilesharing/l10n/hr.js
5154
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fi_FI.js
5155
%%WWWDIR%%/apps/federatedfilesharing/l10n/hr.json
5155
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fi_FI.json
5156
%%WWWDIR%%/apps/federatedfilesharing/l10n/hu.js
5156
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fr.js
5157
%%WWWDIR%%/apps/federatedfilesharing/l10n/hu.json
5157
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fr.json
5158
%%WWWDIR%%/apps/federatedfilesharing/l10n/hu_HU.js
5158
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/gl.js
5159
%%WWWDIR%%/apps/federatedfilesharing/l10n/hu_HU.json
5159
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/gl.json
5160
%%WWWDIR%%/apps/federatedfilesharing/l10n/ia.js
5160
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/he.js
5161
%%WWWDIR%%/apps/federatedfilesharing/l10n/ia.json
5161
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/he.json
5162
%%WWWDIR%%/apps/federatedfilesharing/l10n/id.js
5162
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/hr.js
5163
%%WWWDIR%%/apps/federatedfilesharing/l10n/id.json
5163
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/hr.json
5164
%%WWWDIR%%/apps/federatedfilesharing/l10n/is.js
5164
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/hu.js
5165
%%WWWDIR%%/apps/federatedfilesharing/l10n/is.json
5165
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/hu.json
5166
%%WWWDIR%%/apps/federatedfilesharing/l10n/it.js
5166
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/hu_HU.js
5167
%%WWWDIR%%/apps/federatedfilesharing/l10n/it.json
5167
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/hu_HU.json
5168
%%WWWDIR%%/apps/federatedfilesharing/l10n/ja.js
5168
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ia.js
5169
%%WWWDIR%%/apps/federatedfilesharing/l10n/ja.json
5169
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ia.json
5170
%%WWWDIR%%/apps/federatedfilesharing/l10n/ka_GE.js
5170
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/id.js
5171
%%WWWDIR%%/apps/federatedfilesharing/l10n/ka_GE.json
5171
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/id.json
5172
%%WWWDIR%%/apps/federatedfilesharing/l10n/ko.js
5172
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/is.js
5173
%%WWWDIR%%/apps/federatedfilesharing/l10n/ko.json
5173
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/is.json
5174
%%WWWDIR%%/apps/federatedfilesharing/l10n/lb.js
5174
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/it.js
5175
%%WWWDIR%%/apps/federatedfilesharing/l10n/lb.json
5175
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/it.json
5176
%%WWWDIR%%/apps/federatedfilesharing/l10n/lt_LT.js
5176
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ja.js
5177
%%WWWDIR%%/apps/federatedfilesharing/l10n/lt_LT.json
5177
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ja.json
5178
%%WWWDIR%%/apps/federatedfilesharing/l10n/lv.js
5178
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ka_GE.js
5179
%%WWWDIR%%/apps/federatedfilesharing/l10n/lv.json
5179
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ka_GE.json
5180
%%WWWDIR%%/apps/federatedfilesharing/l10n/mk.js
5180
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ko.js
5181
%%WWWDIR%%/apps/federatedfilesharing/l10n/mk.json
5181
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ko.json
5182
%%WWWDIR%%/apps/federatedfilesharing/l10n/nb.js
5182
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/lb.js
5183
%%WWWDIR%%/apps/federatedfilesharing/l10n/nb.json
5183
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/lb.json
5184
%%WWWDIR%%/apps/federatedfilesharing/l10n/nb_NO.js
5184
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/lt_LT.js
5185
%%WWWDIR%%/apps/federatedfilesharing/l10n/nb_NO.json
5185
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/lt_LT.json
5186
%%WWWDIR%%/apps/federatedfilesharing/l10n/nl.js
5186
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/lv.js
5187
%%WWWDIR%%/apps/federatedfilesharing/l10n/nl.json
5187
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/lv.json
5188
%%WWWDIR%%/apps/federatedfilesharing/l10n/oc.js
5188
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/mk.js
5189
%%WWWDIR%%/apps/federatedfilesharing/l10n/oc.json
5189
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/mk.json
5190
%%WWWDIR%%/apps/federatedfilesharing/l10n/pl.js
5190
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/nb.js
5191
%%WWWDIR%%/apps/federatedfilesharing/l10n/pl.json
5191
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/nb.json
5192
%%WWWDIR%%/apps/federatedfilesharing/l10n/pt_BR.js
5192
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/nb_NO.js
5193
%%WWWDIR%%/apps/federatedfilesharing/l10n/pt_BR.json
5193
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/nb_NO.json
5194
%%WWWDIR%%/apps/federatedfilesharing/l10n/pt_PT.js
5194
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/nl.js
5195
%%WWWDIR%%/apps/federatedfilesharing/l10n/pt_PT.json
5195
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/nl.json
5196
%%WWWDIR%%/apps/federatedfilesharing/l10n/ro.js
5196
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/oc.js
5197
%%WWWDIR%%/apps/federatedfilesharing/l10n/ro.json
5197
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/oc.json
5198
%%WWWDIR%%/apps/federatedfilesharing/l10n/ru.js
5198
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/pl.js
5199
%%WWWDIR%%/apps/federatedfilesharing/l10n/ru.json
5199
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/pl.json
5200
%%WWWDIR%%/apps/federatedfilesharing/l10n/sk.js
5200
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/pt_BR.js
5201
%%WWWDIR%%/apps/federatedfilesharing/l10n/sk.json
5201
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/pt_BR.json
5202
%%WWWDIR%%/apps/federatedfilesharing/l10n/sk_SK.js
5202
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/pt_PT.js
5203
%%WWWDIR%%/apps/federatedfilesharing/l10n/sk_SK.json
5203
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/pt_PT.json
5204
%%WWWDIR%%/apps/federatedfilesharing/l10n/sl.js
5204
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ro.js
5205
%%WWWDIR%%/apps/federatedfilesharing/l10n/sl.json
5205
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ro.json
5206
%%WWWDIR%%/apps/federatedfilesharing/l10n/sq.js
5206
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ru.js
5207
%%WWWDIR%%/apps/federatedfilesharing/l10n/sq.json
5207
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ru.json
5208
%%WWWDIR%%/apps/federatedfilesharing/l10n/sr.js
5208
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sk.js
5209
%%WWWDIR%%/apps/federatedfilesharing/l10n/sr.json
5209
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sk.json
5210
%%WWWDIR%%/apps/federatedfilesharing/l10n/sr@latin.js
5210
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sk_SK.js
5211
%%WWWDIR%%/apps/federatedfilesharing/l10n/sr@latin.json
5211
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sk_SK.json
5212
%%WWWDIR%%/apps/federatedfilesharing/l10n/sv.js
5212
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sl.js
5213
%%WWWDIR%%/apps/federatedfilesharing/l10n/sv.json
5213
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sl.json
5214
%%WWWDIR%%/apps/federatedfilesharing/l10n/th_TH.js
5214
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sq.js
5215
%%WWWDIR%%/apps/federatedfilesharing/l10n/th_TH.json
5215
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sq.json
5216
%%WWWDIR%%/apps/federatedfilesharing/l10n/tr.js
5216
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sr.js
5217
%%WWWDIR%%/apps/federatedfilesharing/l10n/tr.json
5217
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sr.json
5218
%%WWWDIR%%/apps/federatedfilesharing/l10n/uk.js
5218
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sr@latin.js
5219
%%WWWDIR%%/apps/federatedfilesharing/l10n/uk.json
5219
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sr@latin.json
5220
%%WWWDIR%%/apps/federatedfilesharing/l10n/zh_CN.js
5220
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sv.js
5221
%%WWWDIR%%/apps/federatedfilesharing/l10n/zh_CN.json
5221
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sv.json
5222
%%WWWDIR%%/apps/federatedfilesharing/l10n/zh_TW.js
5222
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/th_TH.js
5223
%%WWWDIR%%/apps/federatedfilesharing/l10n/zh_TW.json
5223
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/th_TH.json
5224
%%WWWDIR%%/apps/federatedfilesharing/lib/AddressHandler.php
5224
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/tr.js
5225
%%WWWDIR%%/apps/federatedfilesharing/lib/AppInfo/Application.php
5225
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/tr.json
5226
%%WWWDIR%%/apps/federatedfilesharing/lib/BackgroundJob/RetryJob.php
5226
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/uk.js
5227
%%WWWDIR%%/apps/federatedfilesharing/lib/Controller/MountPublicLinkController.php
5227
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/uk.json
5228
%%WWWDIR%%/apps/federatedfilesharing/lib/Controller/RequestHandlerController.php
5228
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/zh_CN.js
5229
%%WWWDIR%%/apps/federatedfilesharing/lib/FederatedShareProvider.php
5229
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/zh_CN.json
5230
%%WWWDIR%%/apps/federatedfilesharing/lib/Notifications.php
5230
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/zh_TW.js
5231
%%WWWDIR%%/apps/federatedfilesharing/lib/Notifier.php
5231
%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/zh_TW.json
5232
%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/Admin.php
5232
%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/AddressHandler.php
5233
%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/Personal.php
5233
%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/AppInfo/Application.php
5234
%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/PersonalSection.php
5234
%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/BackgroundJob/RetryJob.php
5235
%%WWWDIR%%/apps/federatedfilesharing/lib/TokenHandler.php
5235
%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/Controller/MountPublicLinkController.php
5236
%%WWWDIR%%/apps/federatedfilesharing/templates/settings-admin.php
5236
%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/Controller/RequestHandlerController.php
5237
%%WWWDIR%%/apps/federatedfilesharing/templates/settings-personal.php
5237
%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/FederatedShareProvider.php
5238
%%WWWDIR%%/apps/federation/appinfo/app.php
5238
%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/Notifications.php
5239
%%WWWDIR%%/apps/federation/appinfo/database.xml
5239
%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/Notifier.php
5240
%%WWWDIR%%/apps/federation/appinfo/info.xml
5240
%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/Settings/Admin.php
5241
%%WWWDIR%%/apps/federation/appinfo/routes.php
5241
%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/Settings/Personal.php
5242
%%WWWDIR%%/apps/federation/appinfo/signature.json
5242
%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/Settings/PersonalSection.php
5243
%%WWWDIR%%/apps/federation/composer/autoload.php
5243
%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/TokenHandler.php
5244
%%WWWDIR%%/apps/federation/composer/composer.json
5244
%%WWWDIR%%/apps-pkg/federatedfilesharing/templates/settings-admin.php
5245
%%WWWDIR%%/apps/federation/composer/composer/ClassLoader.php
5245
%%WWWDIR%%/apps-pkg/federatedfilesharing/templates/settings-personal.php
5246
%%WWWDIR%%/apps/federation/composer/composer/LICENSE
5246
%%WWWDIR%%/apps-pkg/federation/appinfo/app.php
5247
%%WWWDIR%%/apps/federation/composer/composer/autoload_classmap.php
5247
%%WWWDIR%%/apps-pkg/federation/appinfo/database.xml
5248
%%WWWDIR%%/apps/federation/composer/composer/autoload_namespaces.php
5248
%%WWWDIR%%/apps-pkg/federation/appinfo/info.xml
5249
%%WWWDIR%%/apps/federation/composer/composer/autoload_psr4.php
5249
%%WWWDIR%%/apps-pkg/federation/appinfo/routes.php
5250
%%WWWDIR%%/apps/federation/composer/composer/autoload_real.php
5250
%%WWWDIR%%/apps-pkg/federation/appinfo/signature.json
5251
%%WWWDIR%%/apps/federation/composer/composer/autoload_static.php
5251
%%WWWDIR%%/apps-pkg/federation/composer/autoload.php
5252
%%WWWDIR%%/apps/federation/css/settings-admin.css
5252
%%WWWDIR%%/apps-pkg/federation/composer/composer.json
5253
%%WWWDIR%%/apps/federation/img/app.svg
5253
%%WWWDIR%%/apps-pkg/federation/composer/composer/ClassLoader.php
5254
%%WWWDIR%%/apps/federation/js/settings-admin.js
5254
%%WWWDIR%%/apps-pkg/federation/composer/composer/LICENSE
5255
%%WWWDIR%%/apps/federation/l10n/.gitkeep
5255
%%WWWDIR%%/apps-pkg/federation/composer/composer/autoload_classmap.php
5256
%%WWWDIR%%/apps/federation/l10n/ar.js
5256
%%WWWDIR%%/apps-pkg/federation/composer/composer/autoload_namespaces.php
5257
%%WWWDIR%%/apps/federation/l10n/ar.json
5257
%%WWWDIR%%/apps-pkg/federation/composer/composer/autoload_psr4.php
5258
%%WWWDIR%%/apps/federation/l10n/ast.js
5258
%%WWWDIR%%/apps-pkg/federation/composer/composer/autoload_real.php
5259
%%WWWDIR%%/apps/federation/l10n/ast.json
5259
%%WWWDIR%%/apps-pkg/federation/composer/composer/autoload_static.php
5260
%%WWWDIR%%/apps/federation/l10n/bg_BG.js
5260
%%WWWDIR%%/apps-pkg/federation/css/settings-admin.css
5261
%%WWWDIR%%/apps/federation/l10n/bg_BG.json
5261
%%WWWDIR%%/apps-pkg/federation/img/app.svg
5262
%%WWWDIR%%/apps/federation/l10n/ca.js
5262
%%WWWDIR%%/apps-pkg/federation/js/settings-admin.js
5263
%%WWWDIR%%/apps/federation/l10n/ca.json
5263
%%WWWDIR%%/apps-pkg/federation/l10n/.gitkeep
5264
%%WWWDIR%%/apps/federation/l10n/cs.js
5264
%%WWWDIR%%/apps-pkg/federation/l10n/ar.js
5265
%%WWWDIR%%/apps/federation/l10n/cs.json
5265
%%WWWDIR%%/apps-pkg/federation/l10n/ar.json
5266
%%WWWDIR%%/apps/federation/l10n/cs_CZ.js
5266
%%WWWDIR%%/apps-pkg/federation/l10n/ast.js
5267
%%WWWDIR%%/apps/federation/l10n/cs_CZ.json
5267
%%WWWDIR%%/apps-pkg/federation/l10n/ast.json
5268
%%WWWDIR%%/apps/federation/l10n/da.js
5268
%%WWWDIR%%/apps-pkg/federation/l10n/bg_BG.js
5269
%%WWWDIR%%/apps/federation/l10n/da.json
5269
%%WWWDIR%%/apps-pkg/federation/l10n/bg_BG.json
5270
%%WWWDIR%%/apps/federation/l10n/de.js
5270
%%WWWDIR%%/apps-pkg/federation/l10n/ca.js
5271
%%WWWDIR%%/apps/federation/l10n/de.json
5271
%%WWWDIR%%/apps-pkg/federation/l10n/ca.json
5272
%%WWWDIR%%/apps/federation/l10n/de_DE.js
5272
%%WWWDIR%%/apps-pkg/federation/l10n/cs.js
5273
%%WWWDIR%%/apps/federation/l10n/de_DE.json
5273
%%WWWDIR%%/apps-pkg/federation/l10n/cs.json
5274
%%WWWDIR%%/apps/federation/l10n/el.js
5274
%%WWWDIR%%/apps-pkg/federation/l10n/cs_CZ.js
5275
%%WWWDIR%%/apps/federation/l10n/el.json
5275
%%WWWDIR%%/apps-pkg/federation/l10n/cs_CZ.json
5276
%%WWWDIR%%/apps/federation/l10n/en_GB.js
5276
%%WWWDIR%%/apps-pkg/federation/l10n/da.js
5277
%%WWWDIR%%/apps/federation/l10n/en_GB.json
5277
%%WWWDIR%%/apps-pkg/federation/l10n/da.json
5278
%%WWWDIR%%/apps/federation/l10n/eo.js
5278
%%WWWDIR%%/apps-pkg/federation/l10n/de.js
5279
%%WWWDIR%%/apps/federation/l10n/eo.json
5279
%%WWWDIR%%/apps-pkg/federation/l10n/de.json
5280
%%WWWDIR%%/apps/federation/l10n/es.js
5280
%%WWWDIR%%/apps-pkg/federation/l10n/de_DE.js
5281
%%WWWDIR%%/apps/federation/l10n/es.json
5281
%%WWWDIR%%/apps-pkg/federation/l10n/de_DE.json
5282
%%WWWDIR%%/apps/federation/l10n/es_419.js
5282
%%WWWDIR%%/apps-pkg/federation/l10n/el.js
5283
%%WWWDIR%%/apps/federation/l10n/es_419.json
5283
%%WWWDIR%%/apps-pkg/federation/l10n/el.json
5284
%%WWWDIR%%/apps/federation/l10n/es_AR.js
5284
%%WWWDIR%%/apps-pkg/federation/l10n/en_GB.js
5285
%%WWWDIR%%/apps/federation/l10n/es_AR.json
5285
%%WWWDIR%%/apps-pkg/federation/l10n/en_GB.json
5286
%%WWWDIR%%/apps/federation/l10n/es_CL.js
5286
%%WWWDIR%%/apps-pkg/federation/l10n/eo.js
5287
%%WWWDIR%%/apps/federation/l10n/es_CL.json
5287
%%WWWDIR%%/apps-pkg/federation/l10n/eo.json
5288
%%WWWDIR%%/apps/federation/l10n/es_CO.js
5288
%%WWWDIR%%/apps-pkg/federation/l10n/es.js
5289
%%WWWDIR%%/apps/federation/l10n/es_CO.json
5289
%%WWWDIR%%/apps-pkg/federation/l10n/es.json
5290
%%WWWDIR%%/apps/federation/l10n/es_CR.js
5290
%%WWWDIR%%/apps-pkg/federation/l10n/es_419.js
5291
%%WWWDIR%%/apps/federation/l10n/es_CR.json
5291
%%WWWDIR%%/apps-pkg/federation/l10n/es_419.json
5292
%%WWWDIR%%/apps/federation/l10n/es_DO.js
5292
%%WWWDIR%%/apps-pkg/federation/l10n/es_AR.js
5293
%%WWWDIR%%/apps/federation/l10n/es_DO.json
5293
%%WWWDIR%%/apps-pkg/federation/l10n/es_AR.json
5294
%%WWWDIR%%/apps/federation/l10n/es_EC.js
5294
%%WWWDIR%%/apps-pkg/federation/l10n/es_CL.js
5295
%%WWWDIR%%/apps/federation/l10n/es_EC.json
5295
%%WWWDIR%%/apps-pkg/federation/l10n/es_CL.json
5296
%%WWWDIR%%/apps/federation/l10n/es_GT.js
5296
%%WWWDIR%%/apps-pkg/federation/l10n/es_CO.js
5297
%%WWWDIR%%/apps/federation/l10n/es_GT.json
5297
%%WWWDIR%%/apps-pkg/federation/l10n/es_CO.json
5298
%%WWWDIR%%/apps/federation/l10n/es_HN.js
5298
%%WWWDIR%%/apps-pkg/federation/l10n/es_CR.js
5299
%%WWWDIR%%/apps/federation/l10n/es_HN.json
5299
%%WWWDIR%%/apps-pkg/federation/l10n/es_CR.json
5300
%%WWWDIR%%/apps/federation/l10n/es_MX.js
5300
%%WWWDIR%%/apps-pkg/federation/l10n/es_DO.js
5301
%%WWWDIR%%/apps/federation/l10n/es_MX.json
5301
%%WWWDIR%%/apps-pkg/federation/l10n/es_DO.json
5302
%%WWWDIR%%/apps/federation/l10n/es_NI.js
5302
%%WWWDIR%%/apps-pkg/federation/l10n/es_EC.js
5303
%%WWWDIR%%/apps/federation/l10n/es_NI.json
5303
%%WWWDIR%%/apps-pkg/federation/l10n/es_EC.json
5304
%%WWWDIR%%/apps/federation/l10n/es_PA.js
5304
%%WWWDIR%%/apps-pkg/federation/l10n/es_GT.js
5305
%%WWWDIR%%/apps/federation/l10n/es_PA.json
5305
%%WWWDIR%%/apps-pkg/federation/l10n/es_GT.json
5306
%%WWWDIR%%/apps/federation/l10n/es_PE.js
5306
%%WWWDIR%%/apps-pkg/federation/l10n/es_HN.js
5307
%%WWWDIR%%/apps/federation/l10n/es_PE.json
5307
%%WWWDIR%%/apps-pkg/federation/l10n/es_HN.json
5308
%%WWWDIR%%/apps/federation/l10n/es_PR.js
5308
%%WWWDIR%%/apps-pkg/federation/l10n/es_MX.js
5309
%%WWWDIR%%/apps/federation/l10n/es_PR.json
5309
%%WWWDIR%%/apps-pkg/federation/l10n/es_MX.json
5310
%%WWWDIR%%/apps/federation/l10n/es_PY.js
5310
%%WWWDIR%%/apps-pkg/federation/l10n/es_NI.js
5311
%%WWWDIR%%/apps/federation/l10n/es_PY.json
5311
%%WWWDIR%%/apps-pkg/federation/l10n/es_NI.json
5312
%%WWWDIR%%/apps/federation/l10n/es_SV.js
5312
%%WWWDIR%%/apps-pkg/federation/l10n/es_PA.js
5313
%%WWWDIR%%/apps/federation/l10n/es_SV.json
5313
%%WWWDIR%%/apps-pkg/federation/l10n/es_PA.json
5314
%%WWWDIR%%/apps/federation/l10n/es_UY.js
5314
%%WWWDIR%%/apps-pkg/federation/l10n/es_PE.js
5315
%%WWWDIR%%/apps/federation/l10n/es_UY.json
5315
%%WWWDIR%%/apps-pkg/federation/l10n/es_PE.json
5316
%%WWWDIR%%/apps/federation/l10n/et_EE.js
5316
%%WWWDIR%%/apps-pkg/federation/l10n/es_PR.js
5317
%%WWWDIR%%/apps/federation/l10n/et_EE.json
5317
%%WWWDIR%%/apps-pkg/federation/l10n/es_PR.json
5318
%%WWWDIR%%/apps/federation/l10n/eu.js
5318
%%WWWDIR%%/apps-pkg/federation/l10n/es_PY.js
5319
%%WWWDIR%%/apps/federation/l10n/eu.json
5319
%%WWWDIR%%/apps-pkg/federation/l10n/es_PY.json
5320
%%WWWDIR%%/apps/federation/l10n/fi.js
5320
%%WWWDIR%%/apps-pkg/federation/l10n/es_SV.js
5321
%%WWWDIR%%/apps/federation/l10n/fi.json
5321
%%WWWDIR%%/apps-pkg/federation/l10n/es_SV.json
5322
%%WWWDIR%%/apps/federation/l10n/fi_FI.js
5322
%%WWWDIR%%/apps-pkg/federation/l10n/es_UY.js
5323
%%WWWDIR%%/apps/federation/l10n/fi_FI.json
5323
%%WWWDIR%%/apps-pkg/federation/l10n/es_UY.json
5324
%%WWWDIR%%/apps/federation/l10n/fr.js
5324
%%WWWDIR%%/apps-pkg/federation/l10n/et_EE.js
5325
%%WWWDIR%%/apps/federation/l10n/fr.json
5325
%%WWWDIR%%/apps-pkg/federation/l10n/et_EE.json
5326
%%WWWDIR%%/apps/federation/l10n/gl.js
5326
%%WWWDIR%%/apps-pkg/federation/l10n/eu.js
5327
%%WWWDIR%%/apps/federation/l10n/gl.json
5327
%%WWWDIR%%/apps-pkg/federation/l10n/eu.json
5328
%%WWWDIR%%/apps/federation/l10n/he.js
5328
%%WWWDIR%%/apps-pkg/federation/l10n/fa.js
5329
%%WWWDIR%%/apps/federation/l10n/he.json
5329
%%WWWDIR%%/apps-pkg/federation/l10n/fa.json
5330
%%WWWDIR%%/apps/federation/l10n/hu.js
5330
%%WWWDIR%%/apps-pkg/federation/l10n/fi.js
5331
%%WWWDIR%%/apps/federation/l10n/hu.json
5331
%%WWWDIR%%/apps-pkg/federation/l10n/fi.json
5332
%%WWWDIR%%/apps/federation/l10n/hu_HU.js
5332
%%WWWDIR%%/apps-pkg/federation/l10n/fi_FI.js
5333
%%WWWDIR%%/apps/federation/l10n/hu_HU.json
5333
%%WWWDIR%%/apps-pkg/federation/l10n/fi_FI.json
5334
%%WWWDIR%%/apps/federation/l10n/ia.js
5334
%%WWWDIR%%/apps-pkg/federation/l10n/fr.js
5335
%%WWWDIR%%/apps/federation/l10n/ia.json
5335
%%WWWDIR%%/apps-pkg/federation/l10n/fr.json
5336
%%WWWDIR%%/apps/federation/l10n/id.js
5336
%%WWWDIR%%/apps-pkg/federation/l10n/gl.js
5337
%%WWWDIR%%/apps/federation/l10n/id.json
5337
%%WWWDIR%%/apps-pkg/federation/l10n/gl.json
5338
%%WWWDIR%%/apps/federation/l10n/is.js
5338
%%WWWDIR%%/apps-pkg/federation/l10n/he.js
5339
%%WWWDIR%%/apps/federation/l10n/is.json
5339
%%WWWDIR%%/apps-pkg/federation/l10n/he.json
5340
%%WWWDIR%%/apps/federation/l10n/it.js
5340
%%WWWDIR%%/apps-pkg/federation/l10n/hu.js
5341
%%WWWDIR%%/apps/federation/l10n/it.json
5341
%%WWWDIR%%/apps-pkg/federation/l10n/hu.json
5342
%%WWWDIR%%/apps/federation/l10n/ja.js
5342
%%WWWDIR%%/apps-pkg/federation/l10n/hu_HU.js
5343
%%WWWDIR%%/apps/federation/l10n/ja.json
5343
%%WWWDIR%%/apps-pkg/federation/l10n/hu_HU.json
5344
%%WWWDIR%%/apps/federation/l10n/ka_GE.js
5344
%%WWWDIR%%/apps-pkg/federation/l10n/ia.js
5345
%%WWWDIR%%/apps/federation/l10n/ka_GE.json
5345
%%WWWDIR%%/apps-pkg/federation/l10n/ia.json
5346
%%WWWDIR%%/apps/federation/l10n/ko.js
5346
%%WWWDIR%%/apps-pkg/federation/l10n/id.js
5347
%%WWWDIR%%/apps/federation/l10n/ko.json
5347
%%WWWDIR%%/apps-pkg/federation/l10n/id.json
5348
%%WWWDIR%%/apps/federation/l10n/lb.js
5348
%%WWWDIR%%/apps-pkg/federation/l10n/is.js
5349
%%WWWDIR%%/apps/federation/l10n/lb.json
5349
%%WWWDIR%%/apps-pkg/federation/l10n/is.json
5350
%%WWWDIR%%/apps/federation/l10n/lt_LT.js
5350
%%WWWDIR%%/apps-pkg/federation/l10n/it.js
5351
%%WWWDIR%%/apps/federation/l10n/lt_LT.json
5351
%%WWWDIR%%/apps-pkg/federation/l10n/it.json
5352
%%WWWDIR%%/apps/federation/l10n/lv.js
5352
%%WWWDIR%%/apps-pkg/federation/l10n/ja.js
5353
%%WWWDIR%%/apps/federation/l10n/lv.json
5353
%%WWWDIR%%/apps-pkg/federation/l10n/ja.json
5354
%%WWWDIR%%/apps/federation/l10n/mn.js
5354
%%WWWDIR%%/apps-pkg/federation/l10n/ka_GE.js
5355
%%WWWDIR%%/apps/federation/l10n/mn.json
5355
%%WWWDIR%%/apps-pkg/federation/l10n/ka_GE.json
5356
%%WWWDIR%%/apps/federation/l10n/nb.js
5356
%%WWWDIR%%/apps-pkg/federation/l10n/ko.js
5357
%%WWWDIR%%/apps/federation/l10n/nb.json
5357
%%WWWDIR%%/apps-pkg/federation/l10n/ko.json
5358
%%WWWDIR%%/apps/federation/l10n/nb_NO.js
5358
%%WWWDIR%%/apps-pkg/federation/l10n/lb.js
5359
%%WWWDIR%%/apps/federation/l10n/nb_NO.json
5359
%%WWWDIR%%/apps-pkg/federation/l10n/lb.json
5360
%%WWWDIR%%/apps/federation/l10n/nl.js
5360
%%WWWDIR%%/apps-pkg/federation/l10n/lt_LT.js
5361
%%WWWDIR%%/apps/federation/l10n/nl.json
5361
%%WWWDIR%%/apps-pkg/federation/l10n/lt_LT.json
5362
%%WWWDIR%%/apps/federation/l10n/oc.js
5362
%%WWWDIR%%/apps-pkg/federation/l10n/lv.js
5363
%%WWWDIR%%/apps/federation/l10n/oc.json
5363
%%WWWDIR%%/apps-pkg/federation/l10n/lv.json
5364
%%WWWDIR%%/apps/federation/l10n/pl.js
5364
%%WWWDIR%%/apps-pkg/federation/l10n/mn.js
5365
%%WWWDIR%%/apps/federation/l10n/pl.json
5365
%%WWWDIR%%/apps-pkg/federation/l10n/mn.json
5366
%%WWWDIR%%/apps/federation/l10n/pt_BR.js
5366
%%WWWDIR%%/apps-pkg/federation/l10n/nb.js
5367
%%WWWDIR%%/apps/federation/l10n/pt_BR.json
5367
%%WWWDIR%%/apps-pkg/federation/l10n/nb.json
5368
%%WWWDIR%%/apps/federation/l10n/pt_PT.js
5368
%%WWWDIR%%/apps-pkg/federation/l10n/nb_NO.js
5369
%%WWWDIR%%/apps/federation/l10n/pt_PT.json
5369
%%WWWDIR%%/apps-pkg/federation/l10n/nb_NO.json
5370
%%WWWDIR%%/apps/federation/l10n/ro.js
5370
%%WWWDIR%%/apps-pkg/federation/l10n/nl.js
5371
%%WWWDIR%%/apps/federation/l10n/ro.json
5371
%%WWWDIR%%/apps-pkg/federation/l10n/nl.json
5372
%%WWWDIR%%/apps/federation/l10n/ru.js
5372
%%WWWDIR%%/apps-pkg/federation/l10n/oc.js
5373
%%WWWDIR%%/apps/federation/l10n/ru.json
5373
%%WWWDIR%%/apps-pkg/federation/l10n/oc.json
5374
%%WWWDIR%%/apps/federation/l10n/sk.js
5374
%%WWWDIR%%/apps-pkg/federation/l10n/pl.js
5375
%%WWWDIR%%/apps/federation/l10n/sk.json
5375
%%WWWDIR%%/apps-pkg/federation/l10n/pl.json
5376
%%WWWDIR%%/apps/federation/l10n/sl.js
5376
%%WWWDIR%%/apps-pkg/federation/l10n/pt_BR.js
5377
%%WWWDIR%%/apps/federation/l10n/sl.json
5377
%%WWWDIR%%/apps-pkg/federation/l10n/pt_BR.json
5378
%%WWWDIR%%/apps/federation/l10n/sq.js
5378
%%WWWDIR%%/apps-pkg/federation/l10n/pt_PT.js
5379
%%WWWDIR%%/apps/federation/l10n/sq.json
5379
%%WWWDIR%%/apps-pkg/federation/l10n/pt_PT.json
5380
%%WWWDIR%%/apps/federation/l10n/sr.js
5380
%%WWWDIR%%/apps-pkg/federation/l10n/ro.js
5381
%%WWWDIR%%/apps/federation/l10n/sr.json
5381
%%WWWDIR%%/apps-pkg/federation/l10n/ro.json
5382
%%WWWDIR%%/apps/federation/l10n/sv.js
5382
%%WWWDIR%%/apps-pkg/federation/l10n/ru.js
5383
%%WWWDIR%%/apps/federation/l10n/sv.json
5383
%%WWWDIR%%/apps-pkg/federation/l10n/ru.json
5384
%%WWWDIR%%/apps/federation/l10n/th_TH.js
5384
%%WWWDIR%%/apps-pkg/federation/l10n/sk.js
5385
%%WWWDIR%%/apps/federation/l10n/th_TH.json
5385
%%WWWDIR%%/apps-pkg/federation/l10n/sk.json
5386
%%WWWDIR%%/apps/federation/l10n/tr.js
5386
%%WWWDIR%%/apps-pkg/federation/l10n/sl.js
5387
%%WWWDIR%%/apps/federation/l10n/tr.json
5387
%%WWWDIR%%/apps-pkg/federation/l10n/sl.json
5388
%%WWWDIR%%/apps/federation/l10n/uk.js
5388
%%WWWDIR%%/apps-pkg/federation/l10n/sq.js
5389
%%WWWDIR%%/apps/federation/l10n/uk.json
5389
%%WWWDIR%%/apps-pkg/federation/l10n/sq.json
5390
%%WWWDIR%%/apps/federation/l10n/zh_CN.js
5390
%%WWWDIR%%/apps-pkg/federation/l10n/sr.js
5391
%%WWWDIR%%/apps/federation/l10n/zh_CN.json
5391
%%WWWDIR%%/apps-pkg/federation/l10n/sr.json
5392
%%WWWDIR%%/apps/federation/l10n/zh_TW.js
5392
%%WWWDIR%%/apps-pkg/federation/l10n/sv.js
5393
%%WWWDIR%%/apps/federation/l10n/zh_TW.json
5393
%%WWWDIR%%/apps-pkg/federation/l10n/sv.json
5394
%%WWWDIR%%/apps/federation/lib/AppInfo/Application.php
5394
%%WWWDIR%%/apps-pkg/federation/l10n/th_TH.js
5395
%%WWWDIR%%/apps/federation/lib/BackgroundJob/GetSharedSecret.php
5395
%%WWWDIR%%/apps-pkg/federation/l10n/th_TH.json
5396
%%WWWDIR%%/apps/federation/lib/BackgroundJob/RequestSharedSecret.php
5396
%%WWWDIR%%/apps-pkg/federation/l10n/tr.js
5397
%%WWWDIR%%/apps/federation/lib/Command/SyncFederationAddressBooks.php
5397
%%WWWDIR%%/apps-pkg/federation/l10n/tr.json
5398
%%WWWDIR%%/apps/federation/lib/Controller/OCSAuthAPIController.php
5398
%%WWWDIR%%/apps-pkg/federation/l10n/uk.js
5399
%%WWWDIR%%/apps/federation/lib/Controller/SettingsController.php
5399
%%WWWDIR%%/apps-pkg/federation/l10n/uk.json
5400
%%WWWDIR%%/apps/federation/lib/DAV/FedAuth.php
5400
%%WWWDIR%%/apps-pkg/federation/l10n/zh_CN.js
5401
%%WWWDIR%%/apps/federation/lib/DbHandler.php
5401
%%WWWDIR%%/apps-pkg/federation/l10n/zh_CN.json
5402
%%WWWDIR%%/apps/federation/lib/Hooks.php
5402
%%WWWDIR%%/apps-pkg/federation/l10n/zh_TW.js
5403
%%WWWDIR%%/apps/federation/lib/Middleware/AddServerMiddleware.php
5403
%%WWWDIR%%/apps-pkg/federation/l10n/zh_TW.json
5404
%%WWWDIR%%/apps/federation/lib/Settings/Admin.php
5404
%%WWWDIR%%/apps-pkg/federation/lib/AppInfo/Application.php
5405
%%WWWDIR%%/apps/federation/lib/SyncFederationAddressBooks.php
5405
%%WWWDIR%%/apps-pkg/federation/lib/BackgroundJob/GetSharedSecret.php
5406
%%WWWDIR%%/apps/federation/lib/SyncJob.php
5406
%%WWWDIR%%/apps-pkg/federation/lib/BackgroundJob/RequestSharedSecret.php
5407
%%WWWDIR%%/apps/federation/lib/TrustedServers.php
5407
%%WWWDIR%%/apps-pkg/federation/lib/Command/SyncFederationAddressBooks.php
5408
%%WWWDIR%%/apps/federation/templates/settings-admin.php
5408
%%WWWDIR%%/apps-pkg/federation/lib/Controller/OCSAuthAPIController.php
5409
%%WWWDIR%%/apps/files/ajax/download.php
5409
%%WWWDIR%%/apps-pkg/federation/lib/Controller/SettingsController.php
5410
%%WWWDIR%%/apps/files/ajax/getstoragestats.php
5410
%%WWWDIR%%/apps-pkg/federation/lib/DAV/FedAuth.php
5411
%%WWWDIR%%/apps/files/ajax/list.php
5411
%%WWWDIR%%/apps-pkg/federation/lib/DbHandler.php
5412
%%WWWDIR%%/apps/files/appinfo/app.php
5412
%%WWWDIR%%/apps-pkg/federation/lib/Hooks.php
5413
%%WWWDIR%%/apps/files/appinfo/info.xml
5413
%%WWWDIR%%/apps-pkg/federation/lib/Middleware/AddServerMiddleware.php
5414
%%WWWDIR%%/apps/files/appinfo/routes.php
5414
%%WWWDIR%%/apps-pkg/federation/lib/Settings/Admin.php
5415
%%WWWDIR%%/apps/files/appinfo/signature.json
5415
%%WWWDIR%%/apps-pkg/federation/lib/SyncFederationAddressBooks.php
5416
%%WWWDIR%%/apps/files/composer/autoload.php
5416
%%WWWDIR%%/apps-pkg/federation/lib/SyncJob.php
5417
%%WWWDIR%%/apps/files/composer/composer.json
5417
%%WWWDIR%%/apps-pkg/federation/lib/TrustedServers.php
5418
%%WWWDIR%%/apps/files/composer/composer/ClassLoader.php
5418
%%WWWDIR%%/apps-pkg/federation/templates/settings-admin.php
5419
%%WWWDIR%%/apps/files/composer/composer/LICENSE
5419
%%WWWDIR%%/apps-pkg/files/ajax/download.php
5420
%%WWWDIR%%/apps/files/composer/composer/autoload_classmap.php
5420
%%WWWDIR%%/apps-pkg/files/ajax/getstoragestats.php
5421
%%WWWDIR%%/apps/files/composer/composer/autoload_namespaces.php
5421
%%WWWDIR%%/apps-pkg/files/ajax/list.php
5422
%%WWWDIR%%/apps/files/composer/composer/autoload_psr4.php
5422
%%WWWDIR%%/apps-pkg/files/appinfo/app.php
5423
%%WWWDIR%%/apps/files/composer/composer/autoload_real.php
5423
%%WWWDIR%%/apps-pkg/files/appinfo/info.xml
5424
%%WWWDIR%%/apps/files/composer/composer/autoload_static.php
5424
%%WWWDIR%%/apps-pkg/files/appinfo/routes.php
5425
%%WWWDIR%%/apps/files/css/detailsView.scss
5425
%%WWWDIR%%/apps-pkg/files/appinfo/signature.json
5426
%%WWWDIR%%/apps/files/css/files.scss
5426
%%WWWDIR%%/apps-pkg/files/composer/autoload.php
5427
%%WWWDIR%%/apps/files/css/merged.scss
5427
%%WWWDIR%%/apps-pkg/files/composer/composer.json
5428
%%WWWDIR%%/apps/files/css/mobile.scss
5428
%%WWWDIR%%/apps-pkg/files/composer/composer/ClassLoader.php
5429
%%WWWDIR%%/apps/files/css/upload.scss
5429
%%WWWDIR%%/apps-pkg/files/composer/composer/LICENSE
5430
%%WWWDIR%%/apps/files/download.php
5430
%%WWWDIR%%/apps-pkg/files/composer/composer/autoload_classmap.php
5431
%%WWWDIR%%/apps/files/img/add-color.png
5431
%%WWWDIR%%/apps-pkg/files/composer/composer/autoload_namespaces.php
5432
%%WWWDIR%%/apps/files/img/add-color.svg
5432
%%WWWDIR%%/apps-pkg/files/composer/composer/autoload_psr4.php
5433
%%WWWDIR%%/apps/files/img/app.svg
5433
%%WWWDIR%%/apps-pkg/files/composer/composer/autoload_real.php
5434
%%WWWDIR%%/apps/files/img/change.png
5434
%%WWWDIR%%/apps-pkg/files/composer/composer/autoload_static.php
5435
%%WWWDIR%%/apps/files/img/change.svg
5435
%%WWWDIR%%/apps-pkg/files/css/detailsView.scss
5436
%%WWWDIR%%/apps/files/img/delete-color.png
5436
%%WWWDIR%%/apps-pkg/files/css/files.scss
5437
%%WWWDIR%%/apps/files/img/delete-color.svg
5437
%%WWWDIR%%/apps-pkg/files/css/merged.scss
5438
%%WWWDIR%%/apps/files/img/delete.svg
5438
%%WWWDIR%%/apps-pkg/files/css/mobile.scss
5439
%%WWWDIR%%/apps/files/img/external.svg
5439
%%WWWDIR%%/apps-pkg/files/css/upload.scss
5440
%%WWWDIR%%/apps/files/img/folder.svg
5440
%%WWWDIR%%/apps-pkg/files/download.php
5441
%%WWWDIR%%/apps/files/img/public.svg
5441
%%WWWDIR%%/apps-pkg/files/img/add-color.png
5442
%%WWWDIR%%/apps/files/img/quota.svg
5442
%%WWWDIR%%/apps-pkg/files/img/add-color.svg
5443
%%WWWDIR%%/apps/files/img/recent.svg
5443
%%WWWDIR%%/apps-pkg/files/img/app.svg
5444
%%WWWDIR%%/apps/files/img/share.svg
5444
%%WWWDIR%%/apps-pkg/files/img/change.png
5445
%%WWWDIR%%/apps/files/img/star.svg
5445
%%WWWDIR%%/apps-pkg/files/img/change.svg
5446
%%WWWDIR%%/apps/files/js/admin.js
5446
%%WWWDIR%%/apps-pkg/files/img/delete-color.png
5447
%%WWWDIR%%/apps/files/js/app.js
5447
%%WWWDIR%%/apps-pkg/files/img/delete-color.svg
5448
%%WWWDIR%%/apps/files/js/breadcrumb.js
5448
%%WWWDIR%%/apps-pkg/files/img/delete.svg
5449
%%WWWDIR%%/apps/files/js/detailfileinfoview.js
5449
%%WWWDIR%%/apps-pkg/files/img/external.svg
5450
%%WWWDIR%%/apps/files/js/detailsview.js
5450
%%WWWDIR%%/apps-pkg/files/img/folder.svg
5451
%%WWWDIR%%/apps/files/js/detailtabview.js
5451
%%WWWDIR%%/apps-pkg/files/img/public.svg
5452
%%WWWDIR%%/apps/files/js/favoritesfilelist.js
5452
%%WWWDIR%%/apps-pkg/files/img/quota.svg
5453
%%WWWDIR%%/apps/files/js/favoritesplugin.js
5453
%%WWWDIR%%/apps-pkg/files/img/recent.svg
5454
%%WWWDIR%%/apps/files/js/file-upload.js
5454
%%WWWDIR%%/apps-pkg/files/img/share.svg
5455
%%WWWDIR%%/apps/files/js/fileactions.js
5455
%%WWWDIR%%/apps-pkg/files/img/star.svg
5456
%%WWWDIR%%/apps/files/js/fileactionsmenu.js
5456
%%WWWDIR%%/apps-pkg/files/js/admin.js
5457
%%WWWDIR%%/apps/files/js/fileinfomodel.js
5457
%%WWWDIR%%/apps-pkg/files/js/app.js
5458
%%WWWDIR%%/apps/files/js/filelist.js
5458
%%WWWDIR%%/apps-pkg/files/js/breadcrumb.js
5459
%%WWWDIR%%/apps/files/js/files.js
5459
%%WWWDIR%%/apps-pkg/files/js/detailfileinfoview.js
5460
%%WWWDIR%%/apps/files/js/filesummary.js
5460
%%WWWDIR%%/apps-pkg/files/js/detailsview.js
5461
%%WWWDIR%%/apps/files/js/gotoplugin.js
5461
%%WWWDIR%%/apps-pkg/files/js/detailtabview.js
5462
%%WWWDIR%%/apps/files/js/jquery-visibility.js
5462
%%WWWDIR%%/apps-pkg/files/js/favoritesfilelist.js
5463
%%WWWDIR%%/apps/files/js/jquery.fileupload.js
5463
%%WWWDIR%%/apps-pkg/files/js/favoritesplugin.js
5464
%%WWWDIR%%/apps/files/js/keyboardshortcuts.js
5464
%%WWWDIR%%/apps-pkg/files/js/file-upload.js
5465
%%WWWDIR%%/apps/files/js/mainfileinfodetailview.js
5465
%%WWWDIR%%/apps-pkg/files/js/fileactions.js
5466
%%WWWDIR%%/apps/files/js/merged-index.json
5466
%%WWWDIR%%/apps-pkg/files/js/fileactionsmenu.js
5467
%%WWWDIR%%/apps/files/js/navigation.js
5467
%%WWWDIR%%/apps-pkg/files/js/fileinfomodel.js
5468
%%WWWDIR%%/apps/files/js/newfilemenu.js
5468
%%WWWDIR%%/apps-pkg/files/js/filelist.js
5469
%%WWWDIR%%/apps/files/js/recentfilelist.js
5469
%%WWWDIR%%/apps-pkg/files/js/files.js
5470
%%WWWDIR%%/apps/files/js/recentplugin.js
5470
%%WWWDIR%%/apps-pkg/files/js/filesummary.js
5471
%%WWWDIR%%/apps/files/js/search.js
5471
%%WWWDIR%%/apps-pkg/files/js/gotoplugin.js
5472
%%WWWDIR%%/apps/files/js/sidebarpreviewmanager.js
5472
%%WWWDIR%%/apps-pkg/files/js/jquery-visibility.js
5473
%%WWWDIR%%/apps/files/js/sidebarpreviewtext.js
5473
%%WWWDIR%%/apps-pkg/files/js/jquery.fileupload.js
5474
%%WWWDIR%%/apps/files/js/tagsplugin.js
5474
%%WWWDIR%%/apps-pkg/files/js/keyboardshortcuts.js
5475
%%WWWDIR%%/apps/files/js/templates/detailsview.handlebars.js
5475
%%WWWDIR%%/apps-pkg/files/js/mainfileinfodetailview.js
5476
%%WWWDIR%%/apps/files/js/upload.js
5476
%%WWWDIR%%/apps-pkg/files/js/merged-index.json
5477
%%WWWDIR%%/apps/files/l10n/ach.js
5477
%%WWWDIR%%/apps-pkg/files/js/navigation.js
5478
%%WWWDIR%%/apps/files/l10n/ach.json
5478
%%WWWDIR%%/apps-pkg/files/js/newfilemenu.js
5479
%%WWWDIR%%/apps/files/l10n/ady.js
5479
%%WWWDIR%%/apps-pkg/files/js/recentfilelist.js
5480
%%WWWDIR%%/apps/files/l10n/ady.json
5480
%%WWWDIR%%/apps-pkg/files/js/recentplugin.js
5481
%%WWWDIR%%/apps/files/l10n/af_ZA.js
5481
%%WWWDIR%%/apps-pkg/files/js/search.js
5482
%%WWWDIR%%/apps/files/l10n/af_ZA.json
5482
%%WWWDIR%%/apps-pkg/files/js/sidebarpreviewmanager.js
5483
%%WWWDIR%%/apps/files/l10n/ak.js
5483
%%WWWDIR%%/apps-pkg/files/js/sidebarpreviewtext.js
5484
%%WWWDIR%%/apps/files/l10n/ak.json
5484
%%WWWDIR%%/apps-pkg/files/js/tagsplugin.js
5485
%%WWWDIR%%/apps/files/l10n/am_ET.js
5485
%%WWWDIR%%/apps-pkg/files/js/templates/detailsview.handlebars.js
5486
%%WWWDIR%%/apps/files/l10n/am_ET.json
5486
%%WWWDIR%%/apps-pkg/files/js/upload.js
5487
%%WWWDIR%%/apps/files/l10n/ar.js
5487
%%WWWDIR%%/apps-pkg/files/l10n/ach.js
5488
%%WWWDIR%%/apps/files/l10n/ar.json
5488
%%WWWDIR%%/apps-pkg/files/l10n/ach.json
5489
%%WWWDIR%%/apps/files/l10n/ast.js
5489
%%WWWDIR%%/apps-pkg/files/l10n/ady.js
5490
%%WWWDIR%%/apps/files/l10n/ast.json
5490
%%WWWDIR%%/apps-pkg/files/l10n/ady.json
5491
%%WWWDIR%%/apps/files/l10n/az.js
5491
%%WWWDIR%%/apps-pkg/files/l10n/af_ZA.js
5492
%%WWWDIR%%/apps/files/l10n/az.json
5492
%%WWWDIR%%/apps-pkg/files/l10n/af_ZA.json
5493
%%WWWDIR%%/apps/files/l10n/be.js
5493
%%WWWDIR%%/apps-pkg/files/l10n/ak.js
5494
%%WWWDIR%%/apps/files/l10n/be.json
5494
%%WWWDIR%%/apps-pkg/files/l10n/ak.json
5495
%%WWWDIR%%/apps/files/l10n/bg.js
5495
%%WWWDIR%%/apps-pkg/files/l10n/am_ET.js
5496
%%WWWDIR%%/apps/files/l10n/bg.json
5496
%%WWWDIR%%/apps-pkg/files/l10n/am_ET.json
5497
%%WWWDIR%%/apps/files/l10n/bg_BG.js
5497
%%WWWDIR%%/apps-pkg/files/l10n/ar.js
5498
%%WWWDIR%%/apps/files/l10n/bg_BG.json
5498
%%WWWDIR%%/apps-pkg/files/l10n/ar.json
5499
%%WWWDIR%%/apps/files/l10n/bn_BD.js
5499
%%WWWDIR%%/apps-pkg/files/l10n/ast.js
5500
%%WWWDIR%%/apps/files/l10n/bn_BD.json
5500
%%WWWDIR%%/apps-pkg/files/l10n/ast.json
5501
%%WWWDIR%%/apps/files/l10n/bn_IN.js
5501
%%WWWDIR%%/apps-pkg/files/l10n/az.js
5502
%%WWWDIR%%/apps/files/l10n/bn_IN.json
5502
%%WWWDIR%%/apps-pkg/files/l10n/az.json
5503
%%WWWDIR%%/apps/files/l10n/bs.js
5503
%%WWWDIR%%/apps-pkg/files/l10n/be.js
5504
%%WWWDIR%%/apps/files/l10n/bs.json
5504
%%WWWDIR%%/apps-pkg/files/l10n/be.json
5505
%%WWWDIR%%/apps/files/l10n/ca.js
5505
%%WWWDIR%%/apps-pkg/files/l10n/bg.js
5506
%%WWWDIR%%/apps/files/l10n/ca.json
5506
%%WWWDIR%%/apps-pkg/files/l10n/bg.json
5507
%%WWWDIR%%/apps/files/l10n/cs.js
5507
%%WWWDIR%%/apps-pkg/files/l10n/bg_BG.js
5508
%%WWWDIR%%/apps/files/l10n/cs.json
5508
%%WWWDIR%%/apps-pkg/files/l10n/bg_BG.json
5509
%%WWWDIR%%/apps/files/l10n/cs_CZ.js
5509
%%WWWDIR%%/apps-pkg/files/l10n/bn_BD.js
5510
%%WWWDIR%%/apps/files/l10n/cs_CZ.json
5510
%%WWWDIR%%/apps-pkg/files/l10n/bn_BD.json
5511
%%WWWDIR%%/apps/files/l10n/cy_GB.js
5511
%%WWWDIR%%/apps-pkg/files/l10n/bn_IN.js
5512
%%WWWDIR%%/apps/files/l10n/cy_GB.json
5512
%%WWWDIR%%/apps-pkg/files/l10n/bn_IN.json
5513
%%WWWDIR%%/apps/files/l10n/da.js
5513
%%WWWDIR%%/apps-pkg/files/l10n/bs.js
5514
%%WWWDIR%%/apps/files/l10n/da.json
5514
%%WWWDIR%%/apps-pkg/files/l10n/bs.json
5515
%%WWWDIR%%/apps/files/l10n/de.js
5515
%%WWWDIR%%/apps-pkg/files/l10n/ca.js
5516
%%WWWDIR%%/apps/files/l10n/de.json
5516
%%WWWDIR%%/apps-pkg/files/l10n/ca.json
5517
%%WWWDIR%%/apps/files/l10n/de_AT.js
5517
%%WWWDIR%%/apps-pkg/files/l10n/cs.js
5518
%%WWWDIR%%/apps/files/l10n/de_AT.json
5518
%%WWWDIR%%/apps-pkg/files/l10n/cs.json
5519
%%WWWDIR%%/apps/files/l10n/de_DE.js
5519
%%WWWDIR%%/apps-pkg/files/l10n/cs_CZ.js
5520
%%WWWDIR%%/apps/files/l10n/de_DE.json
5520
%%WWWDIR%%/apps-pkg/files/l10n/cs_CZ.json
5521
%%WWWDIR%%/apps/files/l10n/el.js
5521
%%WWWDIR%%/apps-pkg/files/l10n/cy_GB.js
5522
%%WWWDIR%%/apps/files/l10n/el.json
5522
%%WWWDIR%%/apps-pkg/files/l10n/cy_GB.json
5523
%%WWWDIR%%/apps/files/l10n/en_GB.js
5523
%%WWWDIR%%/apps-pkg/files/l10n/da.js
5524
%%WWWDIR%%/apps/files/l10n/en_GB.json
5524
%%WWWDIR%%/apps-pkg/files/l10n/da.json
5525
%%WWWDIR%%/apps/files/l10n/eo.js
5525
%%WWWDIR%%/apps-pkg/files/l10n/de.js
5526
%%WWWDIR%%/apps/files/l10n/eo.json
5526
%%WWWDIR%%/apps-pkg/files/l10n/de.json
5527
%%WWWDIR%%/apps/files/l10n/es.js
5527
%%WWWDIR%%/apps-pkg/files/l10n/de_AT.js
5528
%%WWWDIR%%/apps/files/l10n/es.json
5528
%%WWWDIR%%/apps-pkg/files/l10n/de_AT.json
5529
%%WWWDIR%%/apps/files/l10n/es_419.js
5529
%%WWWDIR%%/apps-pkg/files/l10n/de_DE.js
5530
%%WWWDIR%%/apps/files/l10n/es_419.json
5530
%%WWWDIR%%/apps-pkg/files/l10n/de_DE.json
5531
%%WWWDIR%%/apps/files/l10n/es_AR.js
5531
%%WWWDIR%%/apps-pkg/files/l10n/el.js
5532
%%WWWDIR%%/apps/files/l10n/es_AR.json
5532
%%WWWDIR%%/apps-pkg/files/l10n/el.json
5533
%%WWWDIR%%/apps/files/l10n/es_CL.js
5533
%%WWWDIR%%/apps-pkg/files/l10n/en_GB.js
5534
%%WWWDIR%%/apps/files/l10n/es_CL.json
5534
%%WWWDIR%%/apps-pkg/files/l10n/en_GB.json
5535
%%WWWDIR%%/apps/files/l10n/es_CO.js
5535
%%WWWDIR%%/apps-pkg/files/l10n/eo.js
5536
%%WWWDIR%%/apps/files/l10n/es_CO.json
5536
%%WWWDIR%%/apps-pkg/files/l10n/eo.json
5537
%%WWWDIR%%/apps/files/l10n/es_CR.js
5537
%%WWWDIR%%/apps-pkg/files/l10n/es.js
5538
%%WWWDIR%%/apps/files/l10n/es_CR.json
5538
%%WWWDIR%%/apps-pkg/files/l10n/es.json
5539
%%WWWDIR%%/apps/files/l10n/es_DO.js
5539
%%WWWDIR%%/apps-pkg/files/l10n/es_419.js
5540
%%WWWDIR%%/apps/files/l10n/es_DO.json
5540
%%WWWDIR%%/apps-pkg/files/l10n/es_419.json
5541
%%WWWDIR%%/apps/files/l10n/es_EC.js
5541
%%WWWDIR%%/apps-pkg/files/l10n/es_AR.js
5542
%%WWWDIR%%/apps/files/l10n/es_EC.json
5542
%%WWWDIR%%/apps-pkg/files/l10n/es_AR.json
5543
%%WWWDIR%%/apps/files/l10n/es_GT.js
5543
%%WWWDIR%%/apps-pkg/files/l10n/es_CL.js
5544
%%WWWDIR%%/apps/files/l10n/es_GT.json
5544
%%WWWDIR%%/apps-pkg/files/l10n/es_CL.json
5545
%%WWWDIR%%/apps/files/l10n/es_HN.js
5545
%%WWWDIR%%/apps-pkg/files/l10n/es_CO.js
5546
%%WWWDIR%%/apps/files/l10n/es_HN.json
5546
%%WWWDIR%%/apps-pkg/files/l10n/es_CO.json
5547
%%WWWDIR%%/apps/files/l10n/es_MX.js
5547
%%WWWDIR%%/apps-pkg/files/l10n/es_CR.js
5548
%%WWWDIR%%/apps/files/l10n/es_MX.json
5548
%%WWWDIR%%/apps-pkg/files/l10n/es_CR.json
5549
%%WWWDIR%%/apps/files/l10n/es_NI.js
5549
%%WWWDIR%%/apps-pkg/files/l10n/es_DO.js
5550
%%WWWDIR%%/apps/files/l10n/es_NI.json
5550
%%WWWDIR%%/apps-pkg/files/l10n/es_DO.json
5551
%%WWWDIR%%/apps/files/l10n/es_PA.js
5551
%%WWWDIR%%/apps-pkg/files/l10n/es_EC.js
5552
%%WWWDIR%%/apps/files/l10n/es_PA.json
5552
%%WWWDIR%%/apps-pkg/files/l10n/es_EC.json
5553
%%WWWDIR%%/apps/files/l10n/es_PE.js
5553
%%WWWDIR%%/apps-pkg/files/l10n/es_GT.js
5554
%%WWWDIR%%/apps/files/l10n/es_PE.json
5554
%%WWWDIR%%/apps-pkg/files/l10n/es_GT.json
5555
%%WWWDIR%%/apps/files/l10n/es_PR.js
5555
%%WWWDIR%%/apps-pkg/files/l10n/es_HN.js
5556
%%WWWDIR%%/apps/files/l10n/es_PR.json
5556
%%WWWDIR%%/apps-pkg/files/l10n/es_HN.json
5557
%%WWWDIR%%/apps/files/l10n/es_PY.js
5557
%%WWWDIR%%/apps-pkg/files/l10n/es_MX.js
5558
%%WWWDIR%%/apps/files/l10n/es_PY.json
5558
%%WWWDIR%%/apps-pkg/files/l10n/es_MX.json
5559
%%WWWDIR%%/apps/files/l10n/es_SV.js
5559
%%WWWDIR%%/apps-pkg/files/l10n/es_NI.js
5560
%%WWWDIR%%/apps/files/l10n/es_SV.json
5560
%%WWWDIR%%/apps-pkg/files/l10n/es_NI.json
5561
%%WWWDIR%%/apps/files/l10n/es_UY.js
5561
%%WWWDIR%%/apps-pkg/files/l10n/es_PA.js
5562
%%WWWDIR%%/apps/files/l10n/es_UY.json
5562
%%WWWDIR%%/apps-pkg/files/l10n/es_PA.json
5563
%%WWWDIR%%/apps/files/l10n/et_EE.js
5563
%%WWWDIR%%/apps-pkg/files/l10n/es_PE.js
5564
%%WWWDIR%%/apps/files/l10n/et_EE.json
5564
%%WWWDIR%%/apps-pkg/files/l10n/es_PE.json
5565
%%WWWDIR%%/apps/files/l10n/eu.js
5565
%%WWWDIR%%/apps-pkg/files/l10n/es_PR.js
5566
%%WWWDIR%%/apps/files/l10n/eu.json
5566
%%WWWDIR%%/apps-pkg/files/l10n/es_PR.json
5567
%%WWWDIR%%/apps/files/l10n/fa.js
5567
%%WWWDIR%%/apps-pkg/files/l10n/es_PY.js
5568
%%WWWDIR%%/apps/files/l10n/fa.json
5568
%%WWWDIR%%/apps-pkg/files/l10n/es_PY.json
5569
%%WWWDIR%%/apps/files/l10n/fi.js
5569
%%WWWDIR%%/apps-pkg/files/l10n/es_SV.js
5570
%%WWWDIR%%/apps/files/l10n/fi.json
5570
%%WWWDIR%%/apps-pkg/files/l10n/es_SV.json
5571
%%WWWDIR%%/apps/files/l10n/fi_FI.js
5571
%%WWWDIR%%/apps-pkg/files/l10n/es_UY.js
5572
%%WWWDIR%%/apps/files/l10n/fi_FI.json
5572
%%WWWDIR%%/apps-pkg/files/l10n/es_UY.json
5573
%%WWWDIR%%/apps/files/l10n/fil.js
5573
%%WWWDIR%%/apps-pkg/files/l10n/et_EE.js
5574
%%WWWDIR%%/apps/files/l10n/fil.json
5574
%%WWWDIR%%/apps-pkg/files/l10n/et_EE.json
5575
%%WWWDIR%%/apps/files/l10n/fr.js
5575
%%WWWDIR%%/apps-pkg/files/l10n/eu.js
5576
%%WWWDIR%%/apps/files/l10n/fr.json
5576
%%WWWDIR%%/apps-pkg/files/l10n/eu.json
5577
%%WWWDIR%%/apps/files/l10n/fy_NL.js
5577
%%WWWDIR%%/apps-pkg/files/l10n/fa.js
5578
%%WWWDIR%%/apps/files/l10n/fy_NL.json
5578
%%WWWDIR%%/apps-pkg/files/l10n/fa.json
5579
%%WWWDIR%%/apps/files/l10n/gl.js
5579
%%WWWDIR%%/apps-pkg/files/l10n/fi.js
5580
%%WWWDIR%%/apps/files/l10n/gl.json
5580
%%WWWDIR%%/apps-pkg/files/l10n/fi.json
5581
%%WWWDIR%%/apps/files/l10n/gu.js
5581
%%WWWDIR%%/apps-pkg/files/l10n/fi_FI.js
5582
%%WWWDIR%%/apps/files/l10n/gu.json
5582
%%WWWDIR%%/apps-pkg/files/l10n/fi_FI.json
5583
%%WWWDIR%%/apps/files/l10n/he.js
5583
%%WWWDIR%%/apps-pkg/files/l10n/fil.js
5584
%%WWWDIR%%/apps/files/l10n/he.json
5584
%%WWWDIR%%/apps-pkg/files/l10n/fil.json
5585
%%WWWDIR%%/apps/files/l10n/hi.js
5585
%%WWWDIR%%/apps-pkg/files/l10n/fr.js
5586
%%WWWDIR%%/apps/files/l10n/hi.json
5586
%%WWWDIR%%/apps-pkg/files/l10n/fr.json
5587
%%WWWDIR%%/apps/files/l10n/hr.js
5587
%%WWWDIR%%/apps-pkg/files/l10n/fy_NL.js
5588
%%WWWDIR%%/apps/files/l10n/hr.json
5588
%%WWWDIR%%/apps-pkg/files/l10n/fy_NL.json
5589
%%WWWDIR%%/apps/files/l10n/hu.js
5589
%%WWWDIR%%/apps-pkg/files/l10n/gl.js
5590
%%WWWDIR%%/apps/files/l10n/hu.json
5590
%%WWWDIR%%/apps-pkg/files/l10n/gl.json
5591
%%WWWDIR%%/apps/files/l10n/hu_HU.js
5591
%%WWWDIR%%/apps-pkg/files/l10n/gu.js
5592
%%WWWDIR%%/apps/files/l10n/hu_HU.json
5592
%%WWWDIR%%/apps-pkg/files/l10n/gu.json
5593
%%WWWDIR%%/apps/files/l10n/hy.js
5593
%%WWWDIR%%/apps-pkg/files/l10n/he.js
5594
%%WWWDIR%%/apps/files/l10n/hy.json
5594
%%WWWDIR%%/apps-pkg/files/l10n/he.json
5595
%%WWWDIR%%/apps/files/l10n/ia.js
5595
%%WWWDIR%%/apps-pkg/files/l10n/hi.js
5596
%%WWWDIR%%/apps/files/l10n/ia.json
5596
%%WWWDIR%%/apps-pkg/files/l10n/hi.json
5597
%%WWWDIR%%/apps/files/l10n/id.js
5597
%%WWWDIR%%/apps-pkg/files/l10n/hr.js
5598
%%WWWDIR%%/apps/files/l10n/id.json
5598
%%WWWDIR%%/apps-pkg/files/l10n/hr.json
5599
%%WWWDIR%%/apps/files/l10n/io.js
5599
%%WWWDIR%%/apps-pkg/files/l10n/hu.js
5600
%%WWWDIR%%/apps/files/l10n/io.json
5600
%%WWWDIR%%/apps-pkg/files/l10n/hu.json
5601
%%WWWDIR%%/apps/files/l10n/is.js
5601
%%WWWDIR%%/apps-pkg/files/l10n/hu_HU.js
5602
%%WWWDIR%%/apps/files/l10n/is.json
5602
%%WWWDIR%%/apps-pkg/files/l10n/hu_HU.json
5603
%%WWWDIR%%/apps/files/l10n/it.js
5603
%%WWWDIR%%/apps-pkg/files/l10n/hy.js
5604
%%WWWDIR%%/apps/files/l10n/it.json
5604
%%WWWDIR%%/apps-pkg/files/l10n/hy.json
5605
%%WWWDIR%%/apps/files/l10n/ja.js
5605
%%WWWDIR%%/apps-pkg/files/l10n/ia.js
5606
%%WWWDIR%%/apps/files/l10n/ja.json
5606
%%WWWDIR%%/apps-pkg/files/l10n/ia.json
5607
%%WWWDIR%%/apps/files/l10n/jv.js
5607
%%WWWDIR%%/apps-pkg/files/l10n/id.js
5608
%%WWWDIR%%/apps/files/l10n/jv.json
5608
%%WWWDIR%%/apps-pkg/files/l10n/id.json
5609
%%WWWDIR%%/apps/files/l10n/ka_GE.js
5609
%%WWWDIR%%/apps-pkg/files/l10n/io.js
5610
%%WWWDIR%%/apps/files/l10n/ka_GE.json
5610
%%WWWDIR%%/apps-pkg/files/l10n/io.json
5611
%%WWWDIR%%/apps/files/l10n/km.js
5611
%%WWWDIR%%/apps-pkg/files/l10n/is.js
5612
%%WWWDIR%%/apps/files/l10n/km.json
5612
%%WWWDIR%%/apps-pkg/files/l10n/is.json
5613
%%WWWDIR%%/apps/files/l10n/kn.js
5613
%%WWWDIR%%/apps-pkg/files/l10n/it.js
5614
%%WWWDIR%%/apps/files/l10n/kn.json
5614
%%WWWDIR%%/apps-pkg/files/l10n/it.json
5615
%%WWWDIR%%/apps/files/l10n/ko.js
5615
%%WWWDIR%%/apps-pkg/files/l10n/ja.js
5616
%%WWWDIR%%/apps/files/l10n/ko.json
5616
%%WWWDIR%%/apps-pkg/files/l10n/ja.json
5617
%%WWWDIR%%/apps/files/l10n/ku_IQ.js
5617
%%WWWDIR%%/apps-pkg/files/l10n/jv.js
5618
%%WWWDIR%%/apps/files/l10n/ku_IQ.json
5618
%%WWWDIR%%/apps-pkg/files/l10n/jv.json
5619
%%WWWDIR%%/apps/files/l10n/lb.js
5619
%%WWWDIR%%/apps-pkg/files/l10n/ka_GE.js
5620
%%WWWDIR%%/apps/files/l10n/lb.json
5620
%%WWWDIR%%/apps-pkg/files/l10n/ka_GE.json
5621
%%WWWDIR%%/apps/files/l10n/lo.js
5621
%%WWWDIR%%/apps-pkg/files/l10n/km.js
5622
%%WWWDIR%%/apps/files/l10n/lo.json
5622
%%WWWDIR%%/apps-pkg/files/l10n/km.json
5623
%%WWWDIR%%/apps/files/l10n/lt_LT.js
5623
%%WWWDIR%%/apps-pkg/files/l10n/kn.js
5624
%%WWWDIR%%/apps/files/l10n/lt_LT.json
5624
%%WWWDIR%%/apps-pkg/files/l10n/kn.json
5625
%%WWWDIR%%/apps/files/l10n/lv.js
5625
%%WWWDIR%%/apps-pkg/files/l10n/ko.js
5626
%%WWWDIR%%/apps/files/l10n/lv.json
5626
%%WWWDIR%%/apps-pkg/files/l10n/ko.json
5627
%%WWWDIR%%/apps/files/l10n/mg.js
5627
%%WWWDIR%%/apps-pkg/files/l10n/ku_IQ.js
5628
%%WWWDIR%%/apps/files/l10n/mg.json
5628
%%WWWDIR%%/apps-pkg/files/l10n/ku_IQ.json
5629
%%WWWDIR%%/apps/files/l10n/mk.js
5629
%%WWWDIR%%/apps-pkg/files/l10n/lb.js
5630
%%WWWDIR%%/apps/files/l10n/mk.json
5630
%%WWWDIR%%/apps-pkg/files/l10n/lb.json
5631
%%WWWDIR%%/apps/files/l10n/ml.js
5631
%%WWWDIR%%/apps-pkg/files/l10n/lo.js
5632
%%WWWDIR%%/apps/files/l10n/ml.json
5632
%%WWWDIR%%/apps-pkg/files/l10n/lo.json
5633
%%WWWDIR%%/apps/files/l10n/ml_IN.js
5633
%%WWWDIR%%/apps-pkg/files/l10n/lt_LT.js
5634
%%WWWDIR%%/apps/files/l10n/ml_IN.json
5634
%%WWWDIR%%/apps-pkg/files/l10n/lt_LT.json
5635
%%WWWDIR%%/apps/files/l10n/mn.js
5635
%%WWWDIR%%/apps-pkg/files/l10n/lv.js
5636
%%WWWDIR%%/apps/files/l10n/mn.json
5636
%%WWWDIR%%/apps-pkg/files/l10n/lv.json
5637
%%WWWDIR%%/apps/files/l10n/mr.js
5637
%%WWWDIR%%/apps-pkg/files/l10n/mg.js
5638
%%WWWDIR%%/apps/files/l10n/mr.json
5638
%%WWWDIR%%/apps-pkg/files/l10n/mg.json
5639
%%WWWDIR%%/apps/files/l10n/ms_MY.js
5639
%%WWWDIR%%/apps-pkg/files/l10n/mk.js
5640
%%WWWDIR%%/apps/files/l10n/ms_MY.json
5640
%%WWWDIR%%/apps-pkg/files/l10n/mk.json
5641
%%WWWDIR%%/apps/files/l10n/mt_MT.js
5641
%%WWWDIR%%/apps-pkg/files/l10n/ml.js
5642
%%WWWDIR%%/apps/files/l10n/mt_MT.json
5642
%%WWWDIR%%/apps-pkg/files/l10n/ml.json
5643
%%WWWDIR%%/apps/files/l10n/my_MM.js
5643
%%WWWDIR%%/apps-pkg/files/l10n/ml_IN.js
5644
%%WWWDIR%%/apps/files/l10n/my_MM.json
5644
%%WWWDIR%%/apps-pkg/files/l10n/ml_IN.json
5645
%%WWWDIR%%/apps/files/l10n/nb.js
5645
%%WWWDIR%%/apps-pkg/files/l10n/mn.js
5646
%%WWWDIR%%/apps/files/l10n/nb.json
5646
%%WWWDIR%%/apps-pkg/files/l10n/mn.json
5647
%%WWWDIR%%/apps/files/l10n/nb_NO.js
5647
%%WWWDIR%%/apps-pkg/files/l10n/mr.js
5648
%%WWWDIR%%/apps/files/l10n/nb_NO.json
5648
%%WWWDIR%%/apps-pkg/files/l10n/mr.json
5649
%%WWWDIR%%/apps/files/l10n/nds.js
5649
%%WWWDIR%%/apps-pkg/files/l10n/ms_MY.js
5650
%%WWWDIR%%/apps/files/l10n/nds.json
5650
%%WWWDIR%%/apps-pkg/files/l10n/ms_MY.json
5651
%%WWWDIR%%/apps/files/l10n/nl.js
5651
%%WWWDIR%%/apps-pkg/files/l10n/mt_MT.js
5652
%%WWWDIR%%/apps/files/l10n/nl.json
5652
%%WWWDIR%%/apps-pkg/files/l10n/mt_MT.json
5653
%%WWWDIR%%/apps/files/l10n/nn_NO.js
5653
%%WWWDIR%%/apps-pkg/files/l10n/my_MM.js
5654
%%WWWDIR%%/apps/files/l10n/nn_NO.json
5654
%%WWWDIR%%/apps-pkg/files/l10n/my_MM.json
5655
%%WWWDIR%%/apps/files/l10n/nqo.js
5655
%%WWWDIR%%/apps-pkg/files/l10n/nb.js
5656
%%WWWDIR%%/apps/files/l10n/nqo.json
5656
%%WWWDIR%%/apps-pkg/files/l10n/nb.json
5657
%%WWWDIR%%/apps/files/l10n/oc.js
5657
%%WWWDIR%%/apps-pkg/files/l10n/nb_NO.js
5658
%%WWWDIR%%/apps/files/l10n/oc.json
5658
%%WWWDIR%%/apps-pkg/files/l10n/nb_NO.json
5659
%%WWWDIR%%/apps/files/l10n/pa.js
5659
%%WWWDIR%%/apps-pkg/files/l10n/nds.js
5660
%%WWWDIR%%/apps/files/l10n/pa.json
5660
%%WWWDIR%%/apps-pkg/files/l10n/nds.json
5661
%%WWWDIR%%/apps/files/l10n/pl.js
5661
%%WWWDIR%%/apps-pkg/files/l10n/nl.js
5662
%%WWWDIR%%/apps/files/l10n/pl.json
5662
%%WWWDIR%%/apps-pkg/files/l10n/nl.json
5663
%%WWWDIR%%/apps/files/l10n/pt_BR.js
5663
%%WWWDIR%%/apps-pkg/files/l10n/nn_NO.js
5664
%%WWWDIR%%/apps/files/l10n/pt_BR.json
5664
%%WWWDIR%%/apps-pkg/files/l10n/nn_NO.json
5665
%%WWWDIR%%/apps/files/l10n/pt_PT.js
5665
%%WWWDIR%%/apps-pkg/files/l10n/nqo.js
5666
%%WWWDIR%%/apps/files/l10n/pt_PT.json
5666
%%WWWDIR%%/apps-pkg/files/l10n/nqo.json
5667
%%WWWDIR%%/apps/files/l10n/ro.js
5667
%%WWWDIR%%/apps-pkg/files/l10n/oc.js
5668
%%WWWDIR%%/apps/files/l10n/ro.json
5668
%%WWWDIR%%/apps-pkg/files/l10n/oc.json
5669
%%WWWDIR%%/apps/files/l10n/ru.js
5669
%%WWWDIR%%/apps-pkg/files/l10n/pa.js
5670
%%WWWDIR%%/apps/files/l10n/ru.json
5670
%%WWWDIR%%/apps-pkg/files/l10n/pa.json
5671
%%WWWDIR%%/apps/files/l10n/si_LK.js
5671
%%WWWDIR%%/apps-pkg/files/l10n/pl.js
5672
%%WWWDIR%%/apps/files/l10n/si_LK.json
5672
%%WWWDIR%%/apps-pkg/files/l10n/pl.json
5673
%%WWWDIR%%/apps/files/l10n/sk.js
5673
%%WWWDIR%%/apps-pkg/files/l10n/pt_BR.js
5674
%%WWWDIR%%/apps/files/l10n/sk.json
5674
%%WWWDIR%%/apps-pkg/files/l10n/pt_BR.json
5675
%%WWWDIR%%/apps/files/l10n/sk_SK.js
5675
%%WWWDIR%%/apps-pkg/files/l10n/pt_PT.js
5676
%%WWWDIR%%/apps/files/l10n/sk_SK.json
5676
%%WWWDIR%%/apps-pkg/files/l10n/pt_PT.json
5677
%%WWWDIR%%/apps/files/l10n/sl.js
5677
%%WWWDIR%%/apps-pkg/files/l10n/ro.js
5678
%%WWWDIR%%/apps/files/l10n/sl.json
5678
%%WWWDIR%%/apps-pkg/files/l10n/ro.json
5679
%%WWWDIR%%/apps/files/l10n/sq.js
5679
%%WWWDIR%%/apps-pkg/files/l10n/ru.js
5680
%%WWWDIR%%/apps/files/l10n/sq.json
5680
%%WWWDIR%%/apps-pkg/files/l10n/ru.json
5681
%%WWWDIR%%/apps/files/l10n/sr.js
5681
%%WWWDIR%%/apps-pkg/files/l10n/si_LK.js
5682
%%WWWDIR%%/apps/files/l10n/sr.json
5682
%%WWWDIR%%/apps-pkg/files/l10n/si_LK.json
5683
%%WWWDIR%%/apps/files/l10n/sr@latin.js
5683
%%WWWDIR%%/apps-pkg/files/l10n/sk.js
5684
%%WWWDIR%%/apps/files/l10n/sr@latin.json
5684
%%WWWDIR%%/apps-pkg/files/l10n/sk.json
5685
%%WWWDIR%%/apps/files/l10n/su.js
5685
%%WWWDIR%%/apps-pkg/files/l10n/sk_SK.js
5686
%%WWWDIR%%/apps/files/l10n/su.json
5686
%%WWWDIR%%/apps-pkg/files/l10n/sk_SK.json
5687
%%WWWDIR%%/apps/files/l10n/sv.js
5687
%%WWWDIR%%/apps-pkg/files/l10n/sl.js
5688
%%WWWDIR%%/apps/files/l10n/sv.json
5688
%%WWWDIR%%/apps-pkg/files/l10n/sl.json
5689
%%WWWDIR%%/apps/files/l10n/sw_KE.js
5689
%%WWWDIR%%/apps-pkg/files/l10n/sq.js
5690
%%WWWDIR%%/apps/files/l10n/sw_KE.json
5690
%%WWWDIR%%/apps-pkg/files/l10n/sq.json
5691
%%WWWDIR%%/apps/files/l10n/ta_IN.js
5691
%%WWWDIR%%/apps-pkg/files/l10n/sr.js
5692
%%WWWDIR%%/apps/files/l10n/ta_IN.json
5692
%%WWWDIR%%/apps-pkg/files/l10n/sr.json
5693
%%WWWDIR%%/apps/files/l10n/ta_LK.js
5693
%%WWWDIR%%/apps-pkg/files/l10n/sr@latin.js
5694
%%WWWDIR%%/apps/files/l10n/ta_LK.json
5694
%%WWWDIR%%/apps-pkg/files/l10n/sr@latin.json
5695
%%WWWDIR%%/apps/files/l10n/te.js
5695
%%WWWDIR%%/apps-pkg/files/l10n/su.js
5696
%%WWWDIR%%/apps/files/l10n/te.json
5696
%%WWWDIR%%/apps-pkg/files/l10n/su.json
5697
%%WWWDIR%%/apps/files/l10n/tg_TJ.js
5697
%%WWWDIR%%/apps-pkg/files/l10n/sv.js
5698
%%WWWDIR%%/apps/files/l10n/tg_TJ.json
5698
%%WWWDIR%%/apps-pkg/files/l10n/sv.json
5699
%%WWWDIR%%/apps/files/l10n/th_TH.js
5699
%%WWWDIR%%/apps-pkg/files/l10n/sw_KE.js
5700
%%WWWDIR%%/apps/files/l10n/th_TH.json
5700
%%WWWDIR%%/apps-pkg/files/l10n/sw_KE.json
5701
%%WWWDIR%%/apps/files/l10n/tl_PH.js
5701
%%WWWDIR%%/apps-pkg/files/l10n/ta_IN.js
5702
%%WWWDIR%%/apps/files/l10n/tl_PH.json
5702
%%WWWDIR%%/apps-pkg/files/l10n/ta_IN.json
5703
%%WWWDIR%%/apps/files/l10n/tr.js
5703
%%WWWDIR%%/apps-pkg/files/l10n/ta_LK.js
5704
%%WWWDIR%%/apps/files/l10n/tr.json
5704
%%WWWDIR%%/apps-pkg/files/l10n/ta_LK.json
5705
%%WWWDIR%%/apps/files/l10n/tzm.js
5705
%%WWWDIR%%/apps-pkg/files/l10n/te.js
5706
%%WWWDIR%%/apps/files/l10n/tzm.json
5706
%%WWWDIR%%/apps-pkg/files/l10n/te.json
5707
%%WWWDIR%%/apps/files/l10n/ug.js
5707
%%WWWDIR%%/apps-pkg/files/l10n/tg_TJ.js
5708
%%WWWDIR%%/apps/files/l10n/ug.json
5708
%%WWWDIR%%/apps-pkg/files/l10n/tg_TJ.json
5709
%%WWWDIR%%/apps/files/l10n/uk.js
5709
%%WWWDIR%%/apps-pkg/files/l10n/th.js
5710
%%WWWDIR%%/apps/files/l10n/uk.json
5710
%%WWWDIR%%/apps-pkg/files/l10n/th.json
5711
%%WWWDIR%%/apps/files/l10n/ur_PK.js
5711
%%WWWDIR%%/apps-pkg/files/l10n/th_TH.js
5712
%%WWWDIR%%/apps/files/l10n/ur_PK.json
5712
%%WWWDIR%%/apps-pkg/files/l10n/th_TH.json
5713
%%WWWDIR%%/apps/files/l10n/vi.js
5713
%%WWWDIR%%/apps-pkg/files/l10n/tl_PH.js
5714
%%WWWDIR%%/apps/files/l10n/vi.json
5714
%%WWWDIR%%/apps-pkg/files/l10n/tl_PH.json
5715
%%WWWDIR%%/apps/files/l10n/xgettextfiles
5715
%%WWWDIR%%/apps-pkg/files/l10n/tr.js
5716
%%WWWDIR%%/apps/files/l10n/zh_CN.js
5716
%%WWWDIR%%/apps-pkg/files/l10n/tr.json
5717
%%WWWDIR%%/apps/files/l10n/zh_CN.json
5717
%%WWWDIR%%/apps-pkg/files/l10n/tzm.js
5718
%%WWWDIR%%/apps/files/l10n/zh_HK.js
5718
%%WWWDIR%%/apps-pkg/files/l10n/tzm.json
5719
%%WWWDIR%%/apps/files/l10n/zh_HK.json
5719
%%WWWDIR%%/apps-pkg/files/l10n/ug.js
5720
%%WWWDIR%%/apps/files/l10n/zh_TW.js
5720
%%WWWDIR%%/apps-pkg/files/l10n/ug.json
5721
%%WWWDIR%%/apps/files/l10n/zh_TW.json
5721
%%WWWDIR%%/apps-pkg/files/l10n/uk.js
5722
%%WWWDIR%%/apps/files/lib/Activity/FavoriteProvider.php
5722
%%WWWDIR%%/apps-pkg/files/l10n/uk.json
5723
%%WWWDIR%%/apps/files/lib/Activity/Filter/Favorites.php
5723
%%WWWDIR%%/apps-pkg/files/l10n/ur_PK.js
5724
%%WWWDIR%%/apps/files/lib/Activity/Filter/FileChanges.php
5724
%%WWWDIR%%/apps-pkg/files/l10n/ur_PK.json
5725
%%WWWDIR%%/apps/files/lib/Activity/Helper.php
5725
%%WWWDIR%%/apps-pkg/files/l10n/vi.js
5726
%%WWWDIR%%/apps/files/lib/Activity/Provider.php
5726
%%WWWDIR%%/apps-pkg/files/l10n/vi.json
5727
%%WWWDIR%%/apps/files/lib/Activity/Settings/FavoriteAction.php
5727
%%WWWDIR%%/apps-pkg/files/l10n/xgettextfiles
5728
%%WWWDIR%%/apps/files/lib/Activity/Settings/FileChanged.php
5728
%%WWWDIR%%/apps-pkg/files/l10n/zh_CN.js
5729
%%WWWDIR%%/apps/files/lib/Activity/Settings/FileCreated.php
5729
%%WWWDIR%%/apps-pkg/files/l10n/zh_CN.json
5730
%%WWWDIR%%/apps/files/lib/Activity/Settings/FileDeleted.php
5730
%%WWWDIR%%/apps-pkg/files/l10n/zh_HK.js
5731
%%WWWDIR%%/apps/files/lib/Activity/Settings/FileFavorite.php
5731
%%WWWDIR%%/apps-pkg/files/l10n/zh_HK.json
5732
%%WWWDIR%%/apps/files/lib/Activity/Settings/FileRestored.php
5732
%%WWWDIR%%/apps-pkg/files/l10n/zh_TW.js
5733
%%WWWDIR%%/apps/files/lib/App.php
5733
%%WWWDIR%%/apps-pkg/files/l10n/zh_TW.json
5734
%%WWWDIR%%/apps/files/lib/AppInfo/Application.php
5734
%%WWWDIR%%/apps-pkg/files/lib/Activity/FavoriteProvider.php
5735
%%WWWDIR%%/apps/files/lib/BackgroundJob/CleanupFileLocks.php
5735
%%WWWDIR%%/apps-pkg/files/lib/Activity/Filter/Favorites.php
5736
%%WWWDIR%%/apps/files/lib/BackgroundJob/DeleteOrphanedItems.php
5736
%%WWWDIR%%/apps-pkg/files/lib/Activity/Filter/FileChanges.php
5737
%%WWWDIR%%/apps/files/lib/BackgroundJob/ScanFiles.php
5737
%%WWWDIR%%/apps-pkg/files/lib/Activity/Helper.php
5738
%%WWWDIR%%/apps/files/lib/Capabilities.php
5738
%%WWWDIR%%/apps-pkg/files/lib/Activity/Provider.php
5739
%%WWWDIR%%/apps/files/lib/Command/DeleteOrphanedFiles.php
5739
%%WWWDIR%%/apps-pkg/files/lib/Activity/Settings/FavoriteAction.php
5740
%%WWWDIR%%/apps/files/lib/Command/Scan.php
5740
%%WWWDIR%%/apps-pkg/files/lib/Activity/Settings/FileChanged.php
5741
%%WWWDIR%%/apps/files/lib/Command/ScanAppData.php
5741
%%WWWDIR%%/apps-pkg/files/lib/Activity/Settings/FileCreated.php
5742
%%WWWDIR%%/apps/files/lib/Command/TransferOwnership.php
5742
%%WWWDIR%%/apps-pkg/files/lib/Activity/Settings/FileDeleted.php
5743
%%WWWDIR%%/apps/files/lib/Controller/ApiController.php
5743
%%WWWDIR%%/apps-pkg/files/lib/Activity/Settings/FileFavorite.php
5744
%%WWWDIR%%/apps/files/lib/Controller/SettingsController.php
5744
%%WWWDIR%%/apps-pkg/files/lib/Activity/Settings/FileRestored.php
5745
%%WWWDIR%%/apps/files/lib/Controller/ViewController.php
5745
%%WWWDIR%%/apps-pkg/files/lib/App.php
5746
%%WWWDIR%%/apps/files/lib/Helper.php
5746
%%WWWDIR%%/apps-pkg/files/lib/AppInfo/Application.php
5747
%%WWWDIR%%/apps/files/lib/Service/TagService.php
5747
%%WWWDIR%%/apps-pkg/files/lib/BackgroundJob/CleanupFileLocks.php
5748
%%WWWDIR%%/apps/files/lib/Settings/Admin.php
5748
%%WWWDIR%%/apps-pkg/files/lib/BackgroundJob/DeleteOrphanedItems.php
5749
%%WWWDIR%%/apps/files/list.php
5749
%%WWWDIR%%/apps-pkg/files/lib/BackgroundJob/ScanFiles.php
5750
%%WWWDIR%%/apps/files/recentlist.php
5750
%%WWWDIR%%/apps-pkg/files/lib/Capabilities.php
5751
%%WWWDIR%%/apps/files/simplelist.php
5751
%%WWWDIR%%/apps-pkg/files/lib/Command/DeleteOrphanedFiles.php
5752
%%WWWDIR%%/apps/files/templates/admin.php
5752
%%WWWDIR%%/apps-pkg/files/lib/Command/Scan.php
5753
%%WWWDIR%%/apps/files/templates/appnavigation.php
5753
%%WWWDIR%%/apps-pkg/files/lib/Command/ScanAppData.php
5754
%%WWWDIR%%/apps/files/templates/fileexists.html
5754
%%WWWDIR%%/apps-pkg/files/lib/Command/TransferOwnership.php
5755
%%WWWDIR%%/apps/files/templates/index.php
5755
%%WWWDIR%%/apps-pkg/files/lib/Controller/ApiController.php
5756
%%WWWDIR%%/apps/files/templates/list.php
5756
%%WWWDIR%%/apps-pkg/files/lib/Controller/SettingsController.php
5757
%%WWWDIR%%/apps/files/templates/recentlist.php
5757
%%WWWDIR%%/apps-pkg/files/lib/Controller/ViewController.php
5758
%%WWWDIR%%/apps/files/templates/simplelist.php
5758
%%WWWDIR%%/apps-pkg/files/lib/Helper.php
5759
%%WWWDIR%%/apps/files_external/3rdparty/.gitignore
5759
%%WWWDIR%%/apps-pkg/files/lib/Service/TagService.php
5760
%%WWWDIR%%/apps/files_external/3rdparty/autoload.php
5760
%%WWWDIR%%/apps-pkg/files/lib/Settings/Admin.php
5761
%%WWWDIR%%/apps/files_external/3rdparty/composer.json
5761
%%WWWDIR%%/apps-pkg/files/list.php
5762
%%WWWDIR%%/apps/files_external/3rdparty/composer.lock
5762
%%WWWDIR%%/apps-pkg/files/recentlist.php
5763
%%WWWDIR%%/apps/files_external/3rdparty/composer/ClassLoader.php
5763
%%WWWDIR%%/apps-pkg/files/simplelist.php
5764
%%WWWDIR%%/apps/files_external/3rdparty/composer/LICENSE
5764
%%WWWDIR%%/apps-pkg/files/templates/admin.php
5765
%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_classmap.php
5765
%%WWWDIR%%/apps-pkg/files/templates/appnavigation.php
5766
%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_namespaces.php
5766
%%WWWDIR%%/apps-pkg/files/templates/fileexists.html
5767
%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_psr4.php
5767
%%WWWDIR%%/apps-pkg/files/templates/index.php
5768
%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_real.php
5768
%%WWWDIR%%/apps-pkg/files/templates/list.php
5769
%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_static.php
5769
%%WWWDIR%%/apps-pkg/files/templates/recentlist.php
5770
%%WWWDIR%%/apps/files_external/3rdparty/composer/installed.json
5770
%%WWWDIR%%/apps-pkg/files/templates/simplelist.php
5771
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/.gitignore
5771
%%WWWDIR%%/apps-pkg/files_external/3rdparty/.gitignore
5772
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/LICENSE.txt
5772
%%WWWDIR%%/apps-pkg/files_external/3rdparty/autoload.php
5773
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/README.md
5773
%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer.json
5774
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/composer.json
5774
%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer.lock
5775
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/AbstractShare.php
5775
%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/ClassLoader.php
5776
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Change.php
5776
%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/LICENSE
5777
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Connection.php
5777
%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/autoload_classmap.php
5778
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/ErrorCodes.php
5778
%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/autoload_namespaces.php
5779
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/AccessDeniedException.php
5779
%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/autoload_psr4.php
5780
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/AlreadyExistsException.php
5780
%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/autoload_real.php
5781
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/AuthenticationException.php
5781
%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/autoload_static.php
5782
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/ConnectException.php
5782
%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/installed.json
5783
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/ConnectionException.php
5783
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/.gitignore
5784
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/ConnectionRefusedException.php
5784
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/LICENSE.txt
5785
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/DependencyException.php
5785
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/README.md
5786
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/Exception.php
5786
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/composer.json
5787
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/FileInUseException.php
5787
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/AbstractShare.php
5788
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/ForbiddenException.php
5788
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Change.php
5789
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/HostDownException.php
5789
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Connection.php
5790
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidHostException.php
5790
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/ErrorCodes.php
5791
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidParameterException.php
5791
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/AccessDeniedException.php
5792
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidPathException.php
5792
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/AlreadyExistsException.php
5793
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidRequestException.php
5793
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/AuthenticationException.php
5794
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidResourceException.php
5794
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/ConnectException.php
5795
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidTypeException.php
5795
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/ConnectionException.php
5796
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NoLoginServerException.php
5796
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/ConnectionRefusedException.php
5797
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NoRouteToHostException.php
5797
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/DependencyException.php
5798
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NotEmptyException.php
5798
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/Exception.php
5799
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NotFoundException.php
5799
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/FileInUseException.php
5800
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/OutOfSpaceException.php
5800
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/ForbiddenException.php
5801
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/RevisionMismatchException.php
5801
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/HostDownException.php
5802
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/TimedOutException.php
5802
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/InvalidHostException.php
5803
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/FileInfo.php
5803
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/InvalidParameterException.php
5804
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/IFileInfo.php
5804
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/InvalidPathException.php
5805
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/INotifyHandler.php
5805
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/InvalidRequestException.php
5806
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/IShare.php
5806
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/InvalidResourceException.php
5807
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NativeFileInfo.php
5807
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/InvalidTypeException.php
5808
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NativeReadStream.php
5808
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/NoLoginServerException.php
5809
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NativeServer.php
5809
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/NoRouteToHostException.php
5810
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NativeShare.php
5810
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/NotEmptyException.php
5811
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NativeState.php
5811
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/NotFoundException.php
5812
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NativeStream.php
5812
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/OutOfSpaceException.php
5813
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NativeWriteStream.php
5813
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/RevisionMismatchException.php
5814
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NotifyHandler.php
5814
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/TimedOutException.php
5815
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Parser.php
5815
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/FileInfo.php
5816
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/RawConnection.php
5816
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/IFileInfo.php
5817
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Server.php
5817
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/INotifyHandler.php
5818
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Share.php
5818
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/IShare.php
5819
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/System.php
5819
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NativeFileInfo.php
5820
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/TimeZoneProvider.php
5820
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NativeReadStream.php
5821
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams-dummy/composer.json
5821
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NativeServer.php
5822
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/.gitignore
5822
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NativeShare.php
5823
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/.travis.yml
5823
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NativeState.php
5824
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/LICENCE
5824
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NativeStream.php
5825
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/README.md
5825
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NativeWriteStream.php
5826
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/composer.json
5826
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NotifyHandler.php
5827
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/CallbackWrapper.php
5827
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Parser.php
5828
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/Directory.php
5828
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/RawConnection.php
5829
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/DirectoryFilter.php
5829
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Server.php
5830
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/DirectoryWrapper.php
5830
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Share.php
5831
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/File.php
5831
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/System.php
5832
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/IteratorDirectory.php
5832
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/TimeZoneProvider.php
5833
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/NullWrapper.php
5833
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams-dummy/composer.json
5834
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/Path.php
5834
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/.gitignore
5835
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/PathWrapper.php
5835
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/.travis.yml
5836
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/RetryWrapper.php
5836
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/LICENCE
5837
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/SeekableWrapper.php
5837
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/README.md
5838
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/Url.php
5838
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/composer.json
5839
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/UrlCallBack.php
5839
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/CallbackWrapper.php
5840
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/Wrapper.php
5840
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/Directory.php
5841
%%WWWDIR%%/apps/files_external/ajax/applicable.php
5841
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/DirectoryFilter.php
5842
%%WWWDIR%%/apps/files_external/ajax/oauth2.php
5842
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/DirectoryWrapper.php
5843
%%WWWDIR%%/apps/files_external/appinfo/app.php
5843
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/File.php
5844
%%WWWDIR%%/apps/files_external/appinfo/database.xml
5844
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/IteratorDirectory.php
5845
%%WWWDIR%%/apps/files_external/appinfo/info.xml
5845
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/NullWrapper.php
5846
%%WWWDIR%%/apps/files_external/appinfo/routes.php
5846
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/Path.php
5847
%%WWWDIR%%/apps/files_external/appinfo/signature.json
5847
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/PathWrapper.php
5848
%%WWWDIR%%/apps/files_external/css/external.css
5848
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/RetryWrapper.php
5849
%%WWWDIR%%/apps/files_external/css/settings.css
5849
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/SeekableWrapper.php
5850
%%WWWDIR%%/apps/files_external/img/app-dark.svg
5850
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/Url.php
5851
%%WWWDIR%%/apps/files_external/img/app.svg
5851
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/UrlCallBack.php
5852
%%WWWDIR%%/apps/files_external/js/app.js
5852
%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/Wrapper.php
5853
%%WWWDIR%%/apps/files_external/js/mountsfilelist.js
5853
%%WWWDIR%%/apps-pkg/files_external/ajax/applicable.php
5854
%%WWWDIR%%/apps/files_external/js/oauth1.js
5854
%%WWWDIR%%/apps-pkg/files_external/ajax/oauth2.php
5855
%%WWWDIR%%/apps/files_external/js/oauth2.js
5855
%%WWWDIR%%/apps-pkg/files_external/appinfo/app.php
5856
%%WWWDIR%%/apps/files_external/js/public_key.js
5856
%%WWWDIR%%/apps-pkg/files_external/appinfo/database.xml
5857
%%WWWDIR%%/apps/files_external/js/rollingqueue.js
5857
%%WWWDIR%%/apps-pkg/files_external/appinfo/info.xml
5858
%%WWWDIR%%/apps/files_external/js/settings.js
5858
%%WWWDIR%%/apps-pkg/files_external/appinfo/routes.php
5859
%%WWWDIR%%/apps/files_external/js/statusmanager.js
5859
%%WWWDIR%%/apps-pkg/files_external/appinfo/signature.json
5860
%%WWWDIR%%/apps/files_external/l10n/.gitkeep
5860
%%WWWDIR%%/apps-pkg/files_external/css/external.css
5861
%%WWWDIR%%/apps/files_external/l10n/af_ZA.js
5861
%%WWWDIR%%/apps-pkg/files_external/css/settings.css
5862
%%WWWDIR%%/apps/files_external/l10n/af_ZA.json
5862
%%WWWDIR%%/apps-pkg/files_external/img/app-dark.svg
5863
%%WWWDIR%%/apps/files_external/l10n/ar.js
5863
%%WWWDIR%%/apps-pkg/files_external/img/app.svg
5864
%%WWWDIR%%/apps/files_external/l10n/ar.json
5864
%%WWWDIR%%/apps-pkg/files_external/js/app.js
5865
%%WWWDIR%%/apps/files_external/l10n/ast.js
5865
%%WWWDIR%%/apps-pkg/files_external/js/mountsfilelist.js
5866
%%WWWDIR%%/apps/files_external/l10n/ast.json
5866
%%WWWDIR%%/apps-pkg/files_external/js/oauth1.js
5867
%%WWWDIR%%/apps/files_external/l10n/az.js
5867
%%WWWDIR%%/apps-pkg/files_external/js/oauth2.js
5868
%%WWWDIR%%/apps/files_external/l10n/az.json
5868
%%WWWDIR%%/apps-pkg/files_external/js/public_key.js
5869
%%WWWDIR%%/apps/files_external/l10n/bg_BG.js
5869
%%WWWDIR%%/apps-pkg/files_external/js/rollingqueue.js
5870
%%WWWDIR%%/apps/files_external/l10n/bg_BG.json
5870
%%WWWDIR%%/apps-pkg/files_external/js/settings.js
5871
%%WWWDIR%%/apps/files_external/l10n/bn_BD.js
5871
%%WWWDIR%%/apps-pkg/files_external/js/statusmanager.js
5872
%%WWWDIR%%/apps/files_external/l10n/bn_BD.json
5872
%%WWWDIR%%/apps-pkg/files_external/l10n/.gitkeep
5873
%%WWWDIR%%/apps/files_external/l10n/bn_IN.js
5873
%%WWWDIR%%/apps-pkg/files_external/l10n/af_ZA.js
5874
%%WWWDIR%%/apps/files_external/l10n/bn_IN.json
5874
%%WWWDIR%%/apps-pkg/files_external/l10n/af_ZA.json
5875
%%WWWDIR%%/apps/files_external/l10n/bs.js
5875
%%WWWDIR%%/apps-pkg/files_external/l10n/ar.js
5876
%%WWWDIR%%/apps/files_external/l10n/bs.json
5876
%%WWWDIR%%/apps-pkg/files_external/l10n/ar.json
5877
%%WWWDIR%%/apps/files_external/l10n/ca.js
5877
%%WWWDIR%%/apps-pkg/files_external/l10n/ast.js
5878
%%WWWDIR%%/apps/files_external/l10n/ca.json
5878
%%WWWDIR%%/apps-pkg/files_external/l10n/ast.json
5879
%%WWWDIR%%/apps/files_external/l10n/cs.js
5879
%%WWWDIR%%/apps-pkg/files_external/l10n/az.js
5880
%%WWWDIR%%/apps/files_external/l10n/cs.json
5880
%%WWWDIR%%/apps-pkg/files_external/l10n/az.json
5881
%%WWWDIR%%/apps/files_external/l10n/cs_CZ.js
5881
%%WWWDIR%%/apps-pkg/files_external/l10n/bg.js
5882
%%WWWDIR%%/apps/files_external/l10n/cs_CZ.json
5882
%%WWWDIR%%/apps-pkg/files_external/l10n/bg.json
5883
%%WWWDIR%%/apps/files_external/l10n/cy_GB.js
5883
%%WWWDIR%%/apps-pkg/files_external/l10n/bg_BG.js
5884
%%WWWDIR%%/apps/files_external/l10n/cy_GB.json
5884
%%WWWDIR%%/apps-pkg/files_external/l10n/bg_BG.json
5885
%%WWWDIR%%/apps/files_external/l10n/da.js
5885
%%WWWDIR%%/apps-pkg/files_external/l10n/bn_BD.js
5886
%%WWWDIR%%/apps/files_external/l10n/da.json
5886
%%WWWDIR%%/apps-pkg/files_external/l10n/bn_BD.json
5887
%%WWWDIR%%/apps/files_external/l10n/de.js
5887
%%WWWDIR%%/apps-pkg/files_external/l10n/bn_IN.js
5888
%%WWWDIR%%/apps/files_external/l10n/de.json
5888
%%WWWDIR%%/apps-pkg/files_external/l10n/bn_IN.json
5889
%%WWWDIR%%/apps/files_external/l10n/de_AT.js
5889
%%WWWDIR%%/apps-pkg/files_external/l10n/bs.js
5890
%%WWWDIR%%/apps/files_external/l10n/de_AT.json
5890
%%WWWDIR%%/apps-pkg/files_external/l10n/bs.json
5891
%%WWWDIR%%/apps/files_external/l10n/de_DE.js
5891
%%WWWDIR%%/apps-pkg/files_external/l10n/ca.js
5892
%%WWWDIR%%/apps/files_external/l10n/de_DE.json
5892
%%WWWDIR%%/apps-pkg/files_external/l10n/ca.json
5893
%%WWWDIR%%/apps/files_external/l10n/el.js
5893
%%WWWDIR%%/apps-pkg/files_external/l10n/cs.js
5894
%%WWWDIR%%/apps/files_external/l10n/el.json
5894
%%WWWDIR%%/apps-pkg/files_external/l10n/cs.json
5895
%%WWWDIR%%/apps/files_external/l10n/en_GB.js
5895
%%WWWDIR%%/apps-pkg/files_external/l10n/cs_CZ.js
5896
%%WWWDIR%%/apps/files_external/l10n/en_GB.json
5896
%%WWWDIR%%/apps-pkg/files_external/l10n/cs_CZ.json
5897
%%WWWDIR%%/apps/files_external/l10n/eo.js
5897
%%WWWDIR%%/apps-pkg/files_external/l10n/cy_GB.js
5898
%%WWWDIR%%/apps/files_external/l10n/eo.json
5898
%%WWWDIR%%/apps-pkg/files_external/l10n/cy_GB.json
5899
%%WWWDIR%%/apps/files_external/l10n/es.js
5899
%%WWWDIR%%/apps-pkg/files_external/l10n/da.js
5900
%%WWWDIR%%/apps/files_external/l10n/es.json
5900
%%WWWDIR%%/apps-pkg/files_external/l10n/da.json
5901
%%WWWDIR%%/apps/files_external/l10n/es_419.js
5901
%%WWWDIR%%/apps-pkg/files_external/l10n/de.js
5902
%%WWWDIR%%/apps/files_external/l10n/es_419.json
5902
%%WWWDIR%%/apps-pkg/files_external/l10n/de.json
5903
%%WWWDIR%%/apps/files_external/l10n/es_AR.js
5903
%%WWWDIR%%/apps-pkg/files_external/l10n/de_AT.js
5904
%%WWWDIR%%/apps/files_external/l10n/es_AR.json
5904
%%WWWDIR%%/apps-pkg/files_external/l10n/de_AT.json
5905
%%WWWDIR%%/apps/files_external/l10n/es_CL.js
5905
%%WWWDIR%%/apps-pkg/files_external/l10n/de_DE.js
5906
%%WWWDIR%%/apps/files_external/l10n/es_CL.json
5906
%%WWWDIR%%/apps-pkg/files_external/l10n/de_DE.json
5907
%%WWWDIR%%/apps/files_external/l10n/es_CO.js
5907
%%WWWDIR%%/apps-pkg/files_external/l10n/el.js
5908
%%WWWDIR%%/apps/files_external/l10n/es_CO.json
5908
%%WWWDIR%%/apps-pkg/files_external/l10n/el.json
5909
%%WWWDIR%%/apps/files_external/l10n/es_CR.js
5909
%%WWWDIR%%/apps-pkg/files_external/l10n/en_GB.js
5910
%%WWWDIR%%/apps/files_external/l10n/es_CR.json
5910
%%WWWDIR%%/apps-pkg/files_external/l10n/en_GB.json
5911
%%WWWDIR%%/apps/files_external/l10n/es_DO.js
5911
%%WWWDIR%%/apps-pkg/files_external/l10n/eo.js
5912
%%WWWDIR%%/apps/files_external/l10n/es_DO.json
5912
%%WWWDIR%%/apps-pkg/files_external/l10n/eo.json
5913
%%WWWDIR%%/apps/files_external/l10n/es_EC.js
5913
%%WWWDIR%%/apps-pkg/files_external/l10n/es.js
5914
%%WWWDIR%%/apps/files_external/l10n/es_EC.json
5914
%%WWWDIR%%/apps-pkg/files_external/l10n/es.json
5915
%%WWWDIR%%/apps/files_external/l10n/es_GT.js
5915
%%WWWDIR%%/apps-pkg/files_external/l10n/es_419.js
5916
%%WWWDIR%%/apps/files_external/l10n/es_GT.json
5916
%%WWWDIR%%/apps-pkg/files_external/l10n/es_419.json
5917
%%WWWDIR%%/apps/files_external/l10n/es_HN.js
5917
%%WWWDIR%%/apps-pkg/files_external/l10n/es_AR.js
5918
%%WWWDIR%%/apps/files_external/l10n/es_HN.json
5918
%%WWWDIR%%/apps-pkg/files_external/l10n/es_AR.json
5919
%%WWWDIR%%/apps/files_external/l10n/es_MX.js
5919
%%WWWDIR%%/apps-pkg/files_external/l10n/es_CL.js
5920
%%WWWDIR%%/apps/files_external/l10n/es_MX.json
5920
%%WWWDIR%%/apps-pkg/files_external/l10n/es_CL.json
5921
%%WWWDIR%%/apps/files_external/l10n/es_NI.js
5921
%%WWWDIR%%/apps-pkg/files_external/l10n/es_CO.js
5922
%%WWWDIR%%/apps/files_external/l10n/es_NI.json
5922
%%WWWDIR%%/apps-pkg/files_external/l10n/es_CO.json
5923
%%WWWDIR%%/apps/files_external/l10n/es_PA.js
5923
%%WWWDIR%%/apps-pkg/files_external/l10n/es_CR.js
5924
%%WWWDIR%%/apps/files_external/l10n/es_PA.json
5924
%%WWWDIR%%/apps-pkg/files_external/l10n/es_CR.json
5925
%%WWWDIR%%/apps/files_external/l10n/es_PE.js
5925
%%WWWDIR%%/apps-pkg/files_external/l10n/es_DO.js
5926
%%WWWDIR%%/apps/files_external/l10n/es_PE.json
5926
%%WWWDIR%%/apps-pkg/files_external/l10n/es_DO.json
5927
%%WWWDIR%%/apps/files_external/l10n/es_PR.js
5927
%%WWWDIR%%/apps-pkg/files_external/l10n/es_EC.js
5928
%%WWWDIR%%/apps/files_external/l10n/es_PR.json
5928
%%WWWDIR%%/apps-pkg/files_external/l10n/es_EC.json
5929
%%WWWDIR%%/apps/files_external/l10n/es_PY.js
5929
%%WWWDIR%%/apps-pkg/files_external/l10n/es_GT.js
5930
%%WWWDIR%%/apps/files_external/l10n/es_PY.json
5930
%%WWWDIR%%/apps-pkg/files_external/l10n/es_GT.json
5931
%%WWWDIR%%/apps/files_external/l10n/es_SV.js
5931
%%WWWDIR%%/apps-pkg/files_external/l10n/es_HN.js
5932
%%WWWDIR%%/apps/files_external/l10n/es_SV.json
5932
%%WWWDIR%%/apps-pkg/files_external/l10n/es_HN.json
5933
%%WWWDIR%%/apps/files_external/l10n/es_UY.js
5933
%%WWWDIR%%/apps-pkg/files_external/l10n/es_MX.js
5934
%%WWWDIR%%/apps/files_external/l10n/es_UY.json
5934
%%WWWDIR%%/apps-pkg/files_external/l10n/es_MX.json
5935
%%WWWDIR%%/apps/files_external/l10n/et_EE.js
5935
%%WWWDIR%%/apps-pkg/files_external/l10n/es_NI.js
5936
%%WWWDIR%%/apps/files_external/l10n/et_EE.json
5936
%%WWWDIR%%/apps-pkg/files_external/l10n/es_NI.json
5937
%%WWWDIR%%/apps/files_external/l10n/eu.js
5937
%%WWWDIR%%/apps-pkg/files_external/l10n/es_PA.js
5938
%%WWWDIR%%/apps/files_external/l10n/eu.json
5938
%%WWWDIR%%/apps-pkg/files_external/l10n/es_PA.json
5939
%%WWWDIR%%/apps/files_external/l10n/fa.js
5939
%%WWWDIR%%/apps-pkg/files_external/l10n/es_PE.js
5940
%%WWWDIR%%/apps/files_external/l10n/fa.json
5940
%%WWWDIR%%/apps-pkg/files_external/l10n/es_PE.json
5941
%%WWWDIR%%/apps/files_external/l10n/fi.js
5941
%%WWWDIR%%/apps-pkg/files_external/l10n/es_PR.js
5942
%%WWWDIR%%/apps/files_external/l10n/fi.json
5942
%%WWWDIR%%/apps-pkg/files_external/l10n/es_PR.json
5943
%%WWWDIR%%/apps/files_external/l10n/fi_FI.js
5943
%%WWWDIR%%/apps-pkg/files_external/l10n/es_PY.js
5944
%%WWWDIR%%/apps/files_external/l10n/fi_FI.json
5944
%%WWWDIR%%/apps-pkg/files_external/l10n/es_PY.json
5945
%%WWWDIR%%/apps/files_external/l10n/fil.js
5945
%%WWWDIR%%/apps-pkg/files_external/l10n/es_SV.js
5946
%%WWWDIR%%/apps/files_external/l10n/fil.json
5946
%%WWWDIR%%/apps-pkg/files_external/l10n/es_SV.json
5947
%%WWWDIR%%/apps/files_external/l10n/fr.js
5947
%%WWWDIR%%/apps-pkg/files_external/l10n/es_UY.js
5948
%%WWWDIR%%/apps/files_external/l10n/fr.json
5948
%%WWWDIR%%/apps-pkg/files_external/l10n/es_UY.json
5949
%%WWWDIR%%/apps/files_external/l10n/gl.js
5949
%%WWWDIR%%/apps-pkg/files_external/l10n/et_EE.js
5950
%%WWWDIR%%/apps/files_external/l10n/gl.json
5950
%%WWWDIR%%/apps-pkg/files_external/l10n/et_EE.json
5951
%%WWWDIR%%/apps/files_external/l10n/he.js
5951
%%WWWDIR%%/apps-pkg/files_external/l10n/eu.js
5952
%%WWWDIR%%/apps/files_external/l10n/he.json
5952
%%WWWDIR%%/apps-pkg/files_external/l10n/eu.json
5953
%%WWWDIR%%/apps/files_external/l10n/hi.js
5953
%%WWWDIR%%/apps-pkg/files_external/l10n/fa.js
5954
%%WWWDIR%%/apps/files_external/l10n/hi.json
5954
%%WWWDIR%%/apps-pkg/files_external/l10n/fa.json
5955
%%WWWDIR%%/apps/files_external/l10n/hr.js
5955
%%WWWDIR%%/apps-pkg/files_external/l10n/fi.js
5956
%%WWWDIR%%/apps/files_external/l10n/hr.json
5956
%%WWWDIR%%/apps-pkg/files_external/l10n/fi.json
5957
%%WWWDIR%%/apps/files_external/l10n/hu.js
5957
%%WWWDIR%%/apps-pkg/files_external/l10n/fi_FI.js
5958
%%WWWDIR%%/apps/files_external/l10n/hu.json
5958
%%WWWDIR%%/apps-pkg/files_external/l10n/fi_FI.json
5959
%%WWWDIR%%/apps/files_external/l10n/hu_HU.js
5959
%%WWWDIR%%/apps-pkg/files_external/l10n/fil.js
5960
%%WWWDIR%%/apps/files_external/l10n/hu_HU.json
5960
%%WWWDIR%%/apps-pkg/files_external/l10n/fil.json
5961
%%WWWDIR%%/apps/files_external/l10n/hy.js
5961
%%WWWDIR%%/apps-pkg/files_external/l10n/fr.js
5962
%%WWWDIR%%/apps/files_external/l10n/hy.json
5962
%%WWWDIR%%/apps-pkg/files_external/l10n/fr.json
5963
%%WWWDIR%%/apps/files_external/l10n/ia.js
5963
%%WWWDIR%%/apps-pkg/files_external/l10n/gl.js
5964
%%WWWDIR%%/apps/files_external/l10n/ia.json
5964
%%WWWDIR%%/apps-pkg/files_external/l10n/gl.json
5965
%%WWWDIR%%/apps/files_external/l10n/id.js
5965
%%WWWDIR%%/apps-pkg/files_external/l10n/he.js
5966
%%WWWDIR%%/apps/files_external/l10n/id.json
5966
%%WWWDIR%%/apps-pkg/files_external/l10n/he.json
5967
%%WWWDIR%%/apps/files_external/l10n/is.js
5967
%%WWWDIR%%/apps-pkg/files_external/l10n/hi.js
5968
%%WWWDIR%%/apps/files_external/l10n/is.json
5968
%%WWWDIR%%/apps-pkg/files_external/l10n/hi.json
5969
%%WWWDIR%%/apps/files_external/l10n/it.js
5969
%%WWWDIR%%/apps-pkg/files_external/l10n/hr.js
5970
%%WWWDIR%%/apps/files_external/l10n/it.json
5970
%%WWWDIR%%/apps-pkg/files_external/l10n/hr.json
5971
%%WWWDIR%%/apps/files_external/l10n/ja.js
5971
%%WWWDIR%%/apps-pkg/files_external/l10n/hu.js
5972
%%WWWDIR%%/apps/files_external/l10n/ja.json
5972
%%WWWDIR%%/apps-pkg/files_external/l10n/hu.json
5973
%%WWWDIR%%/apps/files_external/l10n/jv.js
5973
%%WWWDIR%%/apps-pkg/files_external/l10n/hu_HU.js
5974
%%WWWDIR%%/apps/files_external/l10n/jv.json
5974
%%WWWDIR%%/apps-pkg/files_external/l10n/hu_HU.json
5975
%%WWWDIR%%/apps/files_external/l10n/ka_GE.js
5975
%%WWWDIR%%/apps-pkg/files_external/l10n/hy.js
5976
%%WWWDIR%%/apps/files_external/l10n/ka_GE.json
5976
%%WWWDIR%%/apps-pkg/files_external/l10n/hy.json
5977
%%WWWDIR%%/apps/files_external/l10n/km.js
5977
%%WWWDIR%%/apps-pkg/files_external/l10n/ia.js
5978
%%WWWDIR%%/apps/files_external/l10n/km.json
5978
%%WWWDIR%%/apps-pkg/files_external/l10n/ia.json
5979
%%WWWDIR%%/apps/files_external/l10n/kn.js
5979
%%WWWDIR%%/apps-pkg/files_external/l10n/id.js
5980
%%WWWDIR%%/apps/files_external/l10n/kn.json
5980
%%WWWDIR%%/apps-pkg/files_external/l10n/id.json
5981
%%WWWDIR%%/apps/files_external/l10n/ko.js
5981
%%WWWDIR%%/apps-pkg/files_external/l10n/is.js
5982
%%WWWDIR%%/apps/files_external/l10n/ko.json
5982
%%WWWDIR%%/apps-pkg/files_external/l10n/is.json
5983
%%WWWDIR%%/apps/files_external/l10n/ku_IQ.js
5983
%%WWWDIR%%/apps-pkg/files_external/l10n/it.js
5984
%%WWWDIR%%/apps/files_external/l10n/ku_IQ.json
5984
%%WWWDIR%%/apps-pkg/files_external/l10n/it.json
5985
%%WWWDIR%%/apps/files_external/l10n/lb.js
5985
%%WWWDIR%%/apps-pkg/files_external/l10n/ja.js
5986
%%WWWDIR%%/apps/files_external/l10n/lb.json
5986
%%WWWDIR%%/apps-pkg/files_external/l10n/ja.json
5987
%%WWWDIR%%/apps/files_external/l10n/lt_LT.js
5987
%%WWWDIR%%/apps-pkg/files_external/l10n/jv.js
5988
%%WWWDIR%%/apps/files_external/l10n/lt_LT.json
5988
%%WWWDIR%%/apps-pkg/files_external/l10n/jv.json
5989
%%WWWDIR%%/apps/files_external/l10n/lv.js
5989
%%WWWDIR%%/apps-pkg/files_external/l10n/ka_GE.js
5990
%%WWWDIR%%/apps/files_external/l10n/lv.json
5990
%%WWWDIR%%/apps-pkg/files_external/l10n/ka_GE.json
5991
%%WWWDIR%%/apps/files_external/l10n/mk.js
5991
%%WWWDIR%%/apps-pkg/files_external/l10n/km.js
5992
%%WWWDIR%%/apps/files_external/l10n/mk.json
5992
%%WWWDIR%%/apps-pkg/files_external/l10n/km.json
5993
%%WWWDIR%%/apps/files_external/l10n/mn.js
5993
%%WWWDIR%%/apps-pkg/files_external/l10n/kn.js
5994
%%WWWDIR%%/apps/files_external/l10n/mn.json
5994
%%WWWDIR%%/apps-pkg/files_external/l10n/kn.json
5995
%%WWWDIR%%/apps/files_external/l10n/ms_MY.js
5995
%%WWWDIR%%/apps-pkg/files_external/l10n/ko.js
5996
%%WWWDIR%%/apps/files_external/l10n/ms_MY.json
5996
%%WWWDIR%%/apps-pkg/files_external/l10n/ko.json
5997
%%WWWDIR%%/apps/files_external/l10n/my_MM.js
5997
%%WWWDIR%%/apps-pkg/files_external/l10n/ku_IQ.js
5998
%%WWWDIR%%/apps/files_external/l10n/my_MM.json
5998
%%WWWDIR%%/apps-pkg/files_external/l10n/ku_IQ.json
5999
%%WWWDIR%%/apps/files_external/l10n/nb.js
5999
%%WWWDIR%%/apps-pkg/files_external/l10n/lb.js
6000
%%WWWDIR%%/apps/files_external/l10n/nb.json
6000
%%WWWDIR%%/apps-pkg/files_external/l10n/lb.json
6001
%%WWWDIR%%/apps/files_external/l10n/nb_NO.js
6001
%%WWWDIR%%/apps-pkg/files_external/l10n/lt_LT.js
6002
%%WWWDIR%%/apps/files_external/l10n/nb_NO.json
6002
%%WWWDIR%%/apps-pkg/files_external/l10n/lt_LT.json
6003
%%WWWDIR%%/apps/files_external/l10n/nds.js
6003
%%WWWDIR%%/apps-pkg/files_external/l10n/lv.js
6004
%%WWWDIR%%/apps/files_external/l10n/nds.json
6004
%%WWWDIR%%/apps-pkg/files_external/l10n/lv.json
6005
%%WWWDIR%%/apps/files_external/l10n/nl.js
6005
%%WWWDIR%%/apps-pkg/files_external/l10n/mk.js
6006
%%WWWDIR%%/apps/files_external/l10n/nl.json
6006
%%WWWDIR%%/apps-pkg/files_external/l10n/mk.json
6007
%%WWWDIR%%/apps/files_external/l10n/nn_NO.js
6007
%%WWWDIR%%/apps-pkg/files_external/l10n/mn.js
6008
%%WWWDIR%%/apps/files_external/l10n/nn_NO.json
6008
%%WWWDIR%%/apps-pkg/files_external/l10n/mn.json
6009
%%WWWDIR%%/apps/files_external/l10n/oc.js
6009
%%WWWDIR%%/apps-pkg/files_external/l10n/ms_MY.js
6010
%%WWWDIR%%/apps/files_external/l10n/oc.json
6010
%%WWWDIR%%/apps-pkg/files_external/l10n/ms_MY.json
6011
%%WWWDIR%%/apps/files_external/l10n/pa.js
6011
%%WWWDIR%%/apps-pkg/files_external/l10n/my_MM.js
6012
%%WWWDIR%%/apps/files_external/l10n/pa.json
6012
%%WWWDIR%%/apps-pkg/files_external/l10n/my_MM.json
6013
%%WWWDIR%%/apps/files_external/l10n/pl.js
6013
%%WWWDIR%%/apps-pkg/files_external/l10n/nb.js
6014
%%WWWDIR%%/apps/files_external/l10n/pl.json
6014
%%WWWDIR%%/apps-pkg/files_external/l10n/nb.json
6015
%%WWWDIR%%/apps/files_external/l10n/pt_BR.js
6015
%%WWWDIR%%/apps-pkg/files_external/l10n/nb_NO.js
6016
%%WWWDIR%%/apps/files_external/l10n/pt_BR.json
6016
%%WWWDIR%%/apps-pkg/files_external/l10n/nb_NO.json
6017
%%WWWDIR%%/apps/files_external/l10n/pt_PT.js
6017
%%WWWDIR%%/apps-pkg/files_external/l10n/nds.js
6018
%%WWWDIR%%/apps/files_external/l10n/pt_PT.json
6018
%%WWWDIR%%/apps-pkg/files_external/l10n/nds.json
6019
%%WWWDIR%%/apps/files_external/l10n/ro.js
6019
%%WWWDIR%%/apps-pkg/files_external/l10n/nl.js
6020
%%WWWDIR%%/apps/files_external/l10n/ro.json
6020
%%WWWDIR%%/apps-pkg/files_external/l10n/nl.json
6021
%%WWWDIR%%/apps/files_external/l10n/ru.js
6021
%%WWWDIR%%/apps-pkg/files_external/l10n/nn_NO.js
6022
%%WWWDIR%%/apps/files_external/l10n/ru.json
6022
%%WWWDIR%%/apps-pkg/files_external/l10n/nn_NO.json
6023
%%WWWDIR%%/apps/files_external/l10n/si_LK.js
6023
%%WWWDIR%%/apps-pkg/files_external/l10n/oc.js
6024
%%WWWDIR%%/apps/files_external/l10n/si_LK.json
6024
%%WWWDIR%%/apps-pkg/files_external/l10n/oc.json
6025
%%WWWDIR%%/apps/files_external/l10n/sk.js
6025
%%WWWDIR%%/apps-pkg/files_external/l10n/pa.js
6026
%%WWWDIR%%/apps/files_external/l10n/sk.json
6026
%%WWWDIR%%/apps-pkg/files_external/l10n/pa.json
6027
%%WWWDIR%%/apps/files_external/l10n/sk_SK.js
6027
%%WWWDIR%%/apps-pkg/files_external/l10n/pl.js
6028
%%WWWDIR%%/apps/files_external/l10n/sk_SK.json
6028
%%WWWDIR%%/apps-pkg/files_external/l10n/pl.json
6029
%%WWWDIR%%/apps/files_external/l10n/sl.js
6029
%%WWWDIR%%/apps-pkg/files_external/l10n/pt_BR.js
6030
%%WWWDIR%%/apps/files_external/l10n/sl.json
6030
%%WWWDIR%%/apps-pkg/files_external/l10n/pt_BR.json
6031
%%WWWDIR%%/apps/files_external/l10n/sq.js
6031
%%WWWDIR%%/apps-pkg/files_external/l10n/pt_PT.js
6032
%%WWWDIR%%/apps/files_external/l10n/sq.json
6032
%%WWWDIR%%/apps-pkg/files_external/l10n/pt_PT.json
6033
%%WWWDIR%%/apps/files_external/l10n/sr.js
6033
%%WWWDIR%%/apps-pkg/files_external/l10n/ro.js
6034
%%WWWDIR%%/apps/files_external/l10n/sr.json
6034
%%WWWDIR%%/apps-pkg/files_external/l10n/ro.json
6035
%%WWWDIR%%/apps/files_external/l10n/sr@latin.js
6035
%%WWWDIR%%/apps-pkg/files_external/l10n/ru.js
6036
%%WWWDIR%%/apps/files_external/l10n/sr@latin.json
6036
%%WWWDIR%%/apps-pkg/files_external/l10n/ru.json
6037
%%WWWDIR%%/apps/files_external/l10n/sv.js
6037
%%WWWDIR%%/apps-pkg/files_external/l10n/si_LK.js
6038
%%WWWDIR%%/apps/files_external/l10n/sv.json
6038
%%WWWDIR%%/apps-pkg/files_external/l10n/si_LK.json
6039
%%WWWDIR%%/apps/files_external/l10n/ta_LK.js
6039
%%WWWDIR%%/apps-pkg/files_external/l10n/sk.js
6040
%%WWWDIR%%/apps/files_external/l10n/ta_LK.json
6040
%%WWWDIR%%/apps-pkg/files_external/l10n/sk.json
6041
%%WWWDIR%%/apps/files_external/l10n/te.js
6041
%%WWWDIR%%/apps-pkg/files_external/l10n/sk_SK.js
6042
%%WWWDIR%%/apps/files_external/l10n/te.json
6042
%%WWWDIR%%/apps-pkg/files_external/l10n/sk_SK.json
6043
%%WWWDIR%%/apps/files_external/l10n/th.js
6043
%%WWWDIR%%/apps-pkg/files_external/l10n/sl.js
6044
%%WWWDIR%%/apps/files_external/l10n/th.json
6044
%%WWWDIR%%/apps-pkg/files_external/l10n/sl.json
6045
%%WWWDIR%%/apps/files_external/l10n/th_TH.js
6045
%%WWWDIR%%/apps-pkg/files_external/l10n/sq.js
6046
%%WWWDIR%%/apps/files_external/l10n/th_TH.json
6046
%%WWWDIR%%/apps-pkg/files_external/l10n/sq.json
6047
%%WWWDIR%%/apps/files_external/l10n/tr.js
6047
%%WWWDIR%%/apps-pkg/files_external/l10n/sr.js
6048
%%WWWDIR%%/apps/files_external/l10n/tr.json
6048
%%WWWDIR%%/apps-pkg/files_external/l10n/sr.json
6049
%%WWWDIR%%/apps/files_external/l10n/ug.js
6049
%%WWWDIR%%/apps-pkg/files_external/l10n/sr@latin.js
6050
%%WWWDIR%%/apps/files_external/l10n/ug.json
6050
%%WWWDIR%%/apps-pkg/files_external/l10n/sr@latin.json
6051
%%WWWDIR%%/apps/files_external/l10n/uk.js
6051
%%WWWDIR%%/apps-pkg/files_external/l10n/sv.js
6052
%%WWWDIR%%/apps/files_external/l10n/uk.json
6052
%%WWWDIR%%/apps-pkg/files_external/l10n/sv.json
6053
%%WWWDIR%%/apps/files_external/l10n/ur_PK.js
6053
%%WWWDIR%%/apps-pkg/files_external/l10n/ta_LK.js
6054
%%WWWDIR%%/apps/files_external/l10n/ur_PK.json
6054
%%WWWDIR%%/apps-pkg/files_external/l10n/ta_LK.json
6055
%%WWWDIR%%/apps/files_external/l10n/vi.js
6055
%%WWWDIR%%/apps-pkg/files_external/l10n/te.js
6056
%%WWWDIR%%/apps/files_external/l10n/vi.json
6056
%%WWWDIR%%/apps-pkg/files_external/l10n/te.json
6057
%%WWWDIR%%/apps/files_external/l10n/zh_CN.js
6057
%%WWWDIR%%/apps-pkg/files_external/l10n/th.js
6058
%%WWWDIR%%/apps/files_external/l10n/zh_CN.json
6058
%%WWWDIR%%/apps-pkg/files_external/l10n/th.json
6059
%%WWWDIR%%/apps/files_external/l10n/zh_HK.js
6059
%%WWWDIR%%/apps-pkg/files_external/l10n/th_TH.js
6060
%%WWWDIR%%/apps/files_external/l10n/zh_HK.json
6060
%%WWWDIR%%/apps-pkg/files_external/l10n/th_TH.json
6061
%%WWWDIR%%/apps/files_external/l10n/zh_TW.js
6061
%%WWWDIR%%/apps-pkg/files_external/l10n/tr.js
6062
%%WWWDIR%%/apps/files_external/l10n/zh_TW.json
6062
%%WWWDIR%%/apps-pkg/files_external/l10n/tr.json
6063
%%WWWDIR%%/apps/files_external/lib/AppInfo/Application.php
6063
%%WWWDIR%%/apps-pkg/files_external/l10n/ug.js
6064
%%WWWDIR%%/apps/files_external/lib/Command/Applicable.php
6064
%%WWWDIR%%/apps-pkg/files_external/l10n/ug.json
6065
%%WWWDIR%%/apps/files_external/lib/Command/Backends.php
6065
%%WWWDIR%%/apps-pkg/files_external/l10n/uk.js
6066
%%WWWDIR%%/apps/files_external/lib/Command/Config.php
6066
%%WWWDIR%%/apps-pkg/files_external/l10n/uk.json
6067
%%WWWDIR%%/apps/files_external/lib/Command/Create.php
6067
%%WWWDIR%%/apps-pkg/files_external/l10n/ur_PK.js
6068
%%WWWDIR%%/apps/files_external/lib/Command/Delete.php
6068
%%WWWDIR%%/apps-pkg/files_external/l10n/ur_PK.json
6069
%%WWWDIR%%/apps/files_external/lib/Command/Export.php
6069
%%WWWDIR%%/apps-pkg/files_external/l10n/vi.js
6070
%%WWWDIR%%/apps/files_external/lib/Command/Import.php
6070
%%WWWDIR%%/apps-pkg/files_external/l10n/vi.json
6071
%%WWWDIR%%/apps/files_external/lib/Command/ListCommand.php
6071
%%WWWDIR%%/apps-pkg/files_external/l10n/zh_CN.js
6072
%%WWWDIR%%/apps/files_external/lib/Command/Notify.php
6072
%%WWWDIR%%/apps-pkg/files_external/l10n/zh_CN.json
6073
%%WWWDIR%%/apps/files_external/lib/Command/Option.php
6073
%%WWWDIR%%/apps-pkg/files_external/l10n/zh_HK.js
6074
%%WWWDIR%%/apps/files_external/lib/Command/Verify.php
6074
%%WWWDIR%%/apps-pkg/files_external/l10n/zh_HK.json
6075
%%WWWDIR%%/apps/files_external/lib/Config/ConfigAdapter.php
6075
%%WWWDIR%%/apps-pkg/files_external/l10n/zh_TW.js
6076
%%WWWDIR%%/apps/files_external/lib/Config/ExternalMountPoint.php
6076
%%WWWDIR%%/apps-pkg/files_external/l10n/zh_TW.json
6077
%%WWWDIR%%/apps/files_external/lib/Controller/AjaxController.php
6077
%%WWWDIR%%/apps-pkg/files_external/lib/AppInfo/Application.php
6078
%%WWWDIR%%/apps/files_external/lib/Controller/GlobalStoragesController.php
6078
%%WWWDIR%%/apps-pkg/files_external/lib/Command/Applicable.php
6079
%%WWWDIR%%/apps/files_external/lib/Controller/StoragesController.php
6079
%%WWWDIR%%/apps-pkg/files_external/lib/Command/Backends.php
6080
%%WWWDIR%%/apps/files_external/lib/Controller/UserGlobalStoragesController.php
6080
%%WWWDIR%%/apps-pkg/files_external/lib/Command/Config.php
6081
%%WWWDIR%%/apps/files_external/lib/Controller/UserStoragesController.php
6081
%%WWWDIR%%/apps-pkg/files_external/lib/Command/Create.php
6082
%%WWWDIR%%/apps/files_external/lib/Lib/Api.php
6082
%%WWWDIR%%/apps-pkg/files_external/lib/Command/Delete.php
6083
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/AmazonS3/AccessKey.php
6083
%%WWWDIR%%/apps-pkg/files_external/lib/Command/Export.php
6084
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/AuthMechanism.php
6084
%%WWWDIR%%/apps-pkg/files_external/lib/Command/Import.php
6085
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Builtin.php
6085
%%WWWDIR%%/apps-pkg/files_external/lib/Command/ListCommand.php
6086
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/IUserProvided.php
6086
%%WWWDIR%%/apps-pkg/files_external/lib/Command/Notify.php
6087
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/InvalidAuth.php
6087
%%WWWDIR%%/apps-pkg/files_external/lib/Command/Option.php
6088
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/NullMechanism.php
6088
%%WWWDIR%%/apps-pkg/files_external/lib/Command/Verify.php
6089
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OAuth1/OAuth1.php
6089
%%WWWDIR%%/apps-pkg/files_external/lib/Config/ConfigAdapter.php
6090
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OAuth2/OAuth2.php
6090
%%WWWDIR%%/apps-pkg/files_external/lib/Config/ExternalMountPoint.php
6091
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OpenStack/OpenStack.php
6091
%%WWWDIR%%/apps-pkg/files_external/lib/Controller/AjaxController.php
6092
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OpenStack/Rackspace.php
6092
%%WWWDIR%%/apps-pkg/files_external/lib/Controller/GlobalStoragesController.php
6093
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Password/GlobalAuth.php
6093
%%WWWDIR%%/apps-pkg/files_external/lib/Controller/StoragesController.php
6094
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Password/LoginCredentials.php
6094
%%WWWDIR%%/apps-pkg/files_external/lib/Controller/UserGlobalStoragesController.php
6095
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Password/Password.php
6095
%%WWWDIR%%/apps-pkg/files_external/lib/Controller/UserStoragesController.php
6096
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Password/SessionCredentials.php
6096
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Api.php
6097
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Password/UserProvided.php
6097
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/AmazonS3/AccessKey.php
6098
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/PublicKey/RSA.php
6098
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/AuthMechanism.php
6099
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/AmazonS3.php
6099
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/Builtin.php
6100
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Backend.php
6100
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/IUserProvided.php
6101
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/DAV.php
6101
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/InvalidAuth.php
6102
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/FTP.php
6102
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/NullMechanism.php
6103
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/InvalidBackend.php
6103
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/OAuth1/OAuth1.php
6104
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/LegacyBackend.php
6104
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/OAuth2/OAuth2.php
6105
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Local.php
6105
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/OpenStack/OpenStack.php
6106
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/OwnCloud.php
6106
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/OpenStack/Rackspace.php
6107
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/SFTP.php
6107
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/Password/GlobalAuth.php
6108
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/SFTP_Key.php
6108
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/Password/LoginCredentials.php
6109
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/SMB.php
6109
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/Password/Password.php
6110
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/SMB_OC.php
6110
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/Password/SessionCredentials.php
6111
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Swift.php
6111
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/Password/UserProvided.php
6112
%%WWWDIR%%/apps/files_external/lib/Lib/Config/IAuthMechanismProvider.php
6112
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/PublicKey/RSA.php
6113
%%WWWDIR%%/apps/files_external/lib/Lib/Config/IBackendProvider.php
6113
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/AmazonS3.php
6114
%%WWWDIR%%/apps/files_external/lib/Lib/DefinitionParameter.php
6114
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/Backend.php
6115
%%WWWDIR%%/apps/files_external/lib/Lib/DependencyTrait.php
6115
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/DAV.php
6116
%%WWWDIR%%/apps/files_external/lib/Lib/FrontendDefinitionTrait.php
6116
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/FTP.php
6117
%%WWWDIR%%/apps/files_external/lib/Lib/IdentifierTrait.php
6117
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/InvalidBackend.php
6118
%%WWWDIR%%/apps/files_external/lib/Lib/InsufficientDataForMeaningfulAnswerException.php
6118
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/LegacyBackend.php
6119
%%WWWDIR%%/apps/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php
6119
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/Local.php
6120
%%WWWDIR%%/apps/files_external/lib/Lib/MissingDependency.php
6120
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/OwnCloud.php
6121
%%WWWDIR%%/apps/files_external/lib/Lib/Notify/SMBNotifyHandler.php
6121
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/SFTP.php
6122
%%WWWDIR%%/apps/files_external/lib/Lib/PersonalMount.php
6122
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/SFTP_Key.php
6123
%%WWWDIR%%/apps/files_external/lib/Lib/PriorityTrait.php
6123
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/SMB.php
6124
%%WWWDIR%%/apps/files_external/lib/Lib/SessionStorageWrapper.php
6124
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/SMB_OC.php
6125
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/AmazonS3.php
6125
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/Swift.php
6126
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/FTP.php
6126
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Config/IAuthMechanismProvider.php
6127
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/OwnCloud.php
6127
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Config/IBackendProvider.php
6128
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/SFTP.php
6128
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/DefinitionParameter.php
6129
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/SMB.php
6129
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/DependencyTrait.php
6130
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/StreamWrapper.php
6130
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/FrontendDefinitionTrait.php
6131
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/Swift.php
6131
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/IdentifierTrait.php
6132
%%WWWDIR%%/apps/files_external/lib/Lib/StorageConfig.php
6132
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/InsufficientDataForMeaningfulAnswerException.php
6133
%%WWWDIR%%/apps/files_external/lib/Lib/StorageModifierTrait.php
6133
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php
6134
%%WWWDIR%%/apps/files_external/lib/Lib/VisibilityTrait.php
6134
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/MissingDependency.php
6135
%%WWWDIR%%/apps/files_external/lib/Migration/DummyUserSession.php
6135
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Notify/SMBNotifyHandler.php
6136
%%WWWDIR%%/apps/files_external/lib/Migration/StorageMigrator.php
6136
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/PersonalMount.php
6137
%%WWWDIR%%/apps/files_external/lib/NotFoundException.php
6137
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/PriorityTrait.php
6138
%%WWWDIR%%/apps/files_external/lib/Service/BackendService.php
6138
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/SessionStorageWrapper.php
6139
%%WWWDIR%%/apps/files_external/lib/Service/DBConfigService.php
6139
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Storage/AmazonS3.php
6140
%%WWWDIR%%/apps/files_external/lib/Service/GlobalStoragesService.php
6140
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Storage/FTP.php
6141
%%WWWDIR%%/apps/files_external/lib/Service/ImportLegacyStoragesService.php
6141
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Storage/OwnCloud.php
6142
%%WWWDIR%%/apps/files_external/lib/Service/LegacyStoragesService.php
6142
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Storage/SFTP.php
6143
%%WWWDIR%%/apps/files_external/lib/Service/StoragesService.php
6143
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Storage/SMB.php
6144
%%WWWDIR%%/apps/files_external/lib/Service/UserGlobalStoragesService.php
6144
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Storage/StreamWrapper.php
6145
%%WWWDIR%%/apps/files_external/lib/Service/UserLegacyStoragesService.php
6145
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Storage/Swift.php
6146
%%WWWDIR%%/apps/files_external/lib/Service/UserStoragesService.php
6146
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/StorageConfig.php
6147
%%WWWDIR%%/apps/files_external/lib/Service/UserTrait.php
6147
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/StorageModifierTrait.php
6148
%%WWWDIR%%/apps/files_external/lib/Settings/Admin.php
6148
%%WWWDIR%%/apps-pkg/files_external/lib/Lib/VisibilityTrait.php
6149
%%WWWDIR%%/apps/files_external/lib/Settings/Personal.php
6149
%%WWWDIR%%/apps-pkg/files_external/lib/Migration/DummyUserSession.php
6150
%%WWWDIR%%/apps/files_external/lib/Settings/PersonalSection.php
6150
%%WWWDIR%%/apps-pkg/files_external/lib/Migration/StorageMigrator.php
6151
%%WWWDIR%%/apps/files_external/lib/Settings/Section.php
6151
%%WWWDIR%%/apps-pkg/files_external/lib/NotFoundException.php
6152
%%WWWDIR%%/apps/files_external/lib/config.php
6152
%%WWWDIR%%/apps-pkg/files_external/lib/Service/BackendService.php
6153
%%WWWDIR%%/apps/files_external/list.php
6153
%%WWWDIR%%/apps-pkg/files_external/lib/Service/DBConfigService.php
6154
%%WWWDIR%%/apps/files_external/templates/list.php
6154
%%WWWDIR%%/apps-pkg/files_external/lib/Service/GlobalStoragesService.php
6155
%%WWWDIR%%/apps/files_external/templates/settings.php
6155
%%WWWDIR%%/apps-pkg/files_external/lib/Service/ImportLegacyStoragesService.php
6156
%%WWWDIR%%/apps/files_pdfviewer/.github/contributing.md
6156
%%WWWDIR%%/apps-pkg/files_external/lib/Service/LegacyStoragesService.php
6157
%%WWWDIR%%/apps/files_pdfviewer/.github/issue_template.md
6157
%%WWWDIR%%/apps-pkg/files_external/lib/Service/StoragesService.php
6158
%%WWWDIR%%/apps/files_pdfviewer/appinfo/app.php
6158
%%WWWDIR%%/apps-pkg/files_external/lib/Service/UserGlobalStoragesService.php
6159
%%WWWDIR%%/apps/files_pdfviewer/appinfo/info.xml
6159
%%WWWDIR%%/apps-pkg/files_external/lib/Service/UserLegacyStoragesService.php
6160
%%WWWDIR%%/apps/files_pdfviewer/appinfo/routes.php
6160
%%WWWDIR%%/apps-pkg/files_external/lib/Service/UserStoragesService.php
6161
%%WWWDIR%%/apps/files_pdfviewer/appinfo/signature.json
6161
%%WWWDIR%%/apps-pkg/files_external/lib/Service/UserTrait.php
6162
%%WWWDIR%%/apps/files_pdfviewer/controller/displaycontroller.php
6162
%%WWWDIR%%/apps-pkg/files_external/lib/Settings/Admin.php
6163
%%WWWDIR%%/apps/files_pdfviewer/css/minmode.css
6163
%%WWWDIR%%/apps-pkg/files_external/lib/Settings/Personal.php
6164
%%WWWDIR%%/apps/files_pdfviewer/css/style.css
6164
%%WWWDIR%%/apps-pkg/files_external/lib/Settings/PersonalSection.php
6165
%%WWWDIR%%/apps/files_pdfviewer/css/viewer.css
6165
%%WWWDIR%%/apps-pkg/files_external/lib/Settings/Section.php
6166
%%WWWDIR%%/apps/files_pdfviewer/img/app.png
6166
%%WWWDIR%%/apps-pkg/files_external/lib/config.php
6167
%%WWWDIR%%/apps/files_pdfviewer/img/app.svg
6167
%%WWWDIR%%/apps-pkg/files_external/list.php
6168
%%WWWDIR%%/apps/files_pdfviewer/img/toolbarButton-secondaryToolbarClose.svg
6168
%%WWWDIR%%/apps-pkg/files_external/templates/list.php
6169
%%WWWDIR%%/apps/files_pdfviewer/js/previewplugin.js
6169
%%WWWDIR%%/apps-pkg/files_external/templates/settings.php
6170
%%WWWDIR%%/apps/files_pdfviewer/js/workersrc.js
6170
%%WWWDIR%%/apps-pkg/files_pdfviewer/.github/contributing.md
6171
%%WWWDIR%%/apps/files_pdfviewer/templates/viewer.php
6171
%%WWWDIR%%/apps-pkg/files_pdfviewer/.github/issue_template.md
6172
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/LICENSE
6172
%%WWWDIR%%/apps-pkg/files_pdfviewer/appinfo/app.php
6173
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/build/pdf.js
6173
%%WWWDIR%%/apps-pkg/files_pdfviewer/appinfo/info.xml
6174
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/build/pdf.worker.js
6174
%%WWWDIR%%/apps-pkg/files_pdfviewer/appinfo/routes.php
6175
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-EUC-H.bcmap
6175
%%WWWDIR%%/apps-pkg/files_pdfviewer/appinfo/signature.json
6176
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-EUC-V.bcmap
6176
%%WWWDIR%%/apps-pkg/files_pdfviewer/controller/displaycontroller.php
6177
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-H.bcmap
6177
%%WWWDIR%%/apps-pkg/files_pdfviewer/css/minmode.css
6178
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-RKSJ-H.bcmap
6178
%%WWWDIR%%/apps-pkg/files_pdfviewer/css/style.css
6179
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-RKSJ-V.bcmap
6179
%%WWWDIR%%/apps-pkg/files_pdfviewer/css/viewer.css
6180
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-V.bcmap
6180
%%WWWDIR%%/apps-pkg/files_pdfviewer/img/app.png
6181
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap
6181
%%WWWDIR%%/apps-pkg/files_pdfviewer/img/app.svg
6182
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap
6182
%%WWWDIR%%/apps-pkg/files_pdfviewer/img/toolbarButton-secondaryToolbarClose.svg
6183
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap
6183
%%WWWDIR%%/apps-pkg/files_pdfviewer/js/previewplugin.js
6184
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap
6184
%%WWWDIR%%/apps-pkg/files_pdfviewer/js/workersrc.js
6185
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap
6185
%%WWWDIR%%/apps-pkg/files_pdfviewer/templates/viewer.php
6186
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap
6186
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/LICENSE
6187
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap
6187
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/build/pdf.js
6188
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap
6188
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/build/pdf.js.map
6189
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap
6189
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/build/pdf.worker.js
6190
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-H.bcmap
6190
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/build/pdf.worker.js.map
6191
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-RKSJ-H.bcmap
6191
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78-EUC-H.bcmap
6192
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-RKSJ-V.bcmap
6192
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78-EUC-V.bcmap
6193
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-V.bcmap
6193
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78-H.bcmap
6194
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap
6194
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78-RKSJ-H.bcmap
6195
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap
6195
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78-RKSJ-V.bcmap
6196
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap
6196
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78-V.bcmap
6197
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap
6197
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap
6198
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap
6198
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap
6199
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap
6199
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap
6200
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap
6200
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap
6201
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap
6201
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap
6202
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-0.bcmap
6202
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap
6203
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-1.bcmap
6203
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap
6204
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-2.bcmap
6204
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap
6205
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-3.bcmap
6205
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap
6206
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-4.bcmap
6206
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-H.bcmap
6207
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-5.bcmap
6207
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-RKSJ-H.bcmap
6208
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap
6208
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-RKSJ-V.bcmap
6209
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap
6209
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-V.bcmap
6210
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap
6210
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap
6211
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap
6211
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap
6212
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap
6212
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap
6213
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap
6213
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap
6214
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap
6214
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap
6215
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap
6215
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap
6216
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap
6216
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap
6217
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap
6217
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap
6218
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap
6218
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-0.bcmap
6219
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap
6219
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-1.bcmap
6220
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap
6220
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-2.bcmap
6221
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/B5-H.bcmap
6221
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-3.bcmap
6222
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/B5-V.bcmap
6222
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-4.bcmap
6223
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/B5pc-H.bcmap
6223
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-5.bcmap
6224
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/B5pc-V.bcmap
6224
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap
6225
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS-EUC-H.bcmap
6225
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap
6226
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS-EUC-V.bcmap
6226
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap
6227
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS1-H.bcmap
6227
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap
6228
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS1-V.bcmap
6228
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap
6229
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS2-H.bcmap
6229
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap
6230
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS2-V.bcmap
6230
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap
6231
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETHK-B5-H.bcmap
6231
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap
6232
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETHK-B5-V.bcmap
6232
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap
6233
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETen-B5-H.bcmap
6233
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap
6234
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETen-B5-V.bcmap
6234
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap
6235
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETenms-B5-H.bcmap
6235
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap
6236
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETenms-B5-V.bcmap
6236
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap
6237
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/EUC-H.bcmap
6237
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/B5-H.bcmap
6238
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/EUC-V.bcmap
6238
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/B5-V.bcmap
6239
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-H.bcmap
6239
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/B5pc-H.bcmap
6240
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap
6240
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/B5pc-V.bcmap
6241
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap
6241
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS-EUC-H.bcmap
6242
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-V.bcmap
6242
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS-EUC-V.bcmap
6243
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-EUC-H.bcmap
6243
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS1-H.bcmap
6244
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-EUC-V.bcmap
6244
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS1-V.bcmap
6245
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-H.bcmap
6245
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS2-H.bcmap
6246
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-V.bcmap
6246
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS2-V.bcmap
6247
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK-EUC-H.bcmap
6247
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/ETHK-B5-H.bcmap
6248
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK-EUC-V.bcmap
6248
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/ETHK-B5-V.bcmap
6249
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK2K-H.bcmap
6249
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/ETen-B5-H.bcmap
6250
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK2K-V.bcmap
6250
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/ETen-B5-V.bcmap
6251
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBKp-EUC-H.bcmap
6251
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/ETenms-B5-H.bcmap
6252
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBKp-EUC-V.bcmap
6252
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/ETenms-B5-V.bcmap
6253
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-EUC-H.bcmap
6253
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/EUC-H.bcmap
6254
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-EUC-V.bcmap
6254
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/EUC-V.bcmap
6255
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-H.bcmap
6255
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-H.bcmap
6256
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-V.bcmap
6256
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap
6257
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap
6257
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap
6258
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap
6258
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-V.bcmap
6259
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBpc-EUC-H.bcmap
6259
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-EUC-H.bcmap
6260
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBpc-EUC-V.bcmap
6260
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-EUC-V.bcmap
6261
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/H.bcmap
6261
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-H.bcmap
6262
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdla-B5-H.bcmap
6262
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-V.bcmap
6263
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdla-B5-V.bcmap
6263
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK-EUC-H.bcmap
6264
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdlb-B5-H.bcmap
6264
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK-EUC-V.bcmap
6265
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdlb-B5-V.bcmap
6265
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK2K-H.bcmap
6266
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKgccs-B5-H.bcmap
6266
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK2K-V.bcmap
6267
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKgccs-B5-V.bcmap
6267
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBKp-EUC-H.bcmap
6268
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm314-B5-H.bcmap
6268
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBKp-EUC-V.bcmap
6269
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm314-B5-V.bcmap
6269
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-EUC-H.bcmap
6270
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm471-B5-H.bcmap
6270
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-EUC-V.bcmap
6271
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm471-B5-V.bcmap
6271
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-H.bcmap
6272
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKscs-B5-H.bcmap
6272
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-V.bcmap
6273
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKscs-B5-V.bcmap
6273
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap
6274
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Hankaku.bcmap
6274
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap
6275
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Hiragana.bcmap
6275
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBpc-EUC-H.bcmap
6276
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-EUC-H.bcmap
6276
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBpc-EUC-V.bcmap
6277
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-EUC-V.bcmap
6277
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/H.bcmap
6278
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-H.bcmap
6278
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdla-B5-H.bcmap
6279
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-Johab-H.bcmap
6279
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdla-B5-V.bcmap
6280
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-Johab-V.bcmap
6280
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdlb-B5-H.bcmap
6281
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-V.bcmap
6281
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdlb-B5-V.bcmap
6282
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-H.bcmap
6282
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKgccs-B5-H.bcmap
6283
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap
6283
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKgccs-B5-V.bcmap
6284
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap
6284
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm314-B5-H.bcmap
6285
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-V.bcmap
6285
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm314-B5-V.bcmap
6286
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap
6286
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm471-B5-H.bcmap
6287
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap
6287
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm471-B5-V.bcmap
6288
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Katakana.bcmap
6288
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKscs-B5-H.bcmap
6289
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/LICENSE
6289
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKscs-B5-V.bcmap
6290
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/NWP-H.bcmap
6290
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Hankaku.bcmap
6291
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/NWP-V.bcmap
6291
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Hiragana.bcmap
6292
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/RKSJ-H.bcmap
6292
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-EUC-H.bcmap
6293
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/RKSJ-V.bcmap
6293
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-EUC-V.bcmap
6294
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Roman.bcmap
6294
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-H.bcmap
6295
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap
6295
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-Johab-H.bcmap
6296
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap
6296
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-Johab-V.bcmap
6297
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap
6297
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-V.bcmap
6298
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap
6298
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-H.bcmap
6299
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap
6299
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap
6300
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap
6300
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap
6301
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap
6301
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-V.bcmap
6302
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap
6302
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap
6303
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap
6303
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap
6304
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap
6304
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Katakana.bcmap
6305
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap
6305
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/LICENSE
6306
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap
6306
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/NWP-H.bcmap
6307
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap
6307
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/NWP-V.bcmap
6308
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap
6308
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/RKSJ-H.bcmap
6309
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap
6309
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/RKSJ-V.bcmap
6310
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap
6310
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Roman.bcmap
6311
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap
6311
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap
6312
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap
6312
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap
6313
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap
6313
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap
6314
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap
6314
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap
6315
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap
6315
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap
6316
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap
6316
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap
6317
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap
6317
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap
6318
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap
6318
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap
6319
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap
6319
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap
6320
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap
6320
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap
6321
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap
6321
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap
6322
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap
6322
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap
6323
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap
6323
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap
6324
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap
6324
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap
6325
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap
6325
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap
6326
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap
6326
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap
6327
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap
6327
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap
6328
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap
6328
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap
6329
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap
6329
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap
6330
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap
6330
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap
6331
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap
6331
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap
6332
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap
6332
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap
6333
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap
6333
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap
6334
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap
6334
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap
6335
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap
6335
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap
6336
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap
6336
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap
6337
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap
6337
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap
6338
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap
6338
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap
6339
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap
6339
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap
6340
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap
6340
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap
6341
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap
6341
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap
6342
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/V.bcmap
6342
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap
6343
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/WP-Symbol.bcmap
6343
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap
6344
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/compatibility.js
6344
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap
6345
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/debugger.js
6345
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap
6346
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-check.svg
6346
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap
6347
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-comment.svg
6347
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap
6348
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-help.svg
6348
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap
6349
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-insert.svg
6349
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap
6350
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-key.svg
6350
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap
6351
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-newparagraph.svg
6351
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap
6352
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-noicon.svg
6352
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap
6353
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-note.svg
6353
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap
6354
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-paragraph.svg
6354
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap
6355
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next-rtl.png
6355
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap
6356
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next-rtl@2x.png
6356
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap
6357
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next.png
6357
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap
6358
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next@2x.png
6358
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/V.bcmap
6359
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous-rtl.png
6359
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/WP-Symbol.bcmap
6360
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous-rtl@2x.png
6360
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/debugger.js
6361
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous.png
6361
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-check.svg
6362
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous@2x.png
6362
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-comment.svg
6363
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/grab.cur
6363
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-help.svg
6364
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/grabbing.cur
6364
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-insert.svg
6365
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/loading-icon.gif
6365
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-key.svg
6366
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/loading-small.png
6366
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-newparagraph.svg
6367
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/loading-small@2x.png
6367
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-noicon.svg
6368
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-documentProperties.png
6368
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-note.svg
6369
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-documentProperties@2x.png
6369
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-paragraph.svg
6370
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-firstPage.png
6370
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next-rtl.png
6371
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-firstPage@2x.png
6371
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next-rtl@2x.png
6372
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-handTool.png
6372
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next.png
6373
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-handTool@2x.png
6373
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next@2x.png
6374
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-lastPage.png
6374
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous-rtl.png
6375
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-lastPage@2x.png
6375
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous-rtl@2x.png
6376
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCcw.png
6376
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous.png
6377
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCcw@2x.png
6377
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous@2x.png
6378
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCw.png
6378
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/grab.cur
6379
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCw@2x.png
6379
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/grabbing.cur
6380
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/shadow.png
6380
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/loading-icon.gif
6381
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/texture.png
6381
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/loading-small.png
6382
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-bookmark.png
6382
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/loading-small@2x.png
6383
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-bookmark@2x.png
6383
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-documentProperties.png
6384
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-download.png
6384
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-documentProperties@2x.png
6385
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-download@2x.png
6385
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-firstPage.png
6386
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-menuArrows.png
6386
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-firstPage@2x.png
6387
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-menuArrows@2x.png
6387
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-handTool.png
6388
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-openFile.png
6388
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-handTool@2x.png
6389
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-openFile@2x.png
6389
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-lastPage.png
6390
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown-rtl.png
6390
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-lastPage@2x.png
6391
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown-rtl@2x.png
6391
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCcw.png
6392
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown.png
6392
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCcw@2x.png
6393
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown@2x.png
6393
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCw.png
6394
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp-rtl.png
6394
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCw@2x.png
6395
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp-rtl@2x.png
6395
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-selectTool.png
6396
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp.png
6396
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-selectTool@2x.png
6397
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp@2x.png
6397
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/shadow.png
6398
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-presentationMode.png
6398
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/texture.png
6399
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-presentationMode@2x.png
6399
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-bookmark.png
6400
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-print.png
6400
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-bookmark@2x.png
6401
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-print@2x.png
6401
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-download.png
6402
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-search.png
6402
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-download@2x.png
6403
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-search@2x.png
6403
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-menuArrows.png
6404
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl.png
6404
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-menuArrows@2x.png
6405
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png
6405
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-openFile.png
6406
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.png
6406
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-openFile@2x.png
6407
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle@2x.png
6407
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown-rtl.png
6408
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle-rtl.png
6408
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown-rtl@2x.png
6409
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle-rtl@2x.png
6409
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown.png
6410
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle.png
6410
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown@2x.png
6411
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle@2x.png
6411
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp-rtl.png
6412
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewAttachments.png
6412
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp-rtl@2x.png
6413
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewAttachments@2x.png
6413
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp.png
6414
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline-rtl.png
6414
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp@2x.png
6415
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline-rtl@2x.png
6415
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-presentationMode.png
6416
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline.png
6416
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-presentationMode@2x.png
6417
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline@2x.png
6417
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-print.png
6418
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewThumbnail.png
6418
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-print@2x.png
6419
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewThumbnail@2x.png
6419
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-search.png
6420
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomIn.png
6420
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-search@2x.png
6421
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomIn@2x.png
6421
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl.png
6422
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomOut.png
6422
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png
6423
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomOut@2x.png
6423
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.png
6424
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed-rtl.png
6424
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle@2x.png
6425
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed-rtl@2x.png
6425
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle-rtl.png
6426
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed.png
6426
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle-rtl@2x.png
6427
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed@2x.png
6427
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle.png
6428
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-expanded.png
6428
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle@2x.png
6429
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-expanded@2x.png
6429
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewAttachments.png
6430
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/l10n.js
6430
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewAttachments@2x.png
6431
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ach/viewer.properties
6431
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline-rtl.png
6432
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/af/viewer.properties
6432
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline-rtl@2x.png
6433
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ak/viewer.properties
6433
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline.png
6434
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/an/viewer.properties
6434
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline@2x.png
6435
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ar/viewer.properties
6435
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewThumbnail.png
6436
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/as/viewer.properties
6436
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewThumbnail@2x.png
6437
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ast/viewer.properties
6437
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomIn.png
6438
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/az/viewer.properties
6438
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomIn@2x.png
6439
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/be/viewer.properties
6439
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomOut.png
6440
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/bg/viewer.properties
6440
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomOut@2x.png
6441
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/bn-BD/viewer.properties
6441
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed-rtl.png
6442
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/bn-IN/viewer.properties
6442
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed-rtl@2x.png
6443
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/br/viewer.properties
6443
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed.png
6444
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/bs/viewer.properties
6444
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed@2x.png
6445
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ca/viewer.properties
6445
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/treeitem-expanded.png
6446
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/cs/viewer.properties
6446
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/treeitem-expanded@2x.png
6447
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/csb/viewer.properties
6447
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ach/viewer.properties
6448
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/cy/viewer.properties
6448
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/af/viewer.properties
6449
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/da/viewer.properties
6449
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ak/viewer.properties
6450
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/de/viewer.properties
6450
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/an/viewer.properties
6451
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/el/viewer.properties
6451
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ar/viewer.properties
6452
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/en-GB/viewer.properties
6452
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/as/viewer.properties
6453
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/en-US/viewer.properties
6453
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ast/viewer.properties
6454
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/en-ZA/viewer.properties
6454
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/az/viewer.properties
6455
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/eo/viewer.properties
6455
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/be/viewer.properties
6456
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/es-AR/viewer.properties
6456
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/bg/viewer.properties
6457
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/es-CL/viewer.properties
6457
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/bn-BD/viewer.properties
6458
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/es-ES/viewer.properties
6458
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/bn-IN/viewer.properties
6459
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/es-MX/viewer.properties
6459
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/br/viewer.properties
6460
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/et/viewer.properties
6460
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/bs/viewer.properties
6461
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/eu/viewer.properties
6461
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ca/viewer.properties
6462
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/fa/viewer.properties
6462
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/cs/viewer.properties
6463
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ff/viewer.properties
6463
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/csb/viewer.properties
6464
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/fi/viewer.properties
6464
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/cy/viewer.properties
6465
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/fr/viewer.properties
6465
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/da/viewer.properties
6466
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/fy-NL/viewer.properties
6466
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/de/viewer.properties
6467
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ga-IE/viewer.properties
6467
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/el/viewer.properties
6468
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/gd/viewer.properties
6468
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/en-GB/viewer.properties
6469
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/gl/viewer.properties
6469
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/en-US/viewer.properties
6470
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/gu-IN/viewer.properties
6470
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/en-ZA/viewer.properties
6471
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/he/viewer.properties
6471
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/eo/viewer.properties
6472
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/hi-IN/viewer.properties
6472
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/es-AR/viewer.properties
6473
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/hr/viewer.properties
6473
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/es-CL/viewer.properties
6474
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/hu/viewer.properties
6474
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/es-ES/viewer.properties
6475
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/hy-AM/viewer.properties
6475
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/es-MX/viewer.properties
6476
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/id/viewer.properties
6476
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/et/viewer.properties
6477
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/is/viewer.properties
6477
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/eu/viewer.properties
6478
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/it/viewer.properties
6478
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/fa/viewer.properties
6479
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ja/viewer.properties
6479
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ff/viewer.properties
6480
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ka/viewer.properties
6480
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/fi/viewer.properties
6481
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/kk/viewer.properties
6481
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/fr/viewer.properties
6482
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/km/viewer.properties
6482
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/fy-NL/viewer.properties
6483
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/kn/viewer.properties
6483
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ga-IE/viewer.properties
6484
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ko/viewer.properties
6484
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/gd/viewer.properties
6485
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ku/viewer.properties
6485
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/gl/viewer.properties
6486
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/lg/viewer.properties
6486
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/gu-IN/viewer.properties
6487
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/lij/viewer.properties
6487
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/he/viewer.properties
6488
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/locale.properties
6488
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/hi-IN/viewer.properties
6489
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/lt/viewer.properties
6489
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/hr/viewer.properties
6490
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/lv/viewer.properties
6490
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/hu/viewer.properties
6491
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/mai/viewer.properties
6491
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/hy-AM/viewer.properties
6492
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/mk/viewer.properties
6492
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/id/viewer.properties
6493
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ml/viewer.properties
6493
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/is/viewer.properties
6494
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/mn/viewer.properties
6494
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/it/viewer.properties
6495
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/mr/viewer.properties
6495
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ja/viewer.properties
6496
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ms/viewer.properties
6496
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ka/viewer.properties
6497
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/my/viewer.properties
6497
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/kk/viewer.properties
6498
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/nb-NO/viewer.properties
6498
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/km/viewer.properties
6499
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/nl/viewer.properties
6499
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/kn/viewer.properties
6500
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/nn-NO/viewer.properties
6500
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ko/viewer.properties
6501
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/nso/viewer.properties
6501
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ku/viewer.properties
6502
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/oc/viewer.properties
6502
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/lg/viewer.properties
6503
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/or/viewer.properties
6503
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/lij/viewer.properties
6504
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/pa-IN/viewer.properties
6504
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/locale.properties
6505
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/pl/viewer.properties
6505
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/lt/viewer.properties
6506
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/pt-BR/viewer.properties
6506
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/lv/viewer.properties
6507
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/pt-PT/viewer.properties
6507
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/mai/viewer.properties
6508
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/rm/viewer.properties
6508
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/mk/viewer.properties
6509
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ro/viewer.properties
6509
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ml/viewer.properties
6510
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ru/viewer.properties
6510
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/mn/viewer.properties
6511
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/rw/viewer.properties
6511
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/mr/viewer.properties
6512
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/sah/viewer.properties
6512
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ms/viewer.properties
6513
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/si/viewer.properties
6513
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/my/viewer.properties
6514
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/sk/viewer.properties
6514
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/nb-NO/viewer.properties
6515
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/sl/viewer.properties
6515
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/nl/viewer.properties
6516
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/son/viewer.properties
6516
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/nn-NO/viewer.properties
6517
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/sq/viewer.properties
6517
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/nso/viewer.properties
6518
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/sr/viewer.properties
6518
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/oc/viewer.properties
6519
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/sv-SE/viewer.properties
6519
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/or/viewer.properties
6520
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/sw/viewer.properties
6520
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/pa-IN/viewer.properties
6521
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ta-LK/viewer.properties
6521
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/pl/viewer.properties
6522
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ta/viewer.properties
6522
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/pt-BR/viewer.properties
6523
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/te/viewer.properties
6523
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/pt-PT/viewer.properties
6524
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/th/viewer.properties
6524
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/rm/viewer.properties
6525
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/tl/viewer.properties
6525
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ro/viewer.properties
6526
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/tn/viewer.properties
6526
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ru/viewer.properties
6527
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/tr/viewer.properties
6527
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/rw/viewer.properties
6528
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/uk/viewer.properties
6528
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/sah/viewer.properties
6529
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ur/viewer.properties
6529
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/si/viewer.properties
6530
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/vi/viewer.properties
6530
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/sk/viewer.properties
6531
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/wo/viewer.properties
6531
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/sl/viewer.properties
6532
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/xh/viewer.properties
6532
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/son/viewer.properties
6533
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/zh-CN/viewer.properties
6533
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/sq/viewer.properties
6534
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/zh-TW/viewer.properties
6534
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/sr/viewer.properties
6535
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/zu/viewer.properties
6535
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/sv-SE/viewer.properties
6536
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/viewer.css
6536
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/sw/viewer.properties
6537
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/viewer.js
6537
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ta-LK/viewer.properties
6538
%%WWWDIR%%/apps/files_sharing/appinfo/app.php
6538
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ta/viewer.properties
6539
%%WWWDIR%%/apps/files_sharing/appinfo/database.xml
6539
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/te/viewer.properties
6540
%%WWWDIR%%/apps/files_sharing/appinfo/info.xml
6540
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/th/viewer.properties
6541
%%WWWDIR%%/apps/files_sharing/appinfo/routes.php
6541
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/tl/viewer.properties
6542
%%WWWDIR%%/apps/files_sharing/appinfo/signature.json
6542
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/tn/viewer.properties
6543
%%WWWDIR%%/apps/files_sharing/composer/autoload.php
6543
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/tr/viewer.properties
6544
%%WWWDIR%%/apps/files_sharing/composer/composer.json
6544
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/uk/viewer.properties
6545
%%WWWDIR%%/apps/files_sharing/composer/composer/ClassLoader.php
6545
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ur/viewer.properties
6546
%%WWWDIR%%/apps/files_sharing/composer/composer/LICENSE
6546
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/vi/viewer.properties
6547
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_classmap.php
6547
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/wo/viewer.properties
6548
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_namespaces.php
6548
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/xh/viewer.properties
6549
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_psr4.php
6549
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/zh-CN/viewer.properties
6550
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_real.php
6550
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/zh-TW/viewer.properties
6551
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_static.php
6551
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/zu/viewer.properties
6552
%%WWWDIR%%/apps/files_sharing/css/404.css
6552
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/viewer.css
6553
%%WWWDIR%%/apps/files_sharing/css/authenticate.css
6553
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/viewer.js
6554
%%WWWDIR%%/apps/files_sharing/css/mergedAdditionalStyles.scss
6554
%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/viewer.js.map
6555
%%WWWDIR%%/apps/files_sharing/css/mobile.scss
6555
%%WWWDIR%%/apps-pkg/files_sharing/appinfo/app.php
6556
%%WWWDIR%%/apps/files_sharing/css/public.scss
6556
%%WWWDIR%%/apps-pkg/files_sharing/appinfo/database.xml
6557
%%WWWDIR%%/apps/files_sharing/css/publicView.scss
6557
%%WWWDIR%%/apps-pkg/files_sharing/appinfo/info.xml
6558
%%WWWDIR%%/apps/files_sharing/css/sharebreadcrumb.scss
6558
%%WWWDIR%%/apps-pkg/files_sharing/appinfo/routes.php
6559
%%WWWDIR%%/apps/files_sharing/css/sharedfilelist.css
6559
%%WWWDIR%%/apps-pkg/files_sharing/appinfo/signature.json
6560
%%WWWDIR%%/apps/files_sharing/css/sharetabview.scss
6560
%%WWWDIR%%/apps-pkg/files_sharing/composer/autoload.php
6561
%%WWWDIR%%/apps/files_sharing/img/app.svg
6561
%%WWWDIR%%/apps-pkg/files_sharing/composer/composer.json
6562
%%WWWDIR%%/apps/files_sharing/js/additionalScripts.json
6562
%%WWWDIR%%/apps-pkg/files_sharing/composer/composer/ClassLoader.php
6563
%%WWWDIR%%/apps/files_sharing/js/app.js
6563
%%WWWDIR%%/apps-pkg/files_sharing/composer/composer/LICENSE
6564
%%WWWDIR%%/apps/files_sharing/js/authenticate.js
6564
%%WWWDIR%%/apps-pkg/files_sharing/composer/composer/autoload_classmap.php
6565
%%WWWDIR%%/apps/files_sharing/js/files_drop.js
6565
%%WWWDIR%%/apps-pkg/files_sharing/composer/composer/autoload_namespaces.php
6566
%%WWWDIR%%/apps/files_sharing/js/public.js
6566
%%WWWDIR%%/apps-pkg/files_sharing/composer/composer/autoload_psr4.php
6567
%%WWWDIR%%/apps/files_sharing/js/share.js
6567
%%WWWDIR%%/apps-pkg/files_sharing/composer/composer/autoload_real.php
6568
%%WWWDIR%%/apps/files_sharing/js/sharebreadcrumbview.js
6568
%%WWWDIR%%/apps-pkg/files_sharing/composer/composer/autoload_static.php
6569
%%WWWDIR%%/apps/files_sharing/js/sharedfilelist.js
6569
%%WWWDIR%%/apps-pkg/files_sharing/css/404.css
6570
%%WWWDIR%%/apps/files_sharing/js/sharetabview.js
6570
%%WWWDIR%%/apps-pkg/files_sharing/css/authenticate.css
6571
%%WWWDIR%%/apps/files_sharing/l10n/.gitkeep
6571
%%WWWDIR%%/apps-pkg/files_sharing/css/mergedAdditionalStyles.scss
6572
%%WWWDIR%%/apps/files_sharing/l10n/af_ZA.js
6572
%%WWWDIR%%/apps-pkg/files_sharing/css/mobile.scss
6573
%%WWWDIR%%/apps/files_sharing/l10n/af_ZA.json
6573
%%WWWDIR%%/apps-pkg/files_sharing/css/public.scss
6574
%%WWWDIR%%/apps/files_sharing/l10n/ar.js
6574
%%WWWDIR%%/apps-pkg/files_sharing/css/publicView.scss
6575
%%WWWDIR%%/apps/files_sharing/l10n/ar.json
6575
%%WWWDIR%%/apps-pkg/files_sharing/css/sharebreadcrumb.scss
6576
%%WWWDIR%%/apps/files_sharing/l10n/ast.js
6576
%%WWWDIR%%/apps-pkg/files_sharing/css/sharedfilelist.css
6577
%%WWWDIR%%/apps/files_sharing/l10n/ast.json
6577
%%WWWDIR%%/apps-pkg/files_sharing/css/sharetabview.scss
6578
%%WWWDIR%%/apps/files_sharing/l10n/az.js
6578
%%WWWDIR%%/apps-pkg/files_sharing/img/app.svg
6579
%%WWWDIR%%/apps/files_sharing/l10n/az.json
6579
%%WWWDIR%%/apps-pkg/files_sharing/js/additionalScripts.json
6580
%%WWWDIR%%/apps/files_sharing/l10n/bg_BG.js
6580
%%WWWDIR%%/apps-pkg/files_sharing/js/app.js
6581
%%WWWDIR%%/apps/files_sharing/l10n/bg_BG.json
6581
%%WWWDIR%%/apps-pkg/files_sharing/js/authenticate.js
6582
%%WWWDIR%%/apps/files_sharing/l10n/bn_BD.js
6582
%%WWWDIR%%/apps-pkg/files_sharing/js/files_drop.js
6583
%%WWWDIR%%/apps/files_sharing/l10n/bn_BD.json
6583
%%WWWDIR%%/apps-pkg/files_sharing/js/public.js
6584
%%WWWDIR%%/apps/files_sharing/l10n/bn_IN.js
6584
%%WWWDIR%%/apps-pkg/files_sharing/js/share.js
6585
%%WWWDIR%%/apps/files_sharing/l10n/bn_IN.json
6585
%%WWWDIR%%/apps-pkg/files_sharing/js/sharebreadcrumbview.js
6586
%%WWWDIR%%/apps/files_sharing/l10n/bs.js
6586
%%WWWDIR%%/apps-pkg/files_sharing/js/sharedfilelist.js
6587
%%WWWDIR%%/apps/files_sharing/l10n/bs.json
6587
%%WWWDIR%%/apps-pkg/files_sharing/js/sharetabview.js
6588
%%WWWDIR%%/apps/files_sharing/l10n/ca.js
6588
%%WWWDIR%%/apps-pkg/files_sharing/l10n/.gitkeep
6589
%%WWWDIR%%/apps/files_sharing/l10n/ca.json
6589
%%WWWDIR%%/apps-pkg/files_sharing/l10n/af_ZA.js
6590
%%WWWDIR%%/apps/files_sharing/l10n/cs.js
6590
%%WWWDIR%%/apps-pkg/files_sharing/l10n/af_ZA.json
6591
%%WWWDIR%%/apps/files_sharing/l10n/cs.json
6591
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ar.js
6592
%%WWWDIR%%/apps/files_sharing/l10n/cs_CZ.js
6592
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ar.json
6593
%%WWWDIR%%/apps/files_sharing/l10n/cs_CZ.json
6593
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ast.js
6594
%%WWWDIR%%/apps/files_sharing/l10n/cy_GB.js
6594
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ast.json
6595
%%WWWDIR%%/apps/files_sharing/l10n/cy_GB.json
6595
%%WWWDIR%%/apps-pkg/files_sharing/l10n/az.js
6596
%%WWWDIR%%/apps/files_sharing/l10n/da.js
6596
%%WWWDIR%%/apps-pkg/files_sharing/l10n/az.json
6597
%%WWWDIR%%/apps/files_sharing/l10n/da.json
6597
%%WWWDIR%%/apps-pkg/files_sharing/l10n/bg_BG.js
6598
%%WWWDIR%%/apps/files_sharing/l10n/de.js
6598
%%WWWDIR%%/apps-pkg/files_sharing/l10n/bg_BG.json
6599
%%WWWDIR%%/apps/files_sharing/l10n/de.json
6599
%%WWWDIR%%/apps-pkg/files_sharing/l10n/bn_BD.js
6600
%%WWWDIR%%/apps/files_sharing/l10n/de_AT.js
6600
%%WWWDIR%%/apps-pkg/files_sharing/l10n/bn_BD.json
6601
%%WWWDIR%%/apps/files_sharing/l10n/de_AT.json
6601
%%WWWDIR%%/apps-pkg/files_sharing/l10n/bn_IN.js
6602
%%WWWDIR%%/apps/files_sharing/l10n/de_DE.js
6602
%%WWWDIR%%/apps-pkg/files_sharing/l10n/bn_IN.json
6603
%%WWWDIR%%/apps/files_sharing/l10n/de_DE.json
6603
%%WWWDIR%%/apps-pkg/files_sharing/l10n/bs.js
6604
%%WWWDIR%%/apps/files_sharing/l10n/el.js
6604
%%WWWDIR%%/apps-pkg/files_sharing/l10n/bs.json
6605
%%WWWDIR%%/apps/files_sharing/l10n/el.json
6605
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ca.js
6606
%%WWWDIR%%/apps/files_sharing/l10n/en_GB.js
6606
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ca.json
6607
%%WWWDIR%%/apps/files_sharing/l10n/en_GB.json
6607
%%WWWDIR%%/apps-pkg/files_sharing/l10n/cs.js
6608
%%WWWDIR%%/apps/files_sharing/l10n/eo.js
6608
%%WWWDIR%%/apps-pkg/files_sharing/l10n/cs.json
6609
%%WWWDIR%%/apps/files_sharing/l10n/eo.json
6609
%%WWWDIR%%/apps-pkg/files_sharing/l10n/cs_CZ.js
6610
%%WWWDIR%%/apps/files_sharing/l10n/es.js
6610
%%WWWDIR%%/apps-pkg/files_sharing/l10n/cs_CZ.json
6611
%%WWWDIR%%/apps/files_sharing/l10n/es.json
6611
%%WWWDIR%%/apps-pkg/files_sharing/l10n/cy_GB.js
6612
%%WWWDIR%%/apps/files_sharing/l10n/es_419.js
6612
%%WWWDIR%%/apps-pkg/files_sharing/l10n/cy_GB.json
6613
%%WWWDIR%%/apps/files_sharing/l10n/es_419.json
6613
%%WWWDIR%%/apps-pkg/files_sharing/l10n/da.js
6614
%%WWWDIR%%/apps/files_sharing/l10n/es_AR.js
6614
%%WWWDIR%%/apps-pkg/files_sharing/l10n/da.json
6615
%%WWWDIR%%/apps/files_sharing/l10n/es_AR.json
6615
%%WWWDIR%%/apps-pkg/files_sharing/l10n/de.js
6616
%%WWWDIR%%/apps/files_sharing/l10n/es_CL.js
6616
%%WWWDIR%%/apps-pkg/files_sharing/l10n/de.json
6617
%%WWWDIR%%/apps/files_sharing/l10n/es_CL.json
6617
%%WWWDIR%%/apps-pkg/files_sharing/l10n/de_AT.js
6618
%%WWWDIR%%/apps/files_sharing/l10n/es_CO.js
6618
%%WWWDIR%%/apps-pkg/files_sharing/l10n/de_AT.json
6619
%%WWWDIR%%/apps/files_sharing/l10n/es_CO.json
6619
%%WWWDIR%%/apps-pkg/files_sharing/l10n/de_DE.js
6620
%%WWWDIR%%/apps/files_sharing/l10n/es_CR.js
6620
%%WWWDIR%%/apps-pkg/files_sharing/l10n/de_DE.json
6621
%%WWWDIR%%/apps/files_sharing/l10n/es_CR.json
6621
%%WWWDIR%%/apps-pkg/files_sharing/l10n/el.js
6622
%%WWWDIR%%/apps/files_sharing/l10n/es_DO.js
6622
%%WWWDIR%%/apps-pkg/files_sharing/l10n/el.json
6623
%%WWWDIR%%/apps/files_sharing/l10n/es_DO.json
6623
%%WWWDIR%%/apps-pkg/files_sharing/l10n/en_GB.js
6624
%%WWWDIR%%/apps/files_sharing/l10n/es_EC.js
6624
%%WWWDIR%%/apps-pkg/files_sharing/l10n/en_GB.json
6625
%%WWWDIR%%/apps/files_sharing/l10n/es_EC.json
6625
%%WWWDIR%%/apps-pkg/files_sharing/l10n/eo.js
6626
%%WWWDIR%%/apps/files_sharing/l10n/es_GT.js
6626
%%WWWDIR%%/apps-pkg/files_sharing/l10n/eo.json
6627
%%WWWDIR%%/apps/files_sharing/l10n/es_GT.json
6627
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es.js
6628
%%WWWDIR%%/apps/files_sharing/l10n/es_HN.js
6628
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es.json
6629
%%WWWDIR%%/apps/files_sharing/l10n/es_HN.json
6629
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_419.js
6630
%%WWWDIR%%/apps/files_sharing/l10n/es_MX.js
6630
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_419.json
6631
%%WWWDIR%%/apps/files_sharing/l10n/es_MX.json
6631
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_AR.js
6632
%%WWWDIR%%/apps/files_sharing/l10n/es_NI.js
6632
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_AR.json
6633
%%WWWDIR%%/apps/files_sharing/l10n/es_NI.json
6633
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_CL.js
6634
%%WWWDIR%%/apps/files_sharing/l10n/es_PA.js
6634
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_CL.json
6635
%%WWWDIR%%/apps/files_sharing/l10n/es_PA.json
6635
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_CO.js
6636
%%WWWDIR%%/apps/files_sharing/l10n/es_PE.js
6636
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_CO.json
6637
%%WWWDIR%%/apps/files_sharing/l10n/es_PE.json
6637
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_CR.js
6638
%%WWWDIR%%/apps/files_sharing/l10n/es_PR.js
6638
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_CR.json
6639
%%WWWDIR%%/apps/files_sharing/l10n/es_PR.json
6639
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_DO.js
6640
%%WWWDIR%%/apps/files_sharing/l10n/es_PY.js
6640
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_DO.json
6641
%%WWWDIR%%/apps/files_sharing/l10n/es_PY.json
6641
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_EC.js
6642
%%WWWDIR%%/apps/files_sharing/l10n/es_SV.js
6642
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_EC.json
6643
%%WWWDIR%%/apps/files_sharing/l10n/es_SV.json
6643
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_GT.js
6644
%%WWWDIR%%/apps/files_sharing/l10n/es_UY.js
6644
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_GT.json
6645
%%WWWDIR%%/apps/files_sharing/l10n/es_UY.json
6645
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_HN.js
6646
%%WWWDIR%%/apps/files_sharing/l10n/et_EE.js
6646
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_HN.json
6647
%%WWWDIR%%/apps/files_sharing/l10n/et_EE.json
6647
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_MX.js
6648
%%WWWDIR%%/apps/files_sharing/l10n/eu.js
6648
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_MX.json
6649
%%WWWDIR%%/apps/files_sharing/l10n/eu.json
6649
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_NI.js
6650
%%WWWDIR%%/apps/files_sharing/l10n/fa.js
6650
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_NI.json
6651
%%WWWDIR%%/apps/files_sharing/l10n/fa.json
6651
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PA.js
6652
%%WWWDIR%%/apps/files_sharing/l10n/fi.js
6652
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PA.json
6653
%%WWWDIR%%/apps/files_sharing/l10n/fi.json
6653
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PE.js
6654
%%WWWDIR%%/apps/files_sharing/l10n/fi_FI.js
6654
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PE.json
6655
%%WWWDIR%%/apps/files_sharing/l10n/fi_FI.json
6655
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PR.js
6656
%%WWWDIR%%/apps/files_sharing/l10n/fil.js
6656
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PR.json
6657
%%WWWDIR%%/apps/files_sharing/l10n/fil.json
6657
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PY.js
6658
%%WWWDIR%%/apps/files_sharing/l10n/fr.js
6658
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PY.json
6659
%%WWWDIR%%/apps/files_sharing/l10n/fr.json
6659
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_SV.js
6660
%%WWWDIR%%/apps/files_sharing/l10n/gl.js
6660
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_SV.json
6661
%%WWWDIR%%/apps/files_sharing/l10n/gl.json
6661
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_UY.js
6662
%%WWWDIR%%/apps/files_sharing/l10n/he.js
6662
%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_UY.json
6663
%%WWWDIR%%/apps/files_sharing/l10n/he.json
6663
%%WWWDIR%%/apps-pkg/files_sharing/l10n/et_EE.js
6664
%%WWWDIR%%/apps/files_sharing/l10n/hi.js
6664
%%WWWDIR%%/apps-pkg/files_sharing/l10n/et_EE.json
6665
%%WWWDIR%%/apps/files_sharing/l10n/hi.json
6665
%%WWWDIR%%/apps-pkg/files_sharing/l10n/eu.js
6666
%%WWWDIR%%/apps/files_sharing/l10n/hr.js
6666
%%WWWDIR%%/apps-pkg/files_sharing/l10n/eu.json
6667
%%WWWDIR%%/apps/files_sharing/l10n/hr.json
6667
%%WWWDIR%%/apps-pkg/files_sharing/l10n/fa.js
6668
%%WWWDIR%%/apps/files_sharing/l10n/hu.js
6668
%%WWWDIR%%/apps-pkg/files_sharing/l10n/fa.json
6669
%%WWWDIR%%/apps/files_sharing/l10n/hu.json
6669
%%WWWDIR%%/apps-pkg/files_sharing/l10n/fi.js
6670
%%WWWDIR%%/apps/files_sharing/l10n/hu_HU.js
6670
%%WWWDIR%%/apps-pkg/files_sharing/l10n/fi.json
6671
%%WWWDIR%%/apps/files_sharing/l10n/hu_HU.json
6671
%%WWWDIR%%/apps-pkg/files_sharing/l10n/fi_FI.js
6672
%%WWWDIR%%/apps/files_sharing/l10n/hy.js
6672
%%WWWDIR%%/apps-pkg/files_sharing/l10n/fi_FI.json
6673
%%WWWDIR%%/apps/files_sharing/l10n/hy.json
6673
%%WWWDIR%%/apps-pkg/files_sharing/l10n/fil.js
6674
%%WWWDIR%%/apps/files_sharing/l10n/ia.js
6674
%%WWWDIR%%/apps-pkg/files_sharing/l10n/fil.json
6675
%%WWWDIR%%/apps/files_sharing/l10n/ia.json
6675
%%WWWDIR%%/apps-pkg/files_sharing/l10n/fr.js
6676
%%WWWDIR%%/apps/files_sharing/l10n/id.js
6676
%%WWWDIR%%/apps-pkg/files_sharing/l10n/fr.json
6677
%%WWWDIR%%/apps/files_sharing/l10n/id.json
6677
%%WWWDIR%%/apps-pkg/files_sharing/l10n/gl.js
6678
%%WWWDIR%%/apps/files_sharing/l10n/is.js
6678
%%WWWDIR%%/apps-pkg/files_sharing/l10n/gl.json
6679
%%WWWDIR%%/apps/files_sharing/l10n/is.json
6679
%%WWWDIR%%/apps-pkg/files_sharing/l10n/he.js
6680
%%WWWDIR%%/apps/files_sharing/l10n/it.js
6680
%%WWWDIR%%/apps-pkg/files_sharing/l10n/he.json
6681
%%WWWDIR%%/apps/files_sharing/l10n/it.json
6681
%%WWWDIR%%/apps-pkg/files_sharing/l10n/hi.js
6682
%%WWWDIR%%/apps/files_sharing/l10n/ja.js
6682
%%WWWDIR%%/apps-pkg/files_sharing/l10n/hi.json
6683
%%WWWDIR%%/apps/files_sharing/l10n/ja.json
6683
%%WWWDIR%%/apps-pkg/files_sharing/l10n/hr.js
6684
%%WWWDIR%%/apps/files_sharing/l10n/jv.js
6684
%%WWWDIR%%/apps-pkg/files_sharing/l10n/hr.json
6685
%%WWWDIR%%/apps/files_sharing/l10n/jv.json
6685
%%WWWDIR%%/apps-pkg/files_sharing/l10n/hu.js
6686
%%WWWDIR%%/apps/files_sharing/l10n/ka_GE.js
6686
%%WWWDIR%%/apps-pkg/files_sharing/l10n/hu.json
6687
%%WWWDIR%%/apps/files_sharing/l10n/ka_GE.json
6687
%%WWWDIR%%/apps-pkg/files_sharing/l10n/hu_HU.js
6688
%%WWWDIR%%/apps/files_sharing/l10n/km.js
6688
%%WWWDIR%%/apps-pkg/files_sharing/l10n/hu_HU.json
6689
%%WWWDIR%%/apps/files_sharing/l10n/km.json
6689
%%WWWDIR%%/apps-pkg/files_sharing/l10n/hy.js
6690
%%WWWDIR%%/apps/files_sharing/l10n/kn.js
6690
%%WWWDIR%%/apps-pkg/files_sharing/l10n/hy.json
6691
%%WWWDIR%%/apps/files_sharing/l10n/kn.json
6691
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ia.js
6692
%%WWWDIR%%/apps/files_sharing/l10n/ko.js
6692
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ia.json
6693
%%WWWDIR%%/apps/files_sharing/l10n/ko.json
6693
%%WWWDIR%%/apps-pkg/files_sharing/l10n/id.js
6694
%%WWWDIR%%/apps/files_sharing/l10n/ku_IQ.js
6694
%%WWWDIR%%/apps-pkg/files_sharing/l10n/id.json
6695
%%WWWDIR%%/apps/files_sharing/l10n/ku_IQ.json
6695
%%WWWDIR%%/apps-pkg/files_sharing/l10n/is.js
6696
%%WWWDIR%%/apps/files_sharing/l10n/lb.js
6696
%%WWWDIR%%/apps-pkg/files_sharing/l10n/is.json
6697
%%WWWDIR%%/apps/files_sharing/l10n/lb.json
6697
%%WWWDIR%%/apps-pkg/files_sharing/l10n/it.js
6698
%%WWWDIR%%/apps/files_sharing/l10n/lo.js
6698
%%WWWDIR%%/apps-pkg/files_sharing/l10n/it.json
6699
%%WWWDIR%%/apps/files_sharing/l10n/lo.json
6699
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ja.js
6700
%%WWWDIR%%/apps/files_sharing/l10n/lt_LT.js
6700
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ja.json
6701
%%WWWDIR%%/apps/files_sharing/l10n/lt_LT.json
6701
%%WWWDIR%%/apps-pkg/files_sharing/l10n/jv.js
6702
%%WWWDIR%%/apps/files_sharing/l10n/lv.js
6702
%%WWWDIR%%/apps-pkg/files_sharing/l10n/jv.json
6703
%%WWWDIR%%/apps/files_sharing/l10n/lv.json
6703
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ka_GE.js
6704
%%WWWDIR%%/apps/files_sharing/l10n/mk.js
6704
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ka_GE.json
6705
%%WWWDIR%%/apps/files_sharing/l10n/mk.json
6705
%%WWWDIR%%/apps-pkg/files_sharing/l10n/km.js
6706
%%WWWDIR%%/apps/files_sharing/l10n/ml_IN.js
6706
%%WWWDIR%%/apps-pkg/files_sharing/l10n/km.json
6707
%%WWWDIR%%/apps/files_sharing/l10n/ml_IN.json
6707
%%WWWDIR%%/apps-pkg/files_sharing/l10n/kn.js
6708
%%WWWDIR%%/apps/files_sharing/l10n/mn.js
6708
%%WWWDIR%%/apps-pkg/files_sharing/l10n/kn.json
6709
%%WWWDIR%%/apps/files_sharing/l10n/mn.json
6709
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ko.js
6710
%%WWWDIR%%/apps/files_sharing/l10n/ms_MY.js
6710
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ko.json
6711
%%WWWDIR%%/apps/files_sharing/l10n/ms_MY.json
6711
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ku_IQ.js
6712
%%WWWDIR%%/apps/files_sharing/l10n/my_MM.js
6712
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ku_IQ.json
6713
%%WWWDIR%%/apps/files_sharing/l10n/my_MM.json
6713
%%WWWDIR%%/apps-pkg/files_sharing/l10n/lb.js
6714
%%WWWDIR%%/apps/files_sharing/l10n/nb.js
6714
%%WWWDIR%%/apps-pkg/files_sharing/l10n/lb.json
6715
%%WWWDIR%%/apps/files_sharing/l10n/nb.json
6715
%%WWWDIR%%/apps-pkg/files_sharing/l10n/lo.js
6716
%%WWWDIR%%/apps/files_sharing/l10n/nb_NO.js
6716
%%WWWDIR%%/apps-pkg/files_sharing/l10n/lo.json
6717
%%WWWDIR%%/apps/files_sharing/l10n/nb_NO.json
6717
%%WWWDIR%%/apps-pkg/files_sharing/l10n/lt_LT.js
6718
%%WWWDIR%%/apps/files_sharing/l10n/nds.js
6718
%%WWWDIR%%/apps-pkg/files_sharing/l10n/lt_LT.json
6719
%%WWWDIR%%/apps/files_sharing/l10n/nds.json
6719
%%WWWDIR%%/apps-pkg/files_sharing/l10n/lv.js
6720
%%WWWDIR%%/apps/files_sharing/l10n/nl.js
6720
%%WWWDIR%%/apps-pkg/files_sharing/l10n/lv.json
6721
%%WWWDIR%%/apps/files_sharing/l10n/nl.json
6721
%%WWWDIR%%/apps-pkg/files_sharing/l10n/mk.js
6722
%%WWWDIR%%/apps/files_sharing/l10n/nn_NO.js
6722
%%WWWDIR%%/apps-pkg/files_sharing/l10n/mk.json
6723
%%WWWDIR%%/apps/files_sharing/l10n/nn_NO.json
6723
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ml_IN.js
6724
%%WWWDIR%%/apps/files_sharing/l10n/oc.js
6724
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ml_IN.json
6725
%%WWWDIR%%/apps/files_sharing/l10n/oc.json
6725
%%WWWDIR%%/apps-pkg/files_sharing/l10n/mn.js
6726
%%WWWDIR%%/apps/files_sharing/l10n/pa.js
6726
%%WWWDIR%%/apps-pkg/files_sharing/l10n/mn.json
6727
%%WWWDIR%%/apps/files_sharing/l10n/pa.json
6727
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ms_MY.js
6728
%%WWWDIR%%/apps/files_sharing/l10n/pl.js
6728
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ms_MY.json
6729
%%WWWDIR%%/apps/files_sharing/l10n/pl.json
6729
%%WWWDIR%%/apps-pkg/files_sharing/l10n/my_MM.js
6730
%%WWWDIR%%/apps/files_sharing/l10n/pt_BR.js
6730
%%WWWDIR%%/apps-pkg/files_sharing/l10n/my_MM.json
6731
%%WWWDIR%%/apps/files_sharing/l10n/pt_BR.json
6731
%%WWWDIR%%/apps-pkg/files_sharing/l10n/nb.js
6732
%%WWWDIR%%/apps/files_sharing/l10n/pt_PT.js
6732
%%WWWDIR%%/apps-pkg/files_sharing/l10n/nb.json
6733
%%WWWDIR%%/apps/files_sharing/l10n/pt_PT.json
6733
%%WWWDIR%%/apps-pkg/files_sharing/l10n/nb_NO.js
6734
%%WWWDIR%%/apps/files_sharing/l10n/ro.js
6734
%%WWWDIR%%/apps-pkg/files_sharing/l10n/nb_NO.json
6735
%%WWWDIR%%/apps/files_sharing/l10n/ro.json
6735
%%WWWDIR%%/apps-pkg/files_sharing/l10n/nds.js
6736
%%WWWDIR%%/apps/files_sharing/l10n/ru.js
6736
%%WWWDIR%%/apps-pkg/files_sharing/l10n/nds.json
6737
%%WWWDIR%%/apps/files_sharing/l10n/ru.json
6737
%%WWWDIR%%/apps-pkg/files_sharing/l10n/nl.js
6738
%%WWWDIR%%/apps/files_sharing/l10n/si_LK.js
6738
%%WWWDIR%%/apps-pkg/files_sharing/l10n/nl.json
6739
%%WWWDIR%%/apps/files_sharing/l10n/si_LK.json
6739
%%WWWDIR%%/apps-pkg/files_sharing/l10n/nn_NO.js
6740
%%WWWDIR%%/apps/files_sharing/l10n/sk.js
6740
%%WWWDIR%%/apps-pkg/files_sharing/l10n/nn_NO.json
6741
%%WWWDIR%%/apps/files_sharing/l10n/sk.json
6741
%%WWWDIR%%/apps-pkg/files_sharing/l10n/oc.js
6742
%%WWWDIR%%/apps/files_sharing/l10n/sk_SK.js
6742
%%WWWDIR%%/apps-pkg/files_sharing/l10n/oc.json
6743
%%WWWDIR%%/apps/files_sharing/l10n/sk_SK.json
6743
%%WWWDIR%%/apps-pkg/files_sharing/l10n/pa.js
6744
%%WWWDIR%%/apps/files_sharing/l10n/sl.js
6744
%%WWWDIR%%/apps-pkg/files_sharing/l10n/pa.json
6745
%%WWWDIR%%/apps/files_sharing/l10n/sl.json
6745
%%WWWDIR%%/apps-pkg/files_sharing/l10n/pl.js
6746
%%WWWDIR%%/apps/files_sharing/l10n/sq.js
6746
%%WWWDIR%%/apps-pkg/files_sharing/l10n/pl.json
6747
%%WWWDIR%%/apps/files_sharing/l10n/sq.json
6747
%%WWWDIR%%/apps-pkg/files_sharing/l10n/pt_BR.js
6748
%%WWWDIR%%/apps/files_sharing/l10n/sr.js
6748
%%WWWDIR%%/apps-pkg/files_sharing/l10n/pt_BR.json
6749
%%WWWDIR%%/apps/files_sharing/l10n/sr.json
6749
%%WWWDIR%%/apps-pkg/files_sharing/l10n/pt_PT.js
6750
%%WWWDIR%%/apps/files_sharing/l10n/sr@latin.js
6750
%%WWWDIR%%/apps-pkg/files_sharing/l10n/pt_PT.json
6751
%%WWWDIR%%/apps/files_sharing/l10n/sr@latin.json
6751
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ro.js
6752
%%WWWDIR%%/apps/files_sharing/l10n/sv.js
6752
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ro.json
6753
%%WWWDIR%%/apps/files_sharing/l10n/sv.json
6753
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ru.js
6754
%%WWWDIR%%/apps/files_sharing/l10n/ta_IN.js
6754
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ru.json
6755
%%WWWDIR%%/apps/files_sharing/l10n/ta_IN.json
6755
%%WWWDIR%%/apps-pkg/files_sharing/l10n/si_LK.js
6756
%%WWWDIR%%/apps/files_sharing/l10n/ta_LK.js
6756
%%WWWDIR%%/apps-pkg/files_sharing/l10n/si_LK.json
6757
%%WWWDIR%%/apps/files_sharing/l10n/ta_LK.json
6757
%%WWWDIR%%/apps-pkg/files_sharing/l10n/sk.js
6758
%%WWWDIR%%/apps/files_sharing/l10n/te.js
6758
%%WWWDIR%%/apps-pkg/files_sharing/l10n/sk.json
6759
%%WWWDIR%%/apps/files_sharing/l10n/te.json
6759
%%WWWDIR%%/apps-pkg/files_sharing/l10n/sk_SK.js
6760
%%WWWDIR%%/apps/files_sharing/l10n/th_TH.js
6760
%%WWWDIR%%/apps-pkg/files_sharing/l10n/sk_SK.json
6761
%%WWWDIR%%/apps/files_sharing/l10n/th_TH.json
6761
%%WWWDIR%%/apps-pkg/files_sharing/l10n/sl.js
6762
%%WWWDIR%%/apps/files_sharing/l10n/tr.js
6762
%%WWWDIR%%/apps-pkg/files_sharing/l10n/sl.json
6763
%%WWWDIR%%/apps/files_sharing/l10n/tr.json
6763
%%WWWDIR%%/apps-pkg/files_sharing/l10n/sq.js
6764
%%WWWDIR%%/apps/files_sharing/l10n/ug.js
6764
%%WWWDIR%%/apps-pkg/files_sharing/l10n/sq.json
6765
%%WWWDIR%%/apps/files_sharing/l10n/ug.json
6765
%%WWWDIR%%/apps-pkg/files_sharing/l10n/sr.js
6766
%%WWWDIR%%/apps/files_sharing/l10n/uk.js
6766
%%WWWDIR%%/apps-pkg/files_sharing/l10n/sr.json
6767
%%WWWDIR%%/apps/files_sharing/l10n/uk.json
6767
%%WWWDIR%%/apps-pkg/files_sharing/l10n/sr@latin.js
6768
%%WWWDIR%%/apps/files_sharing/l10n/ur_PK.js
6768
%%WWWDIR%%/apps-pkg/files_sharing/l10n/sr@latin.json
6769
%%WWWDIR%%/apps/files_sharing/l10n/ur_PK.json
6769
%%WWWDIR%%/apps-pkg/files_sharing/l10n/sv.js
6770
%%WWWDIR%%/apps/files_sharing/l10n/vi.js
6770
%%WWWDIR%%/apps-pkg/files_sharing/l10n/sv.json
6771
%%WWWDIR%%/apps/files_sharing/l10n/vi.json
6771
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ta_IN.js
6772
%%WWWDIR%%/apps/files_sharing/l10n/zh_CN.js
6772
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ta_IN.json
6773
%%WWWDIR%%/apps/files_sharing/l10n/zh_CN.json
6773
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ta_LK.js
6774
%%WWWDIR%%/apps/files_sharing/l10n/zh_HK.js
6774
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ta_LK.json
6775
%%WWWDIR%%/apps/files_sharing/l10n/zh_HK.json
6775
%%WWWDIR%%/apps-pkg/files_sharing/l10n/te.js
6776
%%WWWDIR%%/apps/files_sharing/l10n/zh_TW.js
6776
%%WWWDIR%%/apps-pkg/files_sharing/l10n/te.json
6777
%%WWWDIR%%/apps/files_sharing/l10n/zh_TW.json
6777
%%WWWDIR%%/apps-pkg/files_sharing/l10n/th_TH.js
6778
%%WWWDIR%%/apps/files_sharing/lib/Activity/Filter.php
6778
%%WWWDIR%%/apps-pkg/files_sharing/l10n/th_TH.json
6779
%%WWWDIR%%/apps/files_sharing/lib/Activity/Providers/Base.php
6779
%%WWWDIR%%/apps-pkg/files_sharing/l10n/tr.js
6780
%%WWWDIR%%/apps/files_sharing/lib/Activity/Providers/Downloads.php
6780
%%WWWDIR%%/apps-pkg/files_sharing/l10n/tr.json
6781
%%WWWDIR%%/apps/files_sharing/lib/Activity/Providers/Groups.php
6781
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ug.js
6782
%%WWWDIR%%/apps/files_sharing/lib/Activity/Providers/PublicLinks.php
6782
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ug.json
6783
%%WWWDIR%%/apps/files_sharing/lib/Activity/Providers/RemoteShares.php
6783
%%WWWDIR%%/apps-pkg/files_sharing/l10n/uk.js
6784
%%WWWDIR%%/apps/files_sharing/lib/Activity/Providers/Users.php
6784
%%WWWDIR%%/apps-pkg/files_sharing/l10n/uk.json
6785
%%WWWDIR%%/apps/files_sharing/lib/Activity/Settings/PublicLinks.php
6785
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ur_PK.js
6786
%%WWWDIR%%/apps/files_sharing/lib/Activity/Settings/RemoteShare.php
6786
%%WWWDIR%%/apps-pkg/files_sharing/l10n/ur_PK.json
6787
%%WWWDIR%%/apps/files_sharing/lib/Activity/Settings/Shared.php
6787
%%WWWDIR%%/apps-pkg/files_sharing/l10n/vi.js
6788
%%WWWDIR%%/apps/files_sharing/lib/AppInfo/Application.php
6788
%%WWWDIR%%/apps-pkg/files_sharing/l10n/vi.json
6789
%%WWWDIR%%/apps/files_sharing/lib/Cache.php
6789
%%WWWDIR%%/apps-pkg/files_sharing/l10n/zh_CN.js
6790
%%WWWDIR%%/apps/files_sharing/lib/Capabilities.php
6790
%%WWWDIR%%/apps-pkg/files_sharing/l10n/zh_CN.json
6791
%%WWWDIR%%/apps/files_sharing/lib/Collaboration/ShareRecipientSorter.php
6791
%%WWWDIR%%/apps-pkg/files_sharing/l10n/zh_HK.js
6792
%%WWWDIR%%/apps/files_sharing/lib/Command/CleanupRemoteStorages.php
6792
%%WWWDIR%%/apps-pkg/files_sharing/l10n/zh_HK.json
6793
%%WWWDIR%%/apps/files_sharing/lib/Controller/ExternalSharesController.php
6793
%%WWWDIR%%/apps-pkg/files_sharing/l10n/zh_TW.js
6794
%%WWWDIR%%/apps/files_sharing/lib/Controller/PublicPreviewController.php
6794
%%WWWDIR%%/apps-pkg/files_sharing/l10n/zh_TW.json
6795
%%WWWDIR%%/apps/files_sharing/lib/Controller/RemoteController.php
6795
%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Filter.php
6796
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareAPIController.php
6796
%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Providers/Base.php
6797
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareController.php
6797
%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Providers/Downloads.php
6798
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareInfoController.php
6798
%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Providers/Groups.php
6799
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareesAPIController.php
6799
%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Providers/PublicLinks.php
6800
%%WWWDIR%%/apps/files_sharing/lib/DeleteOrphanedSharesJob.php
6800
%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Providers/RemoteShares.php
6801
%%WWWDIR%%/apps/files_sharing/lib/Exceptions/BrokenPath.php
6801
%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Providers/Users.php
6802
%%WWWDIR%%/apps/files_sharing/lib/Exceptions/S2SException.php
6802
%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Settings/PublicLinks.php
6803
%%WWWDIR%%/apps/files_sharing/lib/ExpireSharesJob.php
6803
%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Settings/RemoteShare.php
6804
%%WWWDIR%%/apps/files_sharing/lib/External/Cache.php
6804
%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Settings/Shared.php
6805
%%WWWDIR%%/apps/files_sharing/lib/External/Manager.php
6805
%%WWWDIR%%/apps-pkg/files_sharing/lib/AppInfo/Application.php
6806
%%WWWDIR%%/apps/files_sharing/lib/External/Mount.php
6806
%%WWWDIR%%/apps-pkg/files_sharing/lib/Cache.php
6807
%%WWWDIR%%/apps/files_sharing/lib/External/MountProvider.php
6807
%%WWWDIR%%/apps-pkg/files_sharing/lib/Capabilities.php
6808
%%WWWDIR%%/apps/files_sharing/lib/External/Scanner.php
6808
%%WWWDIR%%/apps-pkg/files_sharing/lib/Collaboration/ShareRecipientSorter.php
6809
%%WWWDIR%%/apps/files_sharing/lib/External/Storage.php
6809
%%WWWDIR%%/apps-pkg/files_sharing/lib/Command/CleanupRemoteStorages.php
6810
%%WWWDIR%%/apps/files_sharing/lib/External/Watcher.php
6810
%%WWWDIR%%/apps-pkg/files_sharing/lib/Controller/ExternalSharesController.php
6811
%%WWWDIR%%/apps/files_sharing/lib/Helper.php
6811
%%WWWDIR%%/apps-pkg/files_sharing/lib/Controller/PublicPreviewController.php
6812
%%WWWDIR%%/apps/files_sharing/lib/Hooks.php
6812
%%WWWDIR%%/apps-pkg/files_sharing/lib/Controller/RemoteController.php
6813
%%WWWDIR%%/apps/files_sharing/lib/ISharedStorage.php
6813
%%WWWDIR%%/apps-pkg/files_sharing/lib/Controller/ShareAPIController.php
6814
%%WWWDIR%%/apps/files_sharing/lib/Middleware/OCSShareAPIMiddleware.php
6814
%%WWWDIR%%/apps-pkg/files_sharing/lib/Controller/ShareController.php
6815
%%WWWDIR%%/apps/files_sharing/lib/Middleware/ShareInfoMiddleware.php
6815
%%WWWDIR%%/apps-pkg/files_sharing/lib/Controller/ShareInfoController.php
6816
%%WWWDIR%%/apps/files_sharing/lib/Middleware/SharingCheckMiddleware.php
6816
%%WWWDIR%%/apps-pkg/files_sharing/lib/Controller/ShareesAPIController.php
6817
%%WWWDIR%%/apps/files_sharing/lib/Migration/OwncloudGuestShareType.php
6817
%%WWWDIR%%/apps-pkg/files_sharing/lib/DeleteOrphanedSharesJob.php
6818
%%WWWDIR%%/apps/files_sharing/lib/Migration/SetPasswordColumn.php
6818
%%WWWDIR%%/apps-pkg/files_sharing/lib/Exceptions/BrokenPath.php
6819
%%WWWDIR%%/apps/files_sharing/lib/MountProvider.php
6819
%%WWWDIR%%/apps-pkg/files_sharing/lib/Exceptions/S2SException.php
6820
%%WWWDIR%%/apps/files_sharing/lib/Scanner.php
6820
%%WWWDIR%%/apps-pkg/files_sharing/lib/ExpireSharesJob.php
6821
%%WWWDIR%%/apps/files_sharing/lib/ShareBackend/File.php
6821
%%WWWDIR%%/apps-pkg/files_sharing/lib/External/Cache.php
6822
%%WWWDIR%%/apps/files_sharing/lib/ShareBackend/Folder.php
6822
%%WWWDIR%%/apps-pkg/files_sharing/lib/External/Manager.php
6823
%%WWWDIR%%/apps/files_sharing/lib/SharedMount.php
6823
%%WWWDIR%%/apps-pkg/files_sharing/lib/External/Mount.php
6824
%%WWWDIR%%/apps/files_sharing/lib/SharedStorage.php
6824
%%WWWDIR%%/apps-pkg/files_sharing/lib/External/MountProvider.php
6825
%%WWWDIR%%/apps/files_sharing/lib/Updater.php
6825
%%WWWDIR%%/apps-pkg/files_sharing/lib/External/Scanner.php
6826
%%WWWDIR%%/apps/files_sharing/list.php
6826
%%WWWDIR%%/apps-pkg/files_sharing/lib/External/Storage.php
6827
%%WWWDIR%%/apps/files_sharing/public.php
6827
%%WWWDIR%%/apps-pkg/files_sharing/lib/External/Watcher.php
6828
%%WWWDIR%%/apps/files_sharing/templates/authenticate.php
6828
%%WWWDIR%%/apps-pkg/files_sharing/lib/Helper.php
6829
%%WWWDIR%%/apps/files_sharing/templates/list.php
6829
%%WWWDIR%%/apps-pkg/files_sharing/lib/Hooks.php
6830
%%WWWDIR%%/apps/files_sharing/templates/part.404.php
6830
%%WWWDIR%%/apps-pkg/files_sharing/lib/ISharedStorage.php
6831
%%WWWDIR%%/apps/files_sharing/templates/public.php
6831
%%WWWDIR%%/apps-pkg/files_sharing/lib/Middleware/OCSShareAPIMiddleware.php
6832
%%WWWDIR%%/apps/files_texteditor/.github/contributing.md
6832
%%WWWDIR%%/apps-pkg/files_sharing/lib/Middleware/ShareInfoMiddleware.php
6833
%%WWWDIR%%/apps/files_texteditor/.github/issue_template.md
6833
%%WWWDIR%%/apps-pkg/files_sharing/lib/Middleware/SharingCheckMiddleware.php
6834
%%WWWDIR%%/apps/files_texteditor/appinfo/app.php
6834
%%WWWDIR%%/apps-pkg/files_sharing/lib/Migration/OwncloudGuestShareType.php
6835
%%WWWDIR%%/apps/files_texteditor/appinfo/info.xml
6835
%%WWWDIR%%/apps-pkg/files_sharing/lib/Migration/SetPasswordColumn.php
6836
%%WWWDIR%%/apps/files_texteditor/appinfo/routes.php
6836
%%WWWDIR%%/apps-pkg/files_sharing/lib/MountProvider.php
6837
%%WWWDIR%%/apps/files_texteditor/appinfo/signature.json
6837
%%WWWDIR%%/apps-pkg/files_sharing/lib/Scanner.php
6838
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.eot
6838
%%WWWDIR%%/apps-pkg/files_sharing/lib/ShareBackend/File.php
6839
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.svg
6839
%%WWWDIR%%/apps-pkg/files_sharing/lib/ShareBackend/Folder.php
6840
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.ttf
6840
%%WWWDIR%%/apps-pkg/files_sharing/lib/SharedMount.php
6841
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.woff
6841
%%WWWDIR%%/apps-pkg/files_sharing/lib/SharedStorage.php
6842
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/Google Android License.txt
6842
%%WWWDIR%%/apps-pkg/files_sharing/lib/Updater.php
6843
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/stylesheet.scss
6843
%%WWWDIR%%/apps-pkg/files_sharing/list.php
6844
%%WWWDIR%%/apps/files_texteditor/css/merged.scss
6844
%%WWWDIR%%/apps-pkg/files_sharing/public.php
6845
%%WWWDIR%%/apps/files_texteditor/css/mobile.scss
6845
%%WWWDIR%%/apps-pkg/files_sharing/templates/authenticate.php
6846
%%WWWDIR%%/apps/files_texteditor/css/public-share.css
6846
%%WWWDIR%%/apps-pkg/files_sharing/templates/list.php
6847
%%WWWDIR%%/apps/files_texteditor/css/style.scss
6847
%%WWWDIR%%/apps-pkg/files_sharing/templates/part.404.php
6848
%%WWWDIR%%/apps/files_texteditor/img/app.png
6848
%%WWWDIR%%/apps-pkg/files_sharing/templates/public.php
6849
%%WWWDIR%%/apps/files_texteditor/img/app.svg
6849
%%WWWDIR%%/apps-pkg/files_texteditor/.github/contributing.md
6850
%%WWWDIR%%/apps/files_texteditor/img/image.svg
6850
%%WWWDIR%%/apps-pkg/files_texteditor/.github/issue_template.md
6851
%%WWWDIR%%/apps/files_texteditor/img/mixed.svg
6851
%%WWWDIR%%/apps-pkg/files_texteditor/appinfo/app.php
6852
%%WWWDIR%%/apps/files_texteditor/img/text.svg
6852
%%WWWDIR%%/apps-pkg/files_texteditor/appinfo/info.xml
6853
%%WWWDIR%%/apps/files_texteditor/js/add-nounce.patch
6853
%%WWWDIR%%/apps-pkg/files_texteditor/appinfo/routes.php
6854
%%WWWDIR%%/apps/files_texteditor/js/bower.json
6854
%%WWWDIR%%/apps-pkg/files_texteditor/appinfo/signature.json
6855
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/LICENSE
6855
%%WWWDIR%%/apps-pkg/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.eot
6856
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ace.js
6856
%%WWWDIR%%/apps-pkg/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.svg
6857
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ext-modelist.js
6857
%%WWWDIR%%/apps-pkg/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.ttf
6858
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ext-searchbox.js
6858
%%WWWDIR%%/apps-pkg/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.woff
6859
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/keybinding-emacs.js
6859
%%WWWDIR%%/apps-pkg/files_texteditor/css/DroidSansMono/Google Android License.txt
6860
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/keybinding-vim.js
6860
%%WWWDIR%%/apps-pkg/files_texteditor/css/DroidSansMono/stylesheet.scss
6861
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-abap.js
6861
%%WWWDIR%%/apps-pkg/files_texteditor/css/merged.scss
6862
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-abc.js
6862
%%WWWDIR%%/apps-pkg/files_texteditor/css/mobile.scss
6863
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-actionscript.js
6863
%%WWWDIR%%/apps-pkg/files_texteditor/css/public-share.css
6864
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ada.js
6864
%%WWWDIR%%/apps-pkg/files_texteditor/css/style.scss
6865
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-apache_conf.js
6865
%%WWWDIR%%/apps-pkg/files_texteditor/img/app.png
6866
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-applescript.js
6866
%%WWWDIR%%/apps-pkg/files_texteditor/img/app.svg
6867
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-asciidoc.js
6867
%%WWWDIR%%/apps-pkg/files_texteditor/img/image.svg
6868
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-assembly_x86.js
6868
%%WWWDIR%%/apps-pkg/files_texteditor/img/mixed.svg
6869
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-autohotkey.js
6869
%%WWWDIR%%/apps-pkg/files_texteditor/img/text.svg
6870
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-batchfile.js
6870
%%WWWDIR%%/apps-pkg/files_texteditor/js/add-nounce.patch
6871
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-bro.js
6871
%%WWWDIR%%/apps-pkg/files_texteditor/js/bower.json
6872
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c9search.js
6872
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/LICENSE
6873
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c_cpp.js
6873
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ace.js
6874
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-cirru.js
6874
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ext-modelist.js
6875
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-clojure.js
6875
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ext-searchbox.js
6876
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-cobol.js
6876
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/keybinding-emacs.js
6877
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-coffee.js
6877
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/keybinding-vim.js
6878
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-coldfusion.js
6878
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-abap.js
6879
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-csharp.js
6879
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-abc.js
6880
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-css.js
6880
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-actionscript.js
6881
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-curly.js
6881
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ada.js
6882
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-d.js
6882
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-apache_conf.js
6883
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dart.js
6883
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-applescript.js
6884
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-diff.js
6884
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-asciidoc.js
6885
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-django.js
6885
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-assembly_x86.js
6886
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dockerfile.js
6886
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-autohotkey.js
6887
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dot.js
6887
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-batchfile.js
6888
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-drools.js
6888
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-bro.js
6889
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-eiffel.js
6889
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c9search.js
6890
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ejs.js
6890
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c_cpp.js
6891
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-elixir.js
6891
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-cirru.js
6892
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-elm.js
6892
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-clojure.js
6893
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-erlang.js
6893
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-cobol.js
6894
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-forth.js
6894
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-coffee.js
6895
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-fortran.js
6895
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-coldfusion.js
6896
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ftl.js
6896
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-csharp.js
6897
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gcode.js
6897
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-css.js
6898
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gherkin.js
6898
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-curly.js
6899
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gitignore.js
6899
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-d.js
6900
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-glsl.js
6900
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dart.js
6901
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gobstones.js
6901
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-diff.js
6902
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-golang.js
6902
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-django.js
6903
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-graphqlschema.js
6903
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dockerfile.js
6904
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-groovy.js
6904
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dot.js
6905
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haml.js
6905
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-drools.js
6906
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-handlebars.js
6906
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-eiffel.js
6907
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell.js
6907
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ejs.js
6908
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell_cabal.js
6908
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-elixir.js
6909
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haxe.js
6909
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-elm.js
6910
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-hjson.js
6910
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-erlang.js
6911
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html.js
6911
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-forth.js
6912
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_elixir.js
6912
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-fortran.js
6913
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_ruby.js
6913
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ftl.js
6914
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ini.js
6914
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gcode.js
6915
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-io.js
6915
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gherkin.js
6916
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jack.js
6916
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gitignore.js
6917
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jade.js
6917
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-glsl.js
6918
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-java.js
6918
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gobstones.js
6919
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-javascript.js
6919
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-golang.js
6920
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-json.js
6920
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-graphqlschema.js
6921
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsoniq.js
6921
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-groovy.js
6922
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsp.js
6922
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haml.js
6923
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsx.js
6923
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-handlebars.js
6924
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-julia.js
6924
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell.js
6925
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-kotlin.js
6925
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell_cabal.js
6926
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-latex.js
6926
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haxe.js
6927
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lean.js
6927
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-hjson.js
6928
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-less.js
6928
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html.js
6929
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-liquid.js
6929
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_elixir.js
6930
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lisp.js
6930
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_ruby.js
6931
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-live_script.js
6931
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ini.js
6932
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-livescript.js
6932
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-io.js
6933
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-logiql.js
6933
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jack.js
6934
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lsl.js
6934
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jade.js
6935
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lua.js
6935
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-java.js
6936
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-luapage.js
6936
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-javascript.js
6937
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lucene.js
6937
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-json.js
6938
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-makefile.js
6938
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsoniq.js
6939
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-markdown.js
6939
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsp.js
6940
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mask.js
6940
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsx.js
6941
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-matlab.js
6941
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-julia.js
6942
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mavens_mate_log.js
6942
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-kotlin.js
6943
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-maze.js
6943
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-latex.js
6944
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mel.js
6944
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lean.js
6945
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mips_assembler.js
6945
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-less.js
6946
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mipsassembler.js
6946
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-liquid.js
6947
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mushcode.js
6947
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lisp.js
6948
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mysql.js
6948
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-live_script.js
6949
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-nix.js
6949
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-livescript.js
6950
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-nsis.js
6950
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-logiql.js
6951
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-objectivec.js
6951
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lsl.js
6952
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ocaml.js
6952
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lua.js
6953
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pascal.js
6953
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-luapage.js
6954
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-perl.js
6954
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lucene.js
6955
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pgsql.js
6955
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-makefile.js
6956
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-php.js
6956
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-markdown.js
6957
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pig.js
6957
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mask.js
6958
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-plain_text.js
6958
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-matlab.js
6959
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-powershell.js
6959
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mavens_mate_log.js
6960
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-praat.js
6960
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-maze.js
6961
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-prolog.js
6961
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mel.js
6962
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-properties.js
6962
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mips_assembler.js
6963
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-protobuf.js
6963
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mipsassembler.js
6964
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-python.js
6964
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mushcode.js
6965
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-r.js
6965
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mysql.js
6966
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-razor.js
6966
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-nix.js
6967
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rdoc.js
6967
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-nsis.js
6968
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rhtml.js
6968
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-objectivec.js
6969
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rst.js
6969
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ocaml.js
6970
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ruby.js
6970
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pascal.js
6971
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rust.js
6971
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-perl.js
6972
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sass.js
6972
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pgsql.js
6973
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scad.js
6973
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-php.js
6974
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scala.js
6974
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pig.js
6975
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scheme.js
6975
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-plain_text.js
6976
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scss.js
6976
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-powershell.js
6977
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sh.js
6977
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-praat.js
6978
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sjs.js
6978
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-prolog.js
6979
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-smarty.js
6979
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-properties.js
6980
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-snippets.js
6980
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-protobuf.js
6981
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-soy_template.js
6981
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-python.js
6982
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-space.js
6982
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-r.js
6983
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sparql.js
6983
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-razor.js
6984
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sql.js
6984
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rdoc.js
6985
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sqlserver.js
6985
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rhtml.js
6986
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-stylus.js
6986
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rst.js
6987
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-svg.js
6987
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ruby.js
6988
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-swift.js
6988
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rust.js
6989
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-swig.js
6989
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sass.js
6990
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tcl.js
6990
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scad.js
6991
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tex.js
6991
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scala.js
6992
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-text.js
6992
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scheme.js
6993
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-textile.js
6993
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scss.js
6994
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-toml.js
6994
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sh.js
6995
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tsx.js
6995
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sjs.js
6996
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-turtle.js
6996
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-smarty.js
6997
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-twig.js
6997
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-snippets.js
6998
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-typescript.js
6998
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-soy_template.js
6999
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vala.js
6999
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-space.js
7000
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vbscript.js
7000
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sparql.js
7001
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-velocity.js
7001
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sql.js
7002
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-verilog.js
7002
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sqlserver.js
7003
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vhdl.js
7003
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-stylus.js
7004
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-wollok.js
7004
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-svg.js
7005
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-xml.js
7005
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-swift.js
7006
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-xquery.js
7006
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-swig.js
7007
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-yaml.js
7007
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tcl.js
7008
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/abap.js
7008
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tex.js
7009
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/abc.js
7009
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-text.js
7010
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/actionscript.js
7010
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-textile.js
7011
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ada.js
7011
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-toml.js
7012
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/apache_conf.js
7012
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tsx.js
7013
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/applescript.js
7013
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-turtle.js
7014
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/asciidoc.js
7014
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-twig.js
7015
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/assembly_x86.js
7015
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-typescript.js
7016
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/autohotkey.js
7016
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vala.js
7017
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/batchfile.js
7017
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vbscript.js
7018
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/bro.js
7018
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-velocity.js
7019
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c9search.js
7019
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-verilog.js
7020
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c_cpp.js
7020
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vhdl.js
7021
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/cirru.js
7021
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-wollok.js
7022
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/clojure.js
7022
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-xml.js
7023
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/cobol.js
7023
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-xquery.js
7024
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/coffee.js
7024
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-yaml.js
7025
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/coldfusion.js
7025
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/abap.js
7026
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/csharp.js
7026
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/abc.js
7027
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/css.js
7027
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/actionscript.js
7028
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/curly.js
7028
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ada.js
7029
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/d.js
7029
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/apache_conf.js
7030
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dart.js
7030
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/applescript.js
7031
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/diff.js
7031
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/asciidoc.js
7032
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/django.js
7032
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/assembly_x86.js
7033
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dockerfile.js
7033
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/autohotkey.js
7034
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dot.js
7034
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/batchfile.js
7035
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/drools.js
7035
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/bro.js
7036
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/eiffel.js
7036
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c9search.js
7037
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ejs.js
7037
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c_cpp.js
7038
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/elixir.js
7038
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/cirru.js
7039
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/elm.js
7039
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/clojure.js
7040
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/erlang.js
7040
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/cobol.js
7041
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/forth.js
7041
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/coffee.js
7042
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/fortran.js
7042
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/coldfusion.js
7043
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ftl.js
7043
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/csharp.js
7044
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gcode.js
7044
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/css.js
7045
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gherkin.js
7045
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/curly.js
7046
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gitignore.js
7046
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/d.js
7047
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/glsl.js
7047
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dart.js
7048
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gobstones.js
7048
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/diff.js
7049
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/golang.js
7049
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/django.js
7050
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/graphqlschema.js
7050
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dockerfile.js
7051
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/groovy.js
7051
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dot.js
7052
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haml.js
7052
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/drools.js
7053
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/handlebars.js
7053
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/eiffel.js
7054
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell.js
7054
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ejs.js
7055
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell_cabal.js
7055
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/elixir.js
7056
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haxe.js
7056
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/elm.js
7057
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/hjson.js
7057
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/erlang.js
7058
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html.js
7058
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/forth.js
7059
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_elixir.js
7059
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/fortran.js
7060
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_ruby.js
7060
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ftl.js
7061
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ini.js
7061
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gcode.js
7062
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/io.js
7062
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gherkin.js
7063
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jack.js
7063
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gitignore.js
7064
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jade.js
7064
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/glsl.js
7065
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/java.js
7065
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gobstones.js
7066
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/javascript.js
7066
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/golang.js
7067
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/json.js
7067
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/graphqlschema.js
7068
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsoniq.js
7068
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/groovy.js
7069
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsp.js
7069
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haml.js
7070
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsx.js
7070
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/handlebars.js
7071
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/julia.js
7071
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell.js
7072
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/kotlin.js
7072
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell_cabal.js
7073
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/latex.js
7073
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haxe.js
7074
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lean.js
7074
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/hjson.js
7075
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/less.js
7075
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html.js
7076
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/liquid.js
7076
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_elixir.js
7077
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lisp.js
7077
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_ruby.js
7078
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/live_script.js
7078
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ini.js
7079
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/livescript.js
7079
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/io.js
7080
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/logiql.js
7080
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jack.js
7081
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lsl.js
7081
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jade.js
7082
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lua.js
7082
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/java.js
7083
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/luapage.js
7083
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/javascript.js
7084
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lucene.js
7084
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/json.js
7085
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/makefile.js
7085
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsoniq.js
7086
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/markdown.js
7086
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsp.js
7087
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mask.js
7087
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsx.js
7088
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/matlab.js
7088
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/julia.js
7089
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/maze.js
7089
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/kotlin.js
7090
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mel.js
7090
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/latex.js
7091
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mips_assembler.js
7091
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lean.js
7092
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mipsassembler.js
7092
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/less.js
7093
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mushcode.js
7093
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/liquid.js
7094
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mysql.js
7094
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lisp.js
7095
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/nix.js
7095
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/live_script.js
7096
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/nsis.js
7096
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/livescript.js
7097
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/objectivec.js
7097
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/logiql.js
7098
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ocaml.js
7098
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lsl.js
7099
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pascal.js
7099
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lua.js
7100
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/perl.js
7100
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/luapage.js
7101
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pgsql.js
7101
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lucene.js
7102
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/php.js
7102
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/makefile.js
7103
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pig.js
7103
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/markdown.js
7104
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/plain_text.js
7104
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mask.js
7105
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/powershell.js
7105
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/matlab.js
7106
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/praat.js
7106
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/maze.js
7107
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/prolog.js
7107
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mel.js
7108
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/properties.js
7108
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mips_assembler.js
7109
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/protobuf.js
7109
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mipsassembler.js
7110
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/python.js
7110
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mushcode.js
7111
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/r.js
7111
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mysql.js
7112
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/razor.js
7112
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/nix.js
7113
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rdoc.js
7113
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/nsis.js
7114
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rhtml.js
7114
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/objectivec.js
7115
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rst.js
7115
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ocaml.js
7116
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ruby.js
7116
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pascal.js
7117
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rust.js
7117
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/perl.js
7118
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sass.js
7118
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pgsql.js
7119
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scad.js
7119
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/php.js
7120
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scala.js
7120
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pig.js
7121
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scheme.js
7121
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/plain_text.js
7122
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scss.js
7122
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/powershell.js
7123
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sh.js
7123
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/praat.js
7124
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sjs.js
7124
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/prolog.js
7125
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/smarty.js
7125
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/properties.js
7126
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/snippets.js
7126
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/protobuf.js
7127
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/soy_template.js
7127
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/python.js
7128
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/space.js
7128
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/r.js
7129
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sparql.js
7129
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/razor.js
7130
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sql.js
7130
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rdoc.js
7131
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sqlserver.js
7131
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rhtml.js
7132
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/stylus.js
7132
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rst.js
7133
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/svg.js
7133
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ruby.js
7134
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/swift.js
7134
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rust.js
7135
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/swig.js
7135
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sass.js
7136
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tcl.js
7136
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scad.js
7137
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tex.js
7137
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scala.js
7138
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/text.js
7138
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scheme.js
7139
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/textile.js
7139
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scss.js
7140
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/toml.js
7140
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sh.js
7141
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tsx.js
7141
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sjs.js
7142
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/turtle.js
7142
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/smarty.js
7143
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/twig.js
7143
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/snippets.js
7144
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/typescript.js
7144
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/soy_template.js
7145
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vala.js
7145
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/space.js
7146
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vbscript.js
7146
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sparql.js
7147
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/velocity.js
7147
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sql.js
7148
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/verilog.js
7148
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sqlserver.js
7149
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vhdl.js
7149
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/stylus.js
7150
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/wollok.js
7150
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/svg.js
7151
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/xml.js
7151
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/swift.js
7152
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/xquery.js
7152
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/swig.js
7153
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/yaml.js
7153
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tcl.js
7154
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/theme-clouds.js
7154
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tex.js
7155
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-coffee.js
7155
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/text.js
7156
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-css.js
7156
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/textile.js
7157
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-html.js
7157
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/toml.js
7158
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-javascript.js
7158
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tsx.js
7159
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-json.js
7159
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/turtle.js
7160
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-lua.js
7160
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/twig.js
7161
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-php.js
7161
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/typescript.js
7162
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-xml.js
7162
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vala.js
7163
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-xquery.js
7163
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vbscript.js
7164
%%WWWDIR%%/apps/files_texteditor/js/editor.js
7164
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/velocity.js
7165
%%WWWDIR%%/apps/files_texteditor/js/merged.json
7165
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/verilog.js
7166
%%WWWDIR%%/apps/files_texteditor/js/public-share.js
7166
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vhdl.js
7167
%%WWWDIR%%/apps/files_texteditor/js/sidebarpreview.js
7167
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/wollok.js
7168
%%WWWDIR%%/apps/files_texteditor/l10n/.gitkeep
7168
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/xml.js
7169
%%WWWDIR%%/apps/files_texteditor/l10n/.tx/config
7169
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/xquery.js
7170
%%WWWDIR%%/apps/files_texteditor/l10n/ar.php
7170
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/yaml.js
7171
%%WWWDIR%%/apps/files_texteditor/l10n/ast.js
7171
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/theme-clouds.js
7172
%%WWWDIR%%/apps/files_texteditor/l10n/ast.json
7172
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-coffee.js
7173
%%WWWDIR%%/apps/files_texteditor/l10n/az.js
7173
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-css.js
7174
%%WWWDIR%%/apps/files_texteditor/l10n/az.json
7174
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-html.js
7175
%%WWWDIR%%/apps/files_texteditor/l10n/bg.js
7175
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-javascript.js
7176
%%WWWDIR%%/apps/files_texteditor/l10n/bg.json
7176
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-json.js
7177
%%WWWDIR%%/apps/files_texteditor/l10n/bn_BD.php
7177
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-lua.js
7178
%%WWWDIR%%/apps/files_texteditor/l10n/bs.php
7178
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-php.js
7179
%%WWWDIR%%/apps/files_texteditor/l10n/ca.js
7179
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-xml.js
7180
%%WWWDIR%%/apps/files_texteditor/l10n/ca.json
7180
%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-xquery.js
7181
%%WWWDIR%%/apps/files_texteditor/l10n/cs.js
7181
%%WWWDIR%%/apps-pkg/files_texteditor/js/editor.js
7182
%%WWWDIR%%/apps/files_texteditor/l10n/cs.json
7182
%%WWWDIR%%/apps-pkg/files_texteditor/js/merged.json
7183
%%WWWDIR%%/apps/files_texteditor/l10n/cy_GB.php
7183
%%WWWDIR%%/apps-pkg/files_texteditor/js/public-share.js
7184
%%WWWDIR%%/apps/files_texteditor/l10n/da.js
7184
%%WWWDIR%%/apps-pkg/files_texteditor/js/sidebarpreview.js
7185
%%WWWDIR%%/apps/files_texteditor/l10n/da.json
7185
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/.gitkeep
7186
%%WWWDIR%%/apps/files_texteditor/l10n/de.js
7186
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/.tx/config
7187
%%WWWDIR%%/apps/files_texteditor/l10n/de.json
7187
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ar.php
7188
%%WWWDIR%%/apps/files_texteditor/l10n/de_CH.php
7188
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ast.js
7189
%%WWWDIR%%/apps/files_texteditor/l10n/de_DE.js
7189
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ast.json
7190
%%WWWDIR%%/apps/files_texteditor/l10n/de_DE.json
7190
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/az.js
7191
%%WWWDIR%%/apps/files_texteditor/l10n/el.js
7191
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/az.json
7192
%%WWWDIR%%/apps/files_texteditor/l10n/el.json
7192
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/bg.js
7193
%%WWWDIR%%/apps/files_texteditor/l10n/en_GB.js
7193
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/bg.json
7194
%%WWWDIR%%/apps/files_texteditor/l10n/en_GB.json
7194
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/bn_BD.php
7195
%%WWWDIR%%/apps/files_texteditor/l10n/eo.js
7195
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/bs.php
7196
%%WWWDIR%%/apps/files_texteditor/l10n/eo.json
7196
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ca.js
7197
%%WWWDIR%%/apps/files_texteditor/l10n/es.js
7197
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ca.json
7198
%%WWWDIR%%/apps/files_texteditor/l10n/es.json
7198
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/cs.js
7199
%%WWWDIR%%/apps/files_texteditor/l10n/es_419.js
7199
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/cs.json
7200
%%WWWDIR%%/apps/files_texteditor/l10n/es_419.json
7200
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/cy_GB.php
7201
%%WWWDIR%%/apps/files_texteditor/l10n/es_AR.js
7201
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/da.js
7202
%%WWWDIR%%/apps/files_texteditor/l10n/es_AR.json
7202
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/da.json
7203
%%WWWDIR%%/apps/files_texteditor/l10n/es_CL.js
7203
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/de.js
7204
%%WWWDIR%%/apps/files_texteditor/l10n/es_CL.json
7204
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/de.json
7205
%%WWWDIR%%/apps/files_texteditor/l10n/es_CO.js
7205
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/de_CH.php
7206
%%WWWDIR%%/apps/files_texteditor/l10n/es_CO.json
7206
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/de_DE.js
7207
%%WWWDIR%%/apps/files_texteditor/l10n/es_CR.js
7207
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/de_DE.json
7208
%%WWWDIR%%/apps/files_texteditor/l10n/es_CR.json
7208
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/el.js
7209
%%WWWDIR%%/apps/files_texteditor/l10n/es_DO.js
7209
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/el.json
7210
%%WWWDIR%%/apps/files_texteditor/l10n/es_DO.json
7210
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/en_GB.js
7211
%%WWWDIR%%/apps/files_texteditor/l10n/es_EC.js
7211
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/en_GB.json
7212
%%WWWDIR%%/apps/files_texteditor/l10n/es_EC.json
7212
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/eo.js
7213
%%WWWDIR%%/apps/files_texteditor/l10n/es_GT.js
7213
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/eo.json
7214
%%WWWDIR%%/apps/files_texteditor/l10n/es_GT.json
7214
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es.js
7215
%%WWWDIR%%/apps/files_texteditor/l10n/es_HN.js
7215
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es.json
7216
%%WWWDIR%%/apps/files_texteditor/l10n/es_HN.json
7216
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_419.js
7217
%%WWWDIR%%/apps/files_texteditor/l10n/es_MX.js
7217
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_419.json
7218
%%WWWDIR%%/apps/files_texteditor/l10n/es_MX.json
7218
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_AR.js
7219
%%WWWDIR%%/apps/files_texteditor/l10n/es_NI.js
7219
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_AR.json
7220
%%WWWDIR%%/apps/files_texteditor/l10n/es_NI.json
7220
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_CL.js
7221
%%WWWDIR%%/apps/files_texteditor/l10n/es_PA.js
7221
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_CL.json
7222
%%WWWDIR%%/apps/files_texteditor/l10n/es_PA.json
7222
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_CO.js
7223
%%WWWDIR%%/apps/files_texteditor/l10n/es_PE.js
7223
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_CO.json
7224
%%WWWDIR%%/apps/files_texteditor/l10n/es_PE.json
7224
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_CR.js
7225
%%WWWDIR%%/apps/files_texteditor/l10n/es_PR.js
7225
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_CR.json
7226
%%WWWDIR%%/apps/files_texteditor/l10n/es_PR.json
7226
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_DO.js
7227
%%WWWDIR%%/apps/files_texteditor/l10n/es_PY.js
7227
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_DO.json
7228
%%WWWDIR%%/apps/files_texteditor/l10n/es_PY.json
7228
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_EC.js
7229
%%WWWDIR%%/apps/files_texteditor/l10n/es_SV.js
7229
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_EC.json
7230
%%WWWDIR%%/apps/files_texteditor/l10n/es_SV.json
7230
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_GT.js
7231
%%WWWDIR%%/apps/files_texteditor/l10n/es_UY.js
7231
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_GT.json
7232
%%WWWDIR%%/apps/files_texteditor/l10n/es_UY.json
7232
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_HN.js
7233
%%WWWDIR%%/apps/files_texteditor/l10n/et_EE.js
7233
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_HN.json
7234
%%WWWDIR%%/apps/files_texteditor/l10n/et_EE.json
7234
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_MX.js
7235
%%WWWDIR%%/apps/files_texteditor/l10n/eu.js
7235
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_MX.json
7236
%%WWWDIR%%/apps/files_texteditor/l10n/eu.json
7236
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_NI.js
7237
%%WWWDIR%%/apps/files_texteditor/l10n/eu_ES.php
7237
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_NI.json
7238
%%WWWDIR%%/apps/files_texteditor/l10n/fa.js
7238
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PA.js
7239
%%WWWDIR%%/apps/files_texteditor/l10n/fa.json
7239
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PA.json
7240
%%WWWDIR%%/apps/files_texteditor/l10n/fi.js
7240
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PE.js
7241
%%WWWDIR%%/apps/files_texteditor/l10n/fi.json
7241
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PE.json
7242
%%WWWDIR%%/apps/files_texteditor/l10n/fr.js
7242
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PR.js
7243
%%WWWDIR%%/apps/files_texteditor/l10n/fr.json
7243
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PR.json
7244
%%WWWDIR%%/apps/files_texteditor/l10n/he.js
7244
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PY.js
7245
%%WWWDIR%%/apps/files_texteditor/l10n/he.json
7245
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PY.json
7246
%%WWWDIR%%/apps/files_texteditor/l10n/hi.php
7246
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_SV.js
7247
%%WWWDIR%%/apps/files_texteditor/l10n/hr.php
7247
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_SV.json
7248
%%WWWDIR%%/apps/files_texteditor/l10n/hu.js
7248
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_UY.js
7249
%%WWWDIR%%/apps/files_texteditor/l10n/hu.json
7249
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_UY.json
7250
%%WWWDIR%%/apps/files_texteditor/l10n/hy.js
7250
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/et_EE.js
7251
%%WWWDIR%%/apps/files_texteditor/l10n/hy.json
7251
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/et_EE.json
7252
%%WWWDIR%%/apps/files_texteditor/l10n/ia.php
7252
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/eu.js
7253
%%WWWDIR%%/apps/files_texteditor/l10n/id.js
7253
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/eu.json
7254
%%WWWDIR%%/apps/files_texteditor/l10n/id.json
7254
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/eu_ES.php
7255
%%WWWDIR%%/apps/files_texteditor/l10n/is.js
7255
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/fa.js
7256
%%WWWDIR%%/apps/files_texteditor/l10n/is.json
7256
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/fa.json
7257
%%WWWDIR%%/apps/files_texteditor/l10n/it.js
7257
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/fi.js
7258
%%WWWDIR%%/apps/files_texteditor/l10n/it.json
7258
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/fi.json
7259
%%WWWDIR%%/apps/files_texteditor/l10n/ja.js
7259
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/fr.js
7260
%%WWWDIR%%/apps/files_texteditor/l10n/ja.json
7260
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/fr.json
7261
%%WWWDIR%%/apps/files_texteditor/l10n/ka_GE.js
7261
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/he.js
7262
%%WWWDIR%%/apps/files_texteditor/l10n/ka_GE.json
7262
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/he.json
7263
%%WWWDIR%%/apps/files_texteditor/l10n/km.php
7263
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/hi.php
7264
%%WWWDIR%%/apps/files_texteditor/l10n/ko.js
7264
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/hr.php
7265
%%WWWDIR%%/apps/files_texteditor/l10n/ko.json
7265
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/hu.js
7266
%%WWWDIR%%/apps/files_texteditor/l10n/ku_IQ.php
7266
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/hu.json
7267
%%WWWDIR%%/apps/files_texteditor/l10n/lb.php
7267
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/hy.js
7268
%%WWWDIR%%/apps/files_texteditor/l10n/lt_LT.js
7268
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/hy.json
7269
%%WWWDIR%%/apps/files_texteditor/l10n/lt_LT.json
7269
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ia.php
7270
%%WWWDIR%%/apps/files_texteditor/l10n/lv.php
7270
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/id.js
7271
%%WWWDIR%%/apps/files_texteditor/l10n/mk.php
7271
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/id.json
7272
%%WWWDIR%%/apps/files_texteditor/l10n/ms_MY.php
7272
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/is.js
7273
%%WWWDIR%%/apps/files_texteditor/l10n/nb.js
7273
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/is.json
7274
%%WWWDIR%%/apps/files_texteditor/l10n/nb.json
7274
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/it.js
7275
%%WWWDIR%%/apps/files_texteditor/l10n/nl.js
7275
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/it.json
7276
%%WWWDIR%%/apps/files_texteditor/l10n/nl.json
7276
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ja.js
7277
%%WWWDIR%%/apps/files_texteditor/l10n/nn_NO.js
7277
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ja.json
7278
%%WWWDIR%%/apps/files_texteditor/l10n/nn_NO.json
7278
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ka_GE.js
7279
%%WWWDIR%%/apps/files_texteditor/l10n/oc.js
7279
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ka_GE.json
7280
%%WWWDIR%%/apps/files_texteditor/l10n/oc.json
7280
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/km.php
7281
%%WWWDIR%%/apps/files_texteditor/l10n/pa.php
7281
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ko.js
7282
%%WWWDIR%%/apps/files_texteditor/l10n/pl.js
7282
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ko.json
7283
%%WWWDIR%%/apps/files_texteditor/l10n/pl.json
7283
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ku_IQ.php
7284
%%WWWDIR%%/apps/files_texteditor/l10n/pt_BR.js
7284
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/lb.php
7285
%%WWWDIR%%/apps/files_texteditor/l10n/pt_BR.json
7285
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/lt_LT.js
7286
%%WWWDIR%%/apps/files_texteditor/l10n/pt_PT.js
7286
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/lt_LT.json
7287
%%WWWDIR%%/apps/files_texteditor/l10n/pt_PT.json
7287
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/lv.php
7288
%%WWWDIR%%/apps/files_texteditor/l10n/ro.js
7288
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/mk.php
7289
%%WWWDIR%%/apps/files_texteditor/l10n/ro.json
7289
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ms_MY.php
7290
%%WWWDIR%%/apps/files_texteditor/l10n/ru.js
7290
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/nb.js
7291
%%WWWDIR%%/apps/files_texteditor/l10n/ru.json
7291
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/nb.json
7292
%%WWWDIR%%/apps/files_texteditor/l10n/si_LK.php
7292
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/nl.js
7293
%%WWWDIR%%/apps/files_texteditor/l10n/sk.js
7293
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/nl.json
7294
%%WWWDIR%%/apps/files_texteditor/l10n/sk.json
7294
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/nn_NO.js
7295
%%WWWDIR%%/apps/files_texteditor/l10n/sl.js
7295
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/nn_NO.json
7296
%%WWWDIR%%/apps/files_texteditor/l10n/sl.json
7296
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/oc.js
7297
%%WWWDIR%%/apps/files_texteditor/l10n/sq.js
7297
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/oc.json
7298
%%WWWDIR%%/apps/files_texteditor/l10n/sq.json
7298
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/pa.php
7299
%%WWWDIR%%/apps/files_texteditor/l10n/sr.js
7299
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/pl.js
7300
%%WWWDIR%%/apps/files_texteditor/l10n/sr.json
7300
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/pl.json
7301
%%WWWDIR%%/apps/files_texteditor/l10n/sv.js
7301
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/pt_BR.js
7302
%%WWWDIR%%/apps/files_texteditor/l10n/sv.json
7302
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/pt_BR.json
7303
%%WWWDIR%%/apps/files_texteditor/l10n/ta_LK.php
7303
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/pt_PT.js
7304
%%WWWDIR%%/apps/files_texteditor/l10n/te.php
7304
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/pt_PT.json
7305
%%WWWDIR%%/apps/files_texteditor/l10n/th.js
7305
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ro.js
7306
%%WWWDIR%%/apps/files_texteditor/l10n/th.json
7306
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ro.json
7307
%%WWWDIR%%/apps/files_texteditor/l10n/tr.js
7307
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ru.js
7308
%%WWWDIR%%/apps/files_texteditor/l10n/tr.json
7308
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ru.json
7309
%%WWWDIR%%/apps/files_texteditor/l10n/ug.php
7309
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/si_LK.php
7310
%%WWWDIR%%/apps/files_texteditor/l10n/uk.js
7310
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sk.js
7311
%%WWWDIR%%/apps/files_texteditor/l10n/uk.json
7311
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sk.json
7312
%%WWWDIR%%/apps/files_texteditor/l10n/vi.php
7312
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sl.js
7313
%%WWWDIR%%/apps/files_texteditor/l10n/zh_CN.js
7313
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sl.json
7314
%%WWWDIR%%/apps/files_texteditor/l10n/zh_CN.json
7314
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sq.js
7315
%%WWWDIR%%/apps/files_texteditor/l10n/zh_HK.php
7315
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sq.json
7316
%%WWWDIR%%/apps/files_texteditor/l10n/zh_TW.js
7316
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sr.js
7317
%%WWWDIR%%/apps/files_texteditor/l10n/zh_TW.json
7317
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sr.json
7318
%%WWWDIR%%/apps/files_texteditor/lib/Controller/FileHandlingController.php
7318
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sv.js
7319
%%WWWDIR%%/apps/files_trashbin/ajax/delete.php
7319
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sv.json
7320
%%WWWDIR%%/apps/files_trashbin/ajax/isEmpty.php
7320
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ta_LK.php
7321
%%WWWDIR%%/apps/files_trashbin/ajax/list.php
7321
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/te.php
7322
%%WWWDIR%%/apps/files_trashbin/ajax/undelete.php
7322
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/th.js
7323
%%WWWDIR%%/apps/files_trashbin/appinfo/app.php
7323
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/th.json
7324
%%WWWDIR%%/apps/files_trashbin/appinfo/database.xml
7324
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/tr.js
7325
%%WWWDIR%%/apps/files_trashbin/appinfo/info.xml
7325
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/tr.json
7326
%%WWWDIR%%/apps/files_trashbin/appinfo/routes.php
7326
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ug.php
7327
%%WWWDIR%%/apps/files_trashbin/appinfo/signature.json
7327
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/uk.js
7328
%%WWWDIR%%/apps/files_trashbin/composer/autoload.php
7328
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/uk.json
7329
%%WWWDIR%%/apps/files_trashbin/composer/composer.json
7329
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/vi.php
7330
%%WWWDIR%%/apps/files_trashbin/composer/composer/ClassLoader.php
7330
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/zh_CN.js
7331
%%WWWDIR%%/apps/files_trashbin/composer/composer/LICENSE
7331
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/zh_CN.json
7332
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_classmap.php
7332
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/zh_HK.php
7333
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_namespaces.php
7333
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/zh_TW.js
7334
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_psr4.php
7334
%%WWWDIR%%/apps-pkg/files_texteditor/l10n/zh_TW.json
7335
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_real.php
7335
%%WWWDIR%%/apps-pkg/files_texteditor/lib/Controller/FileHandlingController.php
7336
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_static.php
7336
%%WWWDIR%%/apps-pkg/files_trashbin/ajax/delete.php
7337
%%WWWDIR%%/apps/files_trashbin/css/trash.scss
7337
%%WWWDIR%%/apps-pkg/files_trashbin/ajax/isEmpty.php
7338
%%WWWDIR%%/apps/files_trashbin/img/app.svg
7338
%%WWWDIR%%/apps-pkg/files_trashbin/ajax/list.php
7339
%%WWWDIR%%/apps/files_trashbin/js/app.js
7339
%%WWWDIR%%/apps-pkg/files_trashbin/ajax/undelete.php
7340
%%WWWDIR%%/apps/files_trashbin/js/filelist.js
7340
%%WWWDIR%%/apps-pkg/files_trashbin/appinfo/app.php
7341
%%WWWDIR%%/apps/files_trashbin/l10n/.gitkeep
7341
%%WWWDIR%%/apps-pkg/files_trashbin/appinfo/database.xml
7342
%%WWWDIR%%/apps/files_trashbin/l10n/af.js
7342
%%WWWDIR%%/apps-pkg/files_trashbin/appinfo/info.xml
7343
%%WWWDIR%%/apps/files_trashbin/l10n/af.json
7343
%%WWWDIR%%/apps-pkg/files_trashbin/appinfo/routes.php
7344
%%WWWDIR%%/apps/files_trashbin/l10n/af_ZA.js
7344
%%WWWDIR%%/apps-pkg/files_trashbin/appinfo/signature.json
7345
%%WWWDIR%%/apps/files_trashbin/l10n/af_ZA.json
7345
%%WWWDIR%%/apps-pkg/files_trashbin/composer/autoload.php
7346
%%WWWDIR%%/apps/files_trashbin/l10n/ar.js
7346
%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer.json
7347
%%WWWDIR%%/apps/files_trashbin/l10n/ar.json
7347
%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer/ClassLoader.php
7348
%%WWWDIR%%/apps/files_trashbin/l10n/ast.js
7348
%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer/LICENSE
7349
%%WWWDIR%%/apps/files_trashbin/l10n/ast.json
7349
%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer/autoload_classmap.php
7350
%%WWWDIR%%/apps/files_trashbin/l10n/az.js
7350
%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer/autoload_namespaces.php
7351
%%WWWDIR%%/apps/files_trashbin/l10n/az.json
7351
%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer/autoload_psr4.php
7352
%%WWWDIR%%/apps/files_trashbin/l10n/be.js
7352
%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer/autoload_real.php
7353
%%WWWDIR%%/apps/files_trashbin/l10n/be.json
7353
%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer/autoload_static.php
7354
%%WWWDIR%%/apps/files_trashbin/l10n/bg.js
7354
%%WWWDIR%%/apps-pkg/files_trashbin/css/trash.scss
7355
%%WWWDIR%%/apps/files_trashbin/l10n/bg.json
7355
%%WWWDIR%%/apps-pkg/files_trashbin/img/app.svg
7356
%%WWWDIR%%/apps/files_trashbin/l10n/bg_BG.js
7356
%%WWWDIR%%/apps-pkg/files_trashbin/js/app.js
7357
%%WWWDIR%%/apps/files_trashbin/l10n/bg_BG.json
7357
%%WWWDIR%%/apps-pkg/files_trashbin/js/filelist.js
7358
%%WWWDIR%%/apps/files_trashbin/l10n/bn_BD.js
7358
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/.gitkeep
7359
%%WWWDIR%%/apps/files_trashbin/l10n/bn_BD.json
7359
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/af.js
7360
%%WWWDIR%%/apps/files_trashbin/l10n/bn_IN.js
7360
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/af.json
7361
%%WWWDIR%%/apps/files_trashbin/l10n/bn_IN.json
7361
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/af_ZA.js
7362
%%WWWDIR%%/apps/files_trashbin/l10n/bs.js
7362
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/af_ZA.json
7363
%%WWWDIR%%/apps/files_trashbin/l10n/bs.json
7363
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ar.js
7364
%%WWWDIR%%/apps/files_trashbin/l10n/ca.js
7364
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ar.json
7365
%%WWWDIR%%/apps/files_trashbin/l10n/ca.json
7365
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ast.js
7366
%%WWWDIR%%/apps/files_trashbin/l10n/cs.js
7366
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ast.json
7367
%%WWWDIR%%/apps/files_trashbin/l10n/cs.json
7367
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/az.js
7368
%%WWWDIR%%/apps/files_trashbin/l10n/cs_CZ.js
7368
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/az.json
7369
%%WWWDIR%%/apps/files_trashbin/l10n/cs_CZ.json
7369
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/be.js
7370
%%WWWDIR%%/apps/files_trashbin/l10n/cy_GB.js
7370
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/be.json
7371
%%WWWDIR%%/apps/files_trashbin/l10n/cy_GB.json
7371
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bg.js
7372
%%WWWDIR%%/apps/files_trashbin/l10n/da.js
7372
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bg.json
7373
%%WWWDIR%%/apps/files_trashbin/l10n/da.json
7373
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bg_BG.js
7374
%%WWWDIR%%/apps/files_trashbin/l10n/de.js
7374
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bg_BG.json
7375
%%WWWDIR%%/apps/files_trashbin/l10n/de.json
7375
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bn_BD.js
7376
%%WWWDIR%%/apps/files_trashbin/l10n/de_AT.js
7376
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bn_BD.json
7377
%%WWWDIR%%/apps/files_trashbin/l10n/de_AT.json
7377
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bn_IN.js
7378
%%WWWDIR%%/apps/files_trashbin/l10n/de_DE.js
7378
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bn_IN.json
7379
%%WWWDIR%%/apps/files_trashbin/l10n/de_DE.json
7379
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bs.js
7380
%%WWWDIR%%/apps/files_trashbin/l10n/el.js
7380
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bs.json
7381
%%WWWDIR%%/apps/files_trashbin/l10n/el.json
7381
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ca.js
7382
%%WWWDIR%%/apps/files_trashbin/l10n/en_GB.js
7382
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ca.json
7383
%%WWWDIR%%/apps/files_trashbin/l10n/en_GB.json
7383
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/cs.js
7384
%%WWWDIR%%/apps/files_trashbin/l10n/eo.js
7384
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/cs.json
7385
%%WWWDIR%%/apps/files_trashbin/l10n/eo.json
7385
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/cs_CZ.js
7386
%%WWWDIR%%/apps/files_trashbin/l10n/es.js
7386
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/cs_CZ.json
7387
%%WWWDIR%%/apps/files_trashbin/l10n/es.json
7387
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/cy_GB.js
7388
%%WWWDIR%%/apps/files_trashbin/l10n/es_419.js
7388
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/cy_GB.json
7389
%%WWWDIR%%/apps/files_trashbin/l10n/es_419.json
7389
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/da.js
7390
%%WWWDIR%%/apps/files_trashbin/l10n/es_AR.js
7390
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/da.json
7391
%%WWWDIR%%/apps/files_trashbin/l10n/es_AR.json
7391
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/de.js
7392
%%WWWDIR%%/apps/files_trashbin/l10n/es_CL.js
7392
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/de.json
7393
%%WWWDIR%%/apps/files_trashbin/l10n/es_CL.json
7393
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/de_AT.js
7394
%%WWWDIR%%/apps/files_trashbin/l10n/es_CO.js
7394
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/de_AT.json
7395
%%WWWDIR%%/apps/files_trashbin/l10n/es_CO.json
7395
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/de_DE.js
7396
%%WWWDIR%%/apps/files_trashbin/l10n/es_CR.js
7396
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/de_DE.json
7397
%%WWWDIR%%/apps/files_trashbin/l10n/es_CR.json
7397
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/el.js
7398
%%WWWDIR%%/apps/files_trashbin/l10n/es_DO.js
7398
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/el.json
7399
%%WWWDIR%%/apps/files_trashbin/l10n/es_DO.json
7399
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/en_GB.js
7400
%%WWWDIR%%/apps/files_trashbin/l10n/es_EC.js
7400
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/en_GB.json
7401
%%WWWDIR%%/apps/files_trashbin/l10n/es_EC.json
7401
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/eo.js
7402
%%WWWDIR%%/apps/files_trashbin/l10n/es_GT.js
7402
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/eo.json
7403
%%WWWDIR%%/apps/files_trashbin/l10n/es_GT.json
7403
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es.js
7404
%%WWWDIR%%/apps/files_trashbin/l10n/es_HN.js
7404
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es.json
7405
%%WWWDIR%%/apps/files_trashbin/l10n/es_HN.json
7405
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_419.js
7406
%%WWWDIR%%/apps/files_trashbin/l10n/es_MX.js
7406
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_419.json
7407
%%WWWDIR%%/apps/files_trashbin/l10n/es_MX.json
7407
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_AR.js
7408
%%WWWDIR%%/apps/files_trashbin/l10n/es_NI.js
7408
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_AR.json
7409
%%WWWDIR%%/apps/files_trashbin/l10n/es_NI.json
7409
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_CL.js
7410
%%WWWDIR%%/apps/files_trashbin/l10n/es_PA.js
7410
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_CL.json
7411
%%WWWDIR%%/apps/files_trashbin/l10n/es_PA.json
7411
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_CO.js
7412
%%WWWDIR%%/apps/files_trashbin/l10n/es_PE.js
7412
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_CO.json
7413
%%WWWDIR%%/apps/files_trashbin/l10n/es_PE.json
7413
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_CR.js
7414
%%WWWDIR%%/apps/files_trashbin/l10n/es_PR.js
7414
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_CR.json
7415
%%WWWDIR%%/apps/files_trashbin/l10n/es_PR.json
7415
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_DO.js
7416
%%WWWDIR%%/apps/files_trashbin/l10n/es_PY.js
7416
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_DO.json
7417
%%WWWDIR%%/apps/files_trashbin/l10n/es_PY.json
7417
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_EC.js
7418
%%WWWDIR%%/apps/files_trashbin/l10n/es_SV.js
7418
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_EC.json
7419
%%WWWDIR%%/apps/files_trashbin/l10n/es_SV.json
7419
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_GT.js
7420
%%WWWDIR%%/apps/files_trashbin/l10n/es_UY.js
7420
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_GT.json
7421
%%WWWDIR%%/apps/files_trashbin/l10n/es_UY.json
7421
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_HN.js
7422
%%WWWDIR%%/apps/files_trashbin/l10n/et_EE.js
7422
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_HN.json
7423
%%WWWDIR%%/apps/files_trashbin/l10n/et_EE.json
7423
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_MX.js
7424
%%WWWDIR%%/apps/files_trashbin/l10n/eu.js
7424
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_MX.json
7425
%%WWWDIR%%/apps/files_trashbin/l10n/eu.json
7425
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_NI.js
7426
%%WWWDIR%%/apps/files_trashbin/l10n/fa.js
7426
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_NI.json
7427
%%WWWDIR%%/apps/files_trashbin/l10n/fa.json
7427
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PA.js
7428
%%WWWDIR%%/apps/files_trashbin/l10n/fi.js
7428
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PA.json
7429
%%WWWDIR%%/apps/files_trashbin/l10n/fi.json
7429
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PE.js
7430
%%WWWDIR%%/apps/files_trashbin/l10n/fi_FI.js
7430
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PE.json
7431
%%WWWDIR%%/apps/files_trashbin/l10n/fi_FI.json
7431
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PR.js
7432
%%WWWDIR%%/apps/files_trashbin/l10n/fil.js
7432
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PR.json
7433
%%WWWDIR%%/apps/files_trashbin/l10n/fil.json
7433
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PY.js
7434
%%WWWDIR%%/apps/files_trashbin/l10n/fr.js
7434
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PY.json
7435
%%WWWDIR%%/apps/files_trashbin/l10n/fr.json
7435
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_SV.js
7436
%%WWWDIR%%/apps/files_trashbin/l10n/gl.js
7436
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_SV.json
7437
%%WWWDIR%%/apps/files_trashbin/l10n/gl.json
7437
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_UY.js
7438
%%WWWDIR%%/apps/files_trashbin/l10n/he.js
7438
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_UY.json
7439
%%WWWDIR%%/apps/files_trashbin/l10n/he.json
7439
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/et_EE.js
7440
%%WWWDIR%%/apps/files_trashbin/l10n/hi.js
7440
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/et_EE.json
7441
%%WWWDIR%%/apps/files_trashbin/l10n/hi.json
7441
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/eu.js
7442
%%WWWDIR%%/apps/files_trashbin/l10n/hr.js
7442
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/eu.json
7443
%%WWWDIR%%/apps/files_trashbin/l10n/hr.json
7443
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fa.js
7444
%%WWWDIR%%/apps/files_trashbin/l10n/hu.js
7444
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fa.json
7445
%%WWWDIR%%/apps/files_trashbin/l10n/hu.json
7445
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fi.js
7446
%%WWWDIR%%/apps/files_trashbin/l10n/hu_HU.js
7446
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fi.json
7447
%%WWWDIR%%/apps/files_trashbin/l10n/hu_HU.json
7447
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fi_FI.js
7448
%%WWWDIR%%/apps/files_trashbin/l10n/hy.js
7448
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fi_FI.json
7449
%%WWWDIR%%/apps/files_trashbin/l10n/hy.json
7449
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fil.js
7450
%%WWWDIR%%/apps/files_trashbin/l10n/ia.js
7450
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fil.json
7451
%%WWWDIR%%/apps/files_trashbin/l10n/ia.json
7451
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fr.js
7452
%%WWWDIR%%/apps/files_trashbin/l10n/id.js
7452
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fr.json
7453
%%WWWDIR%%/apps/files_trashbin/l10n/id.json
7453
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/gl.js
7454
%%WWWDIR%%/apps/files_trashbin/l10n/is.js
7454
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/gl.json
7455
%%WWWDIR%%/apps/files_trashbin/l10n/is.json
7455
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/he.js
7456
%%WWWDIR%%/apps/files_trashbin/l10n/it.js
7456
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/he.json
7457
%%WWWDIR%%/apps/files_trashbin/l10n/it.json
7457
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hi.js
7458
%%WWWDIR%%/apps/files_trashbin/l10n/ja.js
7458
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hi.json
7459
%%WWWDIR%%/apps/files_trashbin/l10n/ja.json
7459
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hr.js
7460
%%WWWDIR%%/apps/files_trashbin/l10n/ka_GE.js
7460
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hr.json
7461
%%WWWDIR%%/apps/files_trashbin/l10n/ka_GE.json
7461
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hu.js
7462
%%WWWDIR%%/apps/files_trashbin/l10n/km.js
7462
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hu.json
7463
%%WWWDIR%%/apps/files_trashbin/l10n/km.json
7463
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hu_HU.js
7464
%%WWWDIR%%/apps/files_trashbin/l10n/kn.js
7464
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hu_HU.json
7465
%%WWWDIR%%/apps/files_trashbin/l10n/kn.json
7465
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hy.js
7466
%%WWWDIR%%/apps/files_trashbin/l10n/ko.js
7466
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hy.json
7467
%%WWWDIR%%/apps/files_trashbin/l10n/ko.json
7467
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ia.js
7468
%%WWWDIR%%/apps/files_trashbin/l10n/ku_IQ.js
7468
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ia.json
7469
%%WWWDIR%%/apps/files_trashbin/l10n/ku_IQ.json
7469
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/id.js
7470
%%WWWDIR%%/apps/files_trashbin/l10n/lb.js
7470
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/id.json
7471
%%WWWDIR%%/apps/files_trashbin/l10n/lb.json
7471
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/is.js
7472
%%WWWDIR%%/apps/files_trashbin/l10n/lt_LT.js
7472
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/is.json
7473
%%WWWDIR%%/apps/files_trashbin/l10n/lt_LT.json
7473
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/it.js
7474
%%WWWDIR%%/apps/files_trashbin/l10n/lv.js
7474
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/it.json
7475
%%WWWDIR%%/apps/files_trashbin/l10n/lv.json
7475
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ja.js
7476
%%WWWDIR%%/apps/files_trashbin/l10n/mk.js
7476
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ja.json
7477
%%WWWDIR%%/apps/files_trashbin/l10n/mk.json
7477
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ka_GE.js
7478
%%WWWDIR%%/apps/files_trashbin/l10n/ms_MY.js
7478
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ka_GE.json
7479
%%WWWDIR%%/apps/files_trashbin/l10n/ms_MY.json
7479
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/km.js
7480
%%WWWDIR%%/apps/files_trashbin/l10n/nb.js
7480
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/km.json
7481
%%WWWDIR%%/apps/files_trashbin/l10n/nb.json
7481
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/kn.js
7482
%%WWWDIR%%/apps/files_trashbin/l10n/nb_NO.js
7482
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/kn.json
7483
%%WWWDIR%%/apps/files_trashbin/l10n/nb_NO.json
7483
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ko.js
7484
%%WWWDIR%%/apps/files_trashbin/l10n/nds.js
7484
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ko.json
7485
%%WWWDIR%%/apps/files_trashbin/l10n/nds.json
7485
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ku_IQ.js
7486
%%WWWDIR%%/apps/files_trashbin/l10n/nl.js
7486
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ku_IQ.json
7487
%%WWWDIR%%/apps/files_trashbin/l10n/nl.json
7487
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/lb.js
7488
%%WWWDIR%%/apps/files_trashbin/l10n/nn_NO.js
7488
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/lb.json
7489
%%WWWDIR%%/apps/files_trashbin/l10n/nn_NO.json
7489
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/lt_LT.js
7490
%%WWWDIR%%/apps/files_trashbin/l10n/oc.js
7490
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/lt_LT.json
7491
%%WWWDIR%%/apps/files_trashbin/l10n/oc.json
7491
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/lv.js
7492
%%WWWDIR%%/apps/files_trashbin/l10n/pa.js
7492
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/lv.json
7493
%%WWWDIR%%/apps/files_trashbin/l10n/pa.json
7493
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/mk.js
7494
%%WWWDIR%%/apps/files_trashbin/l10n/pl.js
7494
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/mk.json
7495
%%WWWDIR%%/apps/files_trashbin/l10n/pl.json
7495
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/mn.js
7496
%%WWWDIR%%/apps/files_trashbin/l10n/pt_BR.js
7496
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/mn.json
7497
%%WWWDIR%%/apps/files_trashbin/l10n/pt_BR.json
7497
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ms_MY.js
7498
%%WWWDIR%%/apps/files_trashbin/l10n/pt_PT.js
7498
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ms_MY.json
7499
%%WWWDIR%%/apps/files_trashbin/l10n/pt_PT.json
7499
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nb.js
7500
%%WWWDIR%%/apps/files_trashbin/l10n/ro.js
7500
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nb.json
7501
%%WWWDIR%%/apps/files_trashbin/l10n/ro.json
7501
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nb_NO.js
7502
%%WWWDIR%%/apps/files_trashbin/l10n/ru.js
7502
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nb_NO.json
7503
%%WWWDIR%%/apps/files_trashbin/l10n/ru.json
7503
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nds.js
7504
%%WWWDIR%%/apps/files_trashbin/l10n/si_LK.js
7504
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nds.json
7505
%%WWWDIR%%/apps/files_trashbin/l10n/si_LK.json
7505
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nl.js
7506
%%WWWDIR%%/apps/files_trashbin/l10n/sk.js
7506
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nl.json
7507
%%WWWDIR%%/apps/files_trashbin/l10n/sk.json
7507
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nn_NO.js
7508
%%WWWDIR%%/apps/files_trashbin/l10n/sk_SK.js
7508
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nn_NO.json
7509
%%WWWDIR%%/apps/files_trashbin/l10n/sk_SK.json
7509
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/oc.js
7510
%%WWWDIR%%/apps/files_trashbin/l10n/sl.js
7510
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/oc.json
7511
%%WWWDIR%%/apps/files_trashbin/l10n/sl.json
7511
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pa.js
7512
%%WWWDIR%%/apps/files_trashbin/l10n/sq.js
7512
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pa.json
7513
%%WWWDIR%%/apps/files_trashbin/l10n/sq.json
7513
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pl.js
7514
%%WWWDIR%%/apps/files_trashbin/l10n/sr.js
7514
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pl.json
7515
%%WWWDIR%%/apps/files_trashbin/l10n/sr.json
7515
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pt_BR.js
7516
%%WWWDIR%%/apps/files_trashbin/l10n/sr@latin.js
7516
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pt_BR.json
7517
%%WWWDIR%%/apps/files_trashbin/l10n/sr@latin.json
7517
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pt_PT.js
7518
%%WWWDIR%%/apps/files_trashbin/l10n/sv.js
7518
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pt_PT.json
7519
%%WWWDIR%%/apps/files_trashbin/l10n/sv.json
7519
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ro.js
7520
%%WWWDIR%%/apps/files_trashbin/l10n/ta_LK.js
7520
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ro.json
7521
%%WWWDIR%%/apps/files_trashbin/l10n/ta_LK.json
7521
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ru.js
7522
%%WWWDIR%%/apps/files_trashbin/l10n/te.js
7522
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ru.json
7523
%%WWWDIR%%/apps/files_trashbin/l10n/te.json
7523
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/si_LK.js
7524
%%WWWDIR%%/apps/files_trashbin/l10n/th.js
7524
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/si_LK.json
7525
%%WWWDIR%%/apps/files_trashbin/l10n/th.json
7525
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sk.js
7526
%%WWWDIR%%/apps/files_trashbin/l10n/th_TH.js
7526
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sk.json
7527
%%WWWDIR%%/apps/files_trashbin/l10n/th_TH.json
7527
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sk_SK.js
7528
%%WWWDIR%%/apps/files_trashbin/l10n/tr.js
7528
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sk_SK.json
7529
%%WWWDIR%%/apps/files_trashbin/l10n/tr.json
7529
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sl.js
7530
%%WWWDIR%%/apps/files_trashbin/l10n/ug.js
7530
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sl.json
7531
%%WWWDIR%%/apps/files_trashbin/l10n/ug.json
7531
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sq.js
7532
%%WWWDIR%%/apps/files_trashbin/l10n/uk.js
7532
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sq.json
7533
%%WWWDIR%%/apps/files_trashbin/l10n/uk.json
7533
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sr.js
7534
%%WWWDIR%%/apps/files_trashbin/l10n/ur_PK.js
7534
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sr.json
7535
%%WWWDIR%%/apps/files_trashbin/l10n/ur_PK.json
7535
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sr@latin.js
7536
%%WWWDIR%%/apps/files_trashbin/l10n/vi.js
7536
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sr@latin.json
7537
%%WWWDIR%%/apps/files_trashbin/l10n/vi.json
7537
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sv.js
7538
%%WWWDIR%%/apps/files_trashbin/l10n/zh_CN.js
7538
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sv.json
7539
%%WWWDIR%%/apps/files_trashbin/l10n/zh_CN.json
7539
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ta_LK.js
7540
%%WWWDIR%%/apps/files_trashbin/l10n/zh_HK.js
7540
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ta_LK.json
7541
%%WWWDIR%%/apps/files_trashbin/l10n/zh_HK.json
7541
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/te.js
7542
%%WWWDIR%%/apps/files_trashbin/l10n/zh_TW.js
7542
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/te.json
7543
%%WWWDIR%%/apps/files_trashbin/l10n/zh_TW.json
7543
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/th.js
7544
%%WWWDIR%%/apps/files_trashbin/lib/AppInfo/Application.php
7544
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/th.json
7545
%%WWWDIR%%/apps/files_trashbin/lib/BackgroundJob/ExpireTrash.php
7545
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/th_TH.js
7546
%%WWWDIR%%/apps/files_trashbin/lib/Capabilities.php
7546
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/th_TH.json
7547
%%WWWDIR%%/apps/files_trashbin/lib/Command/CleanUp.php
7547
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/tr.js
7548
%%WWWDIR%%/apps/files_trashbin/lib/Command/Expire.php
7548
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/tr.json
7549
%%WWWDIR%%/apps/files_trashbin/lib/Command/ExpireTrash.php
7549
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ug.js
7550
%%WWWDIR%%/apps/files_trashbin/lib/Controller/PreviewController.php
7550
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ug.json
7551
%%WWWDIR%%/apps/files_trashbin/lib/Events/MoveToTrashEvent.php
7551
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/uk.js
7552
%%WWWDIR%%/apps/files_trashbin/lib/Exceptions/CopyRecursiveException.php
7552
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/uk.json
7553
%%WWWDIR%%/apps/files_trashbin/lib/Expiration.php
7553
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ur_PK.js
7554
%%WWWDIR%%/apps/files_trashbin/lib/Helper.php
7554
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ur_PK.json
7555
%%WWWDIR%%/apps/files_trashbin/lib/Hooks.php
7555
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/vi.js
7556
%%WWWDIR%%/apps/files_trashbin/lib/Storage.php
7556
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/vi.json
7557
%%WWWDIR%%/apps/files_trashbin/lib/Trashbin.php
7557
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/zh_CN.js
7558
%%WWWDIR%%/apps/files_trashbin/list.php
7558
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/zh_CN.json
7559
%%WWWDIR%%/apps/files_trashbin/templates/index.php
7559
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/zh_HK.js
7560
%%WWWDIR%%/apps/files_versions/ajax/getVersions.php
7560
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/zh_HK.json
7561
%%WWWDIR%%/apps/files_versions/ajax/rollbackVersion.php
7561
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/zh_TW.js
7562
%%WWWDIR%%/apps/files_versions/appinfo/app.php
7562
%%WWWDIR%%/apps-pkg/files_trashbin/l10n/zh_TW.json
7563
%%WWWDIR%%/apps/files_versions/appinfo/info.xml
7563
%%WWWDIR%%/apps-pkg/files_trashbin/lib/AppInfo/Application.php
7564
%%WWWDIR%%/apps/files_versions/appinfo/routes.php
7564
%%WWWDIR%%/apps-pkg/files_trashbin/lib/BackgroundJob/ExpireTrash.php
7565
%%WWWDIR%%/apps/files_versions/appinfo/signature.json
7565
%%WWWDIR%%/apps-pkg/files_trashbin/lib/Capabilities.php
7566
%%WWWDIR%%/apps/files_versions/composer/autoload.php
7566
%%WWWDIR%%/apps-pkg/files_trashbin/lib/Command/CleanUp.php
7567
%%WWWDIR%%/apps/files_versions/composer/composer.json
7567
%%WWWDIR%%/apps-pkg/files_trashbin/lib/Command/Expire.php
7568
%%WWWDIR%%/apps/files_versions/composer/composer/ClassLoader.php
7568
%%WWWDIR%%/apps-pkg/files_trashbin/lib/Command/ExpireTrash.php
7569
%%WWWDIR%%/apps/files_versions/composer/composer/LICENSE
7569
%%WWWDIR%%/apps-pkg/files_trashbin/lib/Controller/PreviewController.php
7570
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_classmap.php
7570
%%WWWDIR%%/apps-pkg/files_trashbin/lib/Events/MoveToTrashEvent.php
7571
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_namespaces.php
7571
%%WWWDIR%%/apps-pkg/files_trashbin/lib/Exceptions/CopyRecursiveException.php
7572
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_psr4.php
7572
%%WWWDIR%%/apps-pkg/files_trashbin/lib/Expiration.php
7573
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_real.php
7573
%%WWWDIR%%/apps-pkg/files_trashbin/lib/Helper.php
7574
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_static.php
7574
%%WWWDIR%%/apps-pkg/files_trashbin/lib/Hooks.php
7575
%%WWWDIR%%/apps/files_versions/css/versions.css
7575
%%WWWDIR%%/apps-pkg/files_trashbin/lib/Storage.php
7576
%%WWWDIR%%/apps/files_versions/download.php
7576
%%WWWDIR%%/apps-pkg/files_trashbin/lib/Trashbin.php
7577
%%WWWDIR%%/apps/files_versions/img/app.svg
7577
%%WWWDIR%%/apps-pkg/files_trashbin/list.php
7578
%%WWWDIR%%/apps/files_versions/js/filesplugin.js
7578
%%WWWDIR%%/apps-pkg/files_trashbin/templates/index.php
7579
%%WWWDIR%%/apps/files_versions/js/merged.json
7579
%%WWWDIR%%/apps-pkg/files_versions/ajax/getVersions.php
7580
%%WWWDIR%%/apps/files_versions/js/versioncollection.js
7580
%%WWWDIR%%/apps-pkg/files_versions/ajax/rollbackVersion.php
7581
%%WWWDIR%%/apps/files_versions/js/versionmodel.js
7581
%%WWWDIR%%/apps-pkg/files_versions/appinfo/app.php
7582
%%WWWDIR%%/apps/files_versions/js/versionstabview.js
7582
%%WWWDIR%%/apps-pkg/files_versions/appinfo/info.xml
7583
%%WWWDIR%%/apps/files_versions/l10n/.gitkeep
7583
%%WWWDIR%%/apps-pkg/files_versions/appinfo/routes.php
7584
%%WWWDIR%%/apps/files_versions/l10n/af.js
7584
%%WWWDIR%%/apps-pkg/files_versions/appinfo/signature.json
7585
%%WWWDIR%%/apps/files_versions/l10n/af.json
7585
%%WWWDIR%%/apps-pkg/files_versions/composer/autoload.php
7586
%%WWWDIR%%/apps/files_versions/l10n/ar.js
7586
%%WWWDIR%%/apps-pkg/files_versions/composer/composer.json
7587
%%WWWDIR%%/apps/files_versions/l10n/ar.json
7587
%%WWWDIR%%/apps-pkg/files_versions/composer/composer/ClassLoader.php
7588
%%WWWDIR%%/apps/files_versions/l10n/ast.js
7588
%%WWWDIR%%/apps-pkg/files_versions/composer/composer/LICENSE
7589
%%WWWDIR%%/apps/files_versions/l10n/ast.json
7589
%%WWWDIR%%/apps-pkg/files_versions/composer/composer/autoload_classmap.php
7590
%%WWWDIR%%/apps/files_versions/l10n/az.js
7590
%%WWWDIR%%/apps-pkg/files_versions/composer/composer/autoload_namespaces.php
7591
%%WWWDIR%%/apps/files_versions/l10n/az.json
7591
%%WWWDIR%%/apps-pkg/files_versions/composer/composer/autoload_psr4.php
7592
%%WWWDIR%%/apps/files_versions/l10n/bg.js
7592
%%WWWDIR%%/apps-pkg/files_versions/composer/composer/autoload_real.php
7593
%%WWWDIR%%/apps/files_versions/l10n/bg.json
7593
%%WWWDIR%%/apps-pkg/files_versions/composer/composer/autoload_static.php
7594
%%WWWDIR%%/apps/files_versions/l10n/bg_BG.js
7594
%%WWWDIR%%/apps-pkg/files_versions/css/versions.css
7595
%%WWWDIR%%/apps/files_versions/l10n/bg_BG.json
7595
%%WWWDIR%%/apps-pkg/files_versions/download.php
7596
%%WWWDIR%%/apps/files_versions/l10n/bn_BD.js
7596
%%WWWDIR%%/apps-pkg/files_versions/img/app.svg
7597
%%WWWDIR%%/apps/files_versions/l10n/bn_BD.json
7597
%%WWWDIR%%/apps-pkg/files_versions/js/filesplugin.js
7598
%%WWWDIR%%/apps/files_versions/l10n/bn_IN.js
7598
%%WWWDIR%%/apps-pkg/files_versions/js/merged.json
7599
%%WWWDIR%%/apps/files_versions/l10n/bn_IN.json
7599
%%WWWDIR%%/apps-pkg/files_versions/js/versioncollection.js
7600
%%WWWDIR%%/apps/files_versions/l10n/bs.js
7600
%%WWWDIR%%/apps-pkg/files_versions/js/versionmodel.js
7601
%%WWWDIR%%/apps/files_versions/l10n/bs.json
7601
%%WWWDIR%%/apps-pkg/files_versions/js/versionstabview.js
7602
%%WWWDIR%%/apps/files_versions/l10n/ca.js
7602
%%WWWDIR%%/apps-pkg/files_versions/l10n/.gitkeep
7603
%%WWWDIR%%/apps/files_versions/l10n/ca.json
7603
%%WWWDIR%%/apps-pkg/files_versions/l10n/af.js
7604
%%WWWDIR%%/apps/files_versions/l10n/cs.js
7604
%%WWWDIR%%/apps-pkg/files_versions/l10n/af.json
7605
%%WWWDIR%%/apps/files_versions/l10n/cs.json
7605
%%WWWDIR%%/apps-pkg/files_versions/l10n/ar.js
7606
%%WWWDIR%%/apps/files_versions/l10n/cs_CZ.js
7606
%%WWWDIR%%/apps-pkg/files_versions/l10n/ar.json
7607
%%WWWDIR%%/apps/files_versions/l10n/cs_CZ.json
7607
%%WWWDIR%%/apps-pkg/files_versions/l10n/ast.js
7608
%%WWWDIR%%/apps/files_versions/l10n/cy_GB.js
7608
%%WWWDIR%%/apps-pkg/files_versions/l10n/ast.json
7609
%%WWWDIR%%/apps/files_versions/l10n/cy_GB.json
7609
%%WWWDIR%%/apps-pkg/files_versions/l10n/az.js
7610
%%WWWDIR%%/apps/files_versions/l10n/da.js
7610
%%WWWDIR%%/apps-pkg/files_versions/l10n/az.json
7611
%%WWWDIR%%/apps/files_versions/l10n/da.json
7611
%%WWWDIR%%/apps-pkg/files_versions/l10n/bg.js
7612
%%WWWDIR%%/apps/files_versions/l10n/de.js
7612
%%WWWDIR%%/apps-pkg/files_versions/l10n/bg.json
7613
%%WWWDIR%%/apps/files_versions/l10n/de.json
7613
%%WWWDIR%%/apps-pkg/files_versions/l10n/bg_BG.js
7614
%%WWWDIR%%/apps/files_versions/l10n/de_DE.js
7614
%%WWWDIR%%/apps-pkg/files_versions/l10n/bg_BG.json
7615
%%WWWDIR%%/apps/files_versions/l10n/de_DE.json
7615
%%WWWDIR%%/apps-pkg/files_versions/l10n/bn_BD.js
7616
%%WWWDIR%%/apps/files_versions/l10n/el.js
7616
%%WWWDIR%%/apps-pkg/files_versions/l10n/bn_BD.json
7617
%%WWWDIR%%/apps/files_versions/l10n/el.json
7617
%%WWWDIR%%/apps-pkg/files_versions/l10n/bn_IN.js
7618
%%WWWDIR%%/apps/files_versions/l10n/en_GB.js
7618
%%WWWDIR%%/apps-pkg/files_versions/l10n/bn_IN.json
7619
%%WWWDIR%%/apps/files_versions/l10n/en_GB.json
7619
%%WWWDIR%%/apps-pkg/files_versions/l10n/bs.js
7620
%%WWWDIR%%/apps/files_versions/l10n/eo.js
7620
%%WWWDIR%%/apps-pkg/files_versions/l10n/bs.json
7621
%%WWWDIR%%/apps/files_versions/l10n/eo.json
7621
%%WWWDIR%%/apps-pkg/files_versions/l10n/ca.js
7622
%%WWWDIR%%/apps/files_versions/l10n/es.js
7622
%%WWWDIR%%/apps-pkg/files_versions/l10n/ca.json
7623
%%WWWDIR%%/apps/files_versions/l10n/es.json
7623
%%WWWDIR%%/apps-pkg/files_versions/l10n/cs.js
7624
%%WWWDIR%%/apps/files_versions/l10n/es_419.js
7624
%%WWWDIR%%/apps-pkg/files_versions/l10n/cs.json
7625
%%WWWDIR%%/apps/files_versions/l10n/es_419.json
7625
%%WWWDIR%%/apps-pkg/files_versions/l10n/cs_CZ.js
7626
%%WWWDIR%%/apps/files_versions/l10n/es_AR.js
7626
%%WWWDIR%%/apps-pkg/files_versions/l10n/cs_CZ.json
7627
%%WWWDIR%%/apps/files_versions/l10n/es_AR.json
7627
%%WWWDIR%%/apps-pkg/files_versions/l10n/cy_GB.js
7628
%%WWWDIR%%/apps/files_versions/l10n/es_CL.js
7628
%%WWWDIR%%/apps-pkg/files_versions/l10n/cy_GB.json
7629
%%WWWDIR%%/apps/files_versions/l10n/es_CL.json
7629
%%WWWDIR%%/apps-pkg/files_versions/l10n/da.js
7630
%%WWWDIR%%/apps/files_versions/l10n/es_CO.js
7630
%%WWWDIR%%/apps-pkg/files_versions/l10n/da.json
7631
%%WWWDIR%%/apps/files_versions/l10n/es_CO.json
7631
%%WWWDIR%%/apps-pkg/files_versions/l10n/de.js
7632
%%WWWDIR%%/apps/files_versions/l10n/es_CR.js
7632
%%WWWDIR%%/apps-pkg/files_versions/l10n/de.json
7633
%%WWWDIR%%/apps/files_versions/l10n/es_CR.json
7633
%%WWWDIR%%/apps-pkg/files_versions/l10n/de_DE.js
7634
%%WWWDIR%%/apps/files_versions/l10n/es_DO.js
7634
%%WWWDIR%%/apps-pkg/files_versions/l10n/de_DE.json
7635
%%WWWDIR%%/apps/files_versions/l10n/es_DO.json
7635
%%WWWDIR%%/apps-pkg/files_versions/l10n/el.js
7636
%%WWWDIR%%/apps/files_versions/l10n/es_EC.js
7636
%%WWWDIR%%/apps-pkg/files_versions/l10n/el.json
7637
%%WWWDIR%%/apps/files_versions/l10n/es_EC.json
7637
%%WWWDIR%%/apps-pkg/files_versions/l10n/en_GB.js
7638
%%WWWDIR%%/apps/files_versions/l10n/es_GT.js
7638
%%WWWDIR%%/apps-pkg/files_versions/l10n/en_GB.json
7639
%%WWWDIR%%/apps/files_versions/l10n/es_GT.json
7639
%%WWWDIR%%/apps-pkg/files_versions/l10n/eo.js
7640
%%WWWDIR%%/apps/files_versions/l10n/es_HN.js
7640
%%WWWDIR%%/apps-pkg/files_versions/l10n/eo.json
7641
%%WWWDIR%%/apps/files_versions/l10n/es_HN.json
7641
%%WWWDIR%%/apps-pkg/files_versions/l10n/es.js
7642
%%WWWDIR%%/apps/files_versions/l10n/es_MX.js
7642
%%WWWDIR%%/apps-pkg/files_versions/l10n/es.json
7643
%%WWWDIR%%/apps/files_versions/l10n/es_MX.json
7643
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_419.js
7644
%%WWWDIR%%/apps/files_versions/l10n/es_NI.js
7644
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_419.json
7645
%%WWWDIR%%/apps/files_versions/l10n/es_NI.json
7645
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_AR.js
7646
%%WWWDIR%%/apps/files_versions/l10n/es_PA.js
7646
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_AR.json
7647
%%WWWDIR%%/apps/files_versions/l10n/es_PA.json
7647
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_CL.js
7648
%%WWWDIR%%/apps/files_versions/l10n/es_PE.js
7648
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_CL.json
7649
%%WWWDIR%%/apps/files_versions/l10n/es_PE.json
7649
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_CO.js
7650
%%WWWDIR%%/apps/files_versions/l10n/es_PR.js
7650
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_CO.json
7651
%%WWWDIR%%/apps/files_versions/l10n/es_PR.json
7651
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_CR.js
7652
%%WWWDIR%%/apps/files_versions/l10n/es_PY.js
7652
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_CR.json
7653
%%WWWDIR%%/apps/files_versions/l10n/es_PY.json
7653
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_DO.js
7654
%%WWWDIR%%/apps/files_versions/l10n/es_SV.js
7654
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_DO.json
7655
%%WWWDIR%%/apps/files_versions/l10n/es_SV.json
7655
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_EC.js
7656
%%WWWDIR%%/apps/files_versions/l10n/es_UY.js
7656
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_EC.json
7657
%%WWWDIR%%/apps/files_versions/l10n/es_UY.json
7657
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_GT.js
7658
%%WWWDIR%%/apps/files_versions/l10n/et_EE.js
7658
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_GT.json
7659
%%WWWDIR%%/apps/files_versions/l10n/et_EE.json
7659
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_HN.js
7660
%%WWWDIR%%/apps/files_versions/l10n/eu.js
7660
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_HN.json
7661
%%WWWDIR%%/apps/files_versions/l10n/eu.json
7661
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_MX.js
7662
%%WWWDIR%%/apps/files_versions/l10n/fa.js
7662
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_MX.json
7663
%%WWWDIR%%/apps/files_versions/l10n/fa.json
7663
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_NI.js
7664
%%WWWDIR%%/apps/files_versions/l10n/fi.js
7664
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_NI.json
7665
%%WWWDIR%%/apps/files_versions/l10n/fi.json
7665
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PA.js
7666
%%WWWDIR%%/apps/files_versions/l10n/fi_FI.js
7666
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PA.json
7667
%%WWWDIR%%/apps/files_versions/l10n/fi_FI.json
7667
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PE.js
7668
%%WWWDIR%%/apps/files_versions/l10n/fr.js
7668
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PE.json
7669
%%WWWDIR%%/apps/files_versions/l10n/fr.json
7669
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PR.js
7670
%%WWWDIR%%/apps/files_versions/l10n/gl.js
7670
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PR.json
7671
%%WWWDIR%%/apps/files_versions/l10n/gl.json
7671
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PY.js
7672
%%WWWDIR%%/apps/files_versions/l10n/he.js
7672
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PY.json
7673
%%WWWDIR%%/apps/files_versions/l10n/he.json
7673
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_SV.js
7674
%%WWWDIR%%/apps/files_versions/l10n/hr.js
7674
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_SV.json
7675
%%WWWDIR%%/apps/files_versions/l10n/hr.json
7675
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_UY.js
7676
%%WWWDIR%%/apps/files_versions/l10n/hu.js
7676
%%WWWDIR%%/apps-pkg/files_versions/l10n/es_UY.json
7677
%%WWWDIR%%/apps/files_versions/l10n/hu.json
7677
%%WWWDIR%%/apps-pkg/files_versions/l10n/et_EE.js
7678
%%WWWDIR%%/apps/files_versions/l10n/hu_HU.js
7678
%%WWWDIR%%/apps-pkg/files_versions/l10n/et_EE.json
7679
%%WWWDIR%%/apps/files_versions/l10n/hu_HU.json
7679
%%WWWDIR%%/apps-pkg/files_versions/l10n/eu.js
7680
%%WWWDIR%%/apps/files_versions/l10n/hy.js
7680
%%WWWDIR%%/apps-pkg/files_versions/l10n/eu.json
7681
%%WWWDIR%%/apps/files_versions/l10n/hy.json
7681
%%WWWDIR%%/apps-pkg/files_versions/l10n/fa.js
7682
%%WWWDIR%%/apps/files_versions/l10n/ia.js
7682
%%WWWDIR%%/apps-pkg/files_versions/l10n/fa.json
7683
%%WWWDIR%%/apps/files_versions/l10n/ia.json
7683
%%WWWDIR%%/apps-pkg/files_versions/l10n/fi.js
7684
%%WWWDIR%%/apps/files_versions/l10n/id.js
7684
%%WWWDIR%%/apps-pkg/files_versions/l10n/fi.json
7685
%%WWWDIR%%/apps/files_versions/l10n/id.json
7685
%%WWWDIR%%/apps-pkg/files_versions/l10n/fi_FI.js
7686
%%WWWDIR%%/apps/files_versions/l10n/is.js
7686
%%WWWDIR%%/apps-pkg/files_versions/l10n/fi_FI.json
7687
%%WWWDIR%%/apps/files_versions/l10n/is.json
7687
%%WWWDIR%%/apps-pkg/files_versions/l10n/fr.js
7688
%%WWWDIR%%/apps/files_versions/l10n/it.js
7688
%%WWWDIR%%/apps-pkg/files_versions/l10n/fr.json
7689
%%WWWDIR%%/apps/files_versions/l10n/it.json
7689
%%WWWDIR%%/apps-pkg/files_versions/l10n/gl.js
7690
%%WWWDIR%%/apps/files_versions/l10n/ja.js
7690
%%WWWDIR%%/apps-pkg/files_versions/l10n/gl.json
7691
%%WWWDIR%%/apps/files_versions/l10n/ja.json
7691
%%WWWDIR%%/apps-pkg/files_versions/l10n/he.js
7692
%%WWWDIR%%/apps/files_versions/l10n/ka_GE.js
7692
%%WWWDIR%%/apps-pkg/files_versions/l10n/he.json
7693
%%WWWDIR%%/apps/files_versions/l10n/ka_GE.json
7693
%%WWWDIR%%/apps-pkg/files_versions/l10n/hr.js
7694
%%WWWDIR%%/apps/files_versions/l10n/km.js
7694
%%WWWDIR%%/apps-pkg/files_versions/l10n/hr.json
7695
%%WWWDIR%%/apps/files_versions/l10n/km.json
7695
%%WWWDIR%%/apps-pkg/files_versions/l10n/hu.js
7696
%%WWWDIR%%/apps/files_versions/l10n/kn.js
7696
%%WWWDIR%%/apps-pkg/files_versions/l10n/hu.json
7697
%%WWWDIR%%/apps/files_versions/l10n/kn.json
7697
%%WWWDIR%%/apps-pkg/files_versions/l10n/hu_HU.js
7698
%%WWWDIR%%/apps/files_versions/l10n/ko.js
7698
%%WWWDIR%%/apps-pkg/files_versions/l10n/hu_HU.json
7699
%%WWWDIR%%/apps/files_versions/l10n/ko.json
7699
%%WWWDIR%%/apps-pkg/files_versions/l10n/hy.js
7700
%%WWWDIR%%/apps/files_versions/l10n/ku_IQ.js
7700
%%WWWDIR%%/apps-pkg/files_versions/l10n/hy.json
7701
%%WWWDIR%%/apps/files_versions/l10n/ku_IQ.json
7701
%%WWWDIR%%/apps-pkg/files_versions/l10n/ia.js
7702
%%WWWDIR%%/apps/files_versions/l10n/lb.js
7702
%%WWWDIR%%/apps-pkg/files_versions/l10n/ia.json
7703
%%WWWDIR%%/apps/files_versions/l10n/lb.json
7703
%%WWWDIR%%/apps-pkg/files_versions/l10n/id.js
7704
%%WWWDIR%%/apps/files_versions/l10n/lt_LT.js
7704
%%WWWDIR%%/apps-pkg/files_versions/l10n/id.json
7705
%%WWWDIR%%/apps/files_versions/l10n/lt_LT.json
7705
%%WWWDIR%%/apps-pkg/files_versions/l10n/is.js
7706
%%WWWDIR%%/apps/files_versions/l10n/lv.js
7706
%%WWWDIR%%/apps-pkg/files_versions/l10n/is.json
7707
%%WWWDIR%%/apps/files_versions/l10n/lv.json
7707
%%WWWDIR%%/apps-pkg/files_versions/l10n/it.js
7708
%%WWWDIR%%/apps/files_versions/l10n/mk.js
7708
%%WWWDIR%%/apps-pkg/files_versions/l10n/it.json
7709
%%WWWDIR%%/apps/files_versions/l10n/mk.json
7709
%%WWWDIR%%/apps-pkg/files_versions/l10n/ja.js
7710
%%WWWDIR%%/apps/files_versions/l10n/ms_MY.js
7710
%%WWWDIR%%/apps-pkg/files_versions/l10n/ja.json
7711
%%WWWDIR%%/apps/files_versions/l10n/ms_MY.json
7711
%%WWWDIR%%/apps-pkg/files_versions/l10n/ka_GE.js
7712
%%WWWDIR%%/apps/files_versions/l10n/nb.js
7712
%%WWWDIR%%/apps-pkg/files_versions/l10n/ka_GE.json
7713
%%WWWDIR%%/apps/files_versions/l10n/nb.json
7713
%%WWWDIR%%/apps-pkg/files_versions/l10n/km.js
7714
%%WWWDIR%%/apps/files_versions/l10n/nb_NO.js
7714
%%WWWDIR%%/apps-pkg/files_versions/l10n/km.json
7715
%%WWWDIR%%/apps/files_versions/l10n/nb_NO.json
7715
%%WWWDIR%%/apps-pkg/files_versions/l10n/kn.js
7716
%%WWWDIR%%/apps/files_versions/l10n/nl.js
7716
%%WWWDIR%%/apps-pkg/files_versions/l10n/kn.json
7717
%%WWWDIR%%/apps/files_versions/l10n/nl.json
7717
%%WWWDIR%%/apps-pkg/files_versions/l10n/ko.js
7718
%%WWWDIR%%/apps/files_versions/l10n/nn_NO.js
7718
%%WWWDIR%%/apps-pkg/files_versions/l10n/ko.json
7719
%%WWWDIR%%/apps/files_versions/l10n/nn_NO.json
7719
%%WWWDIR%%/apps-pkg/files_versions/l10n/ku_IQ.js
7720
%%WWWDIR%%/apps/files_versions/l10n/oc.js
7720
%%WWWDIR%%/apps-pkg/files_versions/l10n/ku_IQ.json
7721
%%WWWDIR%%/apps/files_versions/l10n/oc.json
7721
%%WWWDIR%%/apps-pkg/files_versions/l10n/lb.js
7722
%%WWWDIR%%/apps/files_versions/l10n/pl.js
7722
%%WWWDIR%%/apps-pkg/files_versions/l10n/lb.json
7723
%%WWWDIR%%/apps/files_versions/l10n/pl.json
7723
%%WWWDIR%%/apps-pkg/files_versions/l10n/lt_LT.js
7724
%%WWWDIR%%/apps/files_versions/l10n/pt_BR.js
7724
%%WWWDIR%%/apps-pkg/files_versions/l10n/lt_LT.json
7725
%%WWWDIR%%/apps/files_versions/l10n/pt_BR.json
7725
%%WWWDIR%%/apps-pkg/files_versions/l10n/lv.js
7726
%%WWWDIR%%/apps/files_versions/l10n/pt_PT.js
7726
%%WWWDIR%%/apps-pkg/files_versions/l10n/lv.json
7727
%%WWWDIR%%/apps/files_versions/l10n/pt_PT.json
7727
%%WWWDIR%%/apps-pkg/files_versions/l10n/mk.js
7728
%%WWWDIR%%/apps/files_versions/l10n/ro.js
7728
%%WWWDIR%%/apps-pkg/files_versions/l10n/mk.json
7729
%%WWWDIR%%/apps/files_versions/l10n/ro.json
7729
%%WWWDIR%%/apps-pkg/files_versions/l10n/ms_MY.js
7730
%%WWWDIR%%/apps/files_versions/l10n/ru.js
7730
%%WWWDIR%%/apps-pkg/files_versions/l10n/ms_MY.json
7731
%%WWWDIR%%/apps/files_versions/l10n/ru.json
7731
%%WWWDIR%%/apps-pkg/files_versions/l10n/nb.js
7732
%%WWWDIR%%/apps/files_versions/l10n/si_LK.js
7732
%%WWWDIR%%/apps-pkg/files_versions/l10n/nb.json
7733
%%WWWDIR%%/apps/files_versions/l10n/si_LK.json
7733
%%WWWDIR%%/apps-pkg/files_versions/l10n/nb_NO.js
7734
%%WWWDIR%%/apps/files_versions/l10n/sk.js
7734
%%WWWDIR%%/apps-pkg/files_versions/l10n/nb_NO.json
7735
%%WWWDIR%%/apps/files_versions/l10n/sk.json
7735
%%WWWDIR%%/apps-pkg/files_versions/l10n/nl.js
7736
%%WWWDIR%%/apps/files_versions/l10n/sk_SK.js
7736
%%WWWDIR%%/apps-pkg/files_versions/l10n/nl.json
7737
%%WWWDIR%%/apps/files_versions/l10n/sk_SK.json
7737
%%WWWDIR%%/apps-pkg/files_versions/l10n/nn_NO.js
7738
%%WWWDIR%%/apps/files_versions/l10n/sl.js
7738
%%WWWDIR%%/apps-pkg/files_versions/l10n/nn_NO.json
7739
%%WWWDIR%%/apps/files_versions/l10n/sl.json
7739
%%WWWDIR%%/apps-pkg/files_versions/l10n/oc.js
7740
%%WWWDIR%%/apps/files_versions/l10n/sq.js
7740
%%WWWDIR%%/apps-pkg/files_versions/l10n/oc.json
7741
%%WWWDIR%%/apps/files_versions/l10n/sq.json
7741
%%WWWDIR%%/apps-pkg/files_versions/l10n/pl.js
7742
%%WWWDIR%%/apps/files_versions/l10n/sr.js
7742
%%WWWDIR%%/apps-pkg/files_versions/l10n/pl.json
7743
%%WWWDIR%%/apps/files_versions/l10n/sr.json
7743
%%WWWDIR%%/apps-pkg/files_versions/l10n/pt_BR.js
7744
%%WWWDIR%%/apps/files_versions/l10n/sr@latin.js
7744
%%WWWDIR%%/apps-pkg/files_versions/l10n/pt_BR.json
7745
%%WWWDIR%%/apps/files_versions/l10n/sr@latin.json
7745
%%WWWDIR%%/apps-pkg/files_versions/l10n/pt_PT.js
7746
%%WWWDIR%%/apps/files_versions/l10n/sv.js
7746
%%WWWDIR%%/apps-pkg/files_versions/l10n/pt_PT.json
7747
%%WWWDIR%%/apps/files_versions/l10n/sv.json
7747
%%WWWDIR%%/apps-pkg/files_versions/l10n/ro.js
7748
%%WWWDIR%%/apps/files_versions/l10n/ta_LK.js
7748
%%WWWDIR%%/apps-pkg/files_versions/l10n/ro.json
7749
%%WWWDIR%%/apps/files_versions/l10n/ta_LK.json
7749
%%WWWDIR%%/apps-pkg/files_versions/l10n/ru.js
7750
%%WWWDIR%%/apps/files_versions/l10n/th.js
7750
%%WWWDIR%%/apps-pkg/files_versions/l10n/ru.json
7751
%%WWWDIR%%/apps/files_versions/l10n/th.json
7751
%%WWWDIR%%/apps-pkg/files_versions/l10n/si_LK.js
7752
%%WWWDIR%%/apps/files_versions/l10n/th_TH.js
7752
%%WWWDIR%%/apps-pkg/files_versions/l10n/si_LK.json
7753
%%WWWDIR%%/apps/files_versions/l10n/th_TH.json
7753
%%WWWDIR%%/apps-pkg/files_versions/l10n/sk.js
7754
%%WWWDIR%%/apps/files_versions/l10n/tr.js
7754
%%WWWDIR%%/apps-pkg/files_versions/l10n/sk.json
7755
%%WWWDIR%%/apps/files_versions/l10n/tr.json
7755
%%WWWDIR%%/apps-pkg/files_versions/l10n/sk_SK.js
7756
%%WWWDIR%%/apps/files_versions/l10n/ug.js
7756
%%WWWDIR%%/apps-pkg/files_versions/l10n/sk_SK.json
7757
%%WWWDIR%%/apps/files_versions/l10n/ug.json
7757
%%WWWDIR%%/apps-pkg/files_versions/l10n/sl.js
7758
%%WWWDIR%%/apps/files_versions/l10n/uk.js
7758
%%WWWDIR%%/apps-pkg/files_versions/l10n/sl.json
7759
%%WWWDIR%%/apps/files_versions/l10n/uk.json
7759
%%WWWDIR%%/apps-pkg/files_versions/l10n/sq.js
7760
%%WWWDIR%%/apps/files_versions/l10n/ur_PK.js
7760
%%WWWDIR%%/apps-pkg/files_versions/l10n/sq.json
7761
%%WWWDIR%%/apps/files_versions/l10n/ur_PK.json
7761
%%WWWDIR%%/apps-pkg/files_versions/l10n/sr.js
7762
%%WWWDIR%%/apps/files_versions/l10n/vi.js
7762
%%WWWDIR%%/apps-pkg/files_versions/l10n/sr.json
7763
%%WWWDIR%%/apps/files_versions/l10n/vi.json
7763
%%WWWDIR%%/apps-pkg/files_versions/l10n/sr@latin.js
7764
%%WWWDIR%%/apps/files_versions/l10n/zh_CN.js
7764
%%WWWDIR%%/apps-pkg/files_versions/l10n/sr@latin.json
7765
%%WWWDIR%%/apps/files_versions/l10n/zh_CN.json
7765
%%WWWDIR%%/apps-pkg/files_versions/l10n/sv.js
7766
%%WWWDIR%%/apps/files_versions/l10n/zh_HK.js
7766
%%WWWDIR%%/apps-pkg/files_versions/l10n/sv.json
7767
%%WWWDIR%%/apps/files_versions/l10n/zh_HK.json
7767
%%WWWDIR%%/apps-pkg/files_versions/l10n/ta_LK.js
7768
%%WWWDIR%%/apps/files_versions/l10n/zh_TW.js
7768
%%WWWDIR%%/apps-pkg/files_versions/l10n/ta_LK.json
7769
%%WWWDIR%%/apps/files_versions/l10n/zh_TW.json
7769
%%WWWDIR%%/apps-pkg/files_versions/l10n/th.js
7770
%%WWWDIR%%/apps/files_versions/lib/AppInfo/Application.php
7770
%%WWWDIR%%/apps-pkg/files_versions/l10n/th.json
7771
%%WWWDIR%%/apps/files_versions/lib/BackgroundJob/ExpireVersions.php
7771
%%WWWDIR%%/apps-pkg/files_versions/l10n/th_TH.js
7772
%%WWWDIR%%/apps/files_versions/lib/Capabilities.php
7772
%%WWWDIR%%/apps-pkg/files_versions/l10n/th_TH.json
7773
%%WWWDIR%%/apps/files_versions/lib/Command/CleanUp.php
7773
%%WWWDIR%%/apps-pkg/files_versions/l10n/tr.js
7774
%%WWWDIR%%/apps/files_versions/lib/Command/Expire.php
7774
%%WWWDIR%%/apps-pkg/files_versions/l10n/tr.json
7775
%%WWWDIR%%/apps/files_versions/lib/Command/ExpireVersions.php
7775
%%WWWDIR%%/apps-pkg/files_versions/l10n/ug.js
7776
%%WWWDIR%%/apps/files_versions/lib/Controller/PreviewController.php
7776
%%WWWDIR%%/apps-pkg/files_versions/l10n/ug.json
7777
%%WWWDIR%%/apps/files_versions/lib/Events/CreateVersionEvent.php
7777
%%WWWDIR%%/apps-pkg/files_versions/l10n/uk.js
7778
%%WWWDIR%%/apps/files_versions/lib/Expiration.php
7778
%%WWWDIR%%/apps-pkg/files_versions/l10n/uk.json
7779
%%WWWDIR%%/apps/files_versions/lib/Hooks.php
7779
%%WWWDIR%%/apps-pkg/files_versions/l10n/ur_PK.js
7780
%%WWWDIR%%/apps/files_versions/lib/Storage.php
7780
%%WWWDIR%%/apps-pkg/files_versions/l10n/ur_PK.json
7781
%%WWWDIR%%/apps/files_videoplayer/appinfo/app.php
7781
%%WWWDIR%%/apps-pkg/files_versions/l10n/vi.js
7782
%%WWWDIR%%/apps/files_videoplayer/appinfo/info.xml
7782
%%WWWDIR%%/apps-pkg/files_versions/l10n/vi.json
7783
%%WWWDIR%%/apps/files_videoplayer/appinfo/signature.json
7783
%%WWWDIR%%/apps-pkg/files_versions/l10n/zh_CN.js
7784
%%WWWDIR%%/apps/files_videoplayer/css/style.css
7784
%%WWWDIR%%/apps-pkg/files_versions/l10n/zh_CN.json
7785
%%WWWDIR%%/apps/files_videoplayer/img/app.svg
7785
%%WWWDIR%%/apps-pkg/files_versions/l10n/zh_HK.js
7786
%%WWWDIR%%/apps/files_videoplayer/img/poster.png
7786
%%WWWDIR%%/apps-pkg/files_versions/l10n/zh_HK.json
7787
%%WWWDIR%%/apps/files_videoplayer/img/vjs-volume-bar.png
7787
%%WWWDIR%%/apps-pkg/files_versions/l10n/zh_TW.js
7788
%%WWWDIR%%/apps/files_videoplayer/img/vjs-volume-level.png
7788
%%WWWDIR%%/apps-pkg/files_versions/l10n/zh_TW.json
7789
%%WWWDIR%%/apps/files_videoplayer/js/viewer.js
7789
%%WWWDIR%%/apps-pkg/files_versions/lib/AppInfo/Application.php
7790
%%WWWDIR%%/apps/files_videoplayer/screenshot.jpg
7790
%%WWWDIR%%/apps-pkg/files_versions/lib/BackgroundJob/ExpireVersions.php
7791
%%WWWDIR%%/apps/files_videoplayer/videojs/src/font/vjs.eot
7791
%%WWWDIR%%/apps-pkg/files_versions/lib/Capabilities.php
7792
%%WWWDIR%%/apps/files_videoplayer/videojs/src/font/vjs.svg
7792
%%WWWDIR%%/apps-pkg/files_versions/lib/Command/CleanUp.php
7793
%%WWWDIR%%/apps/files_videoplayer/videojs/src/font/vjs.ttf
7793
%%WWWDIR%%/apps-pkg/files_versions/lib/Command/Expire.php
7794
%%WWWDIR%%/apps/files_videoplayer/videojs/src/font/vjs.woff
7794
%%WWWDIR%%/apps-pkg/files_versions/lib/Command/ExpireVersions.php
7795
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/ar.js
7795
%%WWWDIR%%/apps-pkg/files_versions/lib/Controller/PreviewController.php
7796
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/bg.js
7796
%%WWWDIR%%/apps-pkg/files_versions/lib/Events/CreateVersionEvent.php
7797
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/ca.js
7797
%%WWWDIR%%/apps-pkg/files_versions/lib/Expiration.php
7798
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/cs.js
7798
%%WWWDIR%%/apps-pkg/files_versions/lib/Hooks.php
7799
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/de.js
7799
%%WWWDIR%%/apps-pkg/files_versions/lib/Storage.php
7800
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/es.js
7800
%%WWWDIR%%/apps-pkg/files_videoplayer/appinfo/app.php
7801
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/fr.js
7801
%%WWWDIR%%/apps-pkg/files_videoplayer/appinfo/info.xml
7802
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/hu.js
7802
%%WWWDIR%%/apps-pkg/files_videoplayer/appinfo/signature.json
7803
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/it.js
7803
%%WWWDIR%%/apps-pkg/files_videoplayer/css/style.css
7804
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/ja.js
7804
%%WWWDIR%%/apps-pkg/files_videoplayer/img/app.svg
7805
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/ko.js
7805
%%WWWDIR%%/apps-pkg/files_videoplayer/img/poster.png
7806
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/nl.js
7806
%%WWWDIR%%/apps-pkg/files_videoplayer/img/vjs-volume-bar.png
7807
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/pt-BR.js
7807
%%WWWDIR%%/apps-pkg/files_videoplayer/img/vjs-volume-level.png
7808
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/ru.js
7808
%%WWWDIR%%/apps-pkg/files_videoplayer/js/viewer.js
7809
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/tr.js
7809
%%WWWDIR%%/apps-pkg/files_videoplayer/screenshot.jpg
7810
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/uk.js
7810
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/font/vjs.eot
7811
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/vi.js
7811
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/font/vjs.svg
7812
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/zh-CN.js
7812
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/font/vjs.ttf
7813
%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/zh-TW.js
7813
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/font/vjs.woff
7814
%%WWWDIR%%/apps/files_videoplayer/videojs/src/video-js.css
7814
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/ar.js
7815
%%WWWDIR%%/apps/files_videoplayer/videojs/src/video.js
7815
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/bg.js
7816
%%WWWDIR%%/apps/firstrunwizard/.github/contributing.md
7816
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/ca.js
7817
%%WWWDIR%%/apps/firstrunwizard/.github/issue_template.md
7817
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/cs.js
7818
%%WWWDIR%%/apps/firstrunwizard/appinfo/app.php
7818
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/de.js
7819
%%WWWDIR%%/apps/firstrunwizard/appinfo/info.xml
7819
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/es.js
7820
%%WWWDIR%%/apps/firstrunwizard/appinfo/routes.php
7820
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/fr.js
7821
%%WWWDIR%%/apps/firstrunwizard/appinfo/signature.json
7821
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/hu.js
7822
%%WWWDIR%%/apps/firstrunwizard/css/colorbox.css
7822
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/it.js
7823
%%WWWDIR%%/apps/firstrunwizard/css/firstrunwizard.css
7823
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/ja.js
7824
%%WWWDIR%%/apps/firstrunwizard/img/app.svg
7824
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/ko.js
7825
%%WWWDIR%%/apps/firstrunwizard/js/activate.js
7825
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/nl.js
7826
%%WWWDIR%%/apps/firstrunwizard/js/firstrunwizard.js
7826
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/pt-BR.js
7827
%%WWWDIR%%/apps/firstrunwizard/js/jquery.colorbox.js
7827
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/ru.js
7828
%%WWWDIR%%/apps/firstrunwizard/l10n/.gitignore
7828
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/tr.js
7829
%%WWWDIR%%/apps/firstrunwizard/l10n/.tx/config
7829
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/uk.js
7830
%%WWWDIR%%/apps/firstrunwizard/l10n/ar.js
7830
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/vi.js
7831
%%WWWDIR%%/apps/firstrunwizard/l10n/ar.json
7831
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/zh-CN.js
7832
%%WWWDIR%%/apps/firstrunwizard/l10n/ast.js
7832
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/zh-TW.js
7833
%%WWWDIR%%/apps/firstrunwizard/l10n/ast.json
7833
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/video-js.css
7834
%%WWWDIR%%/apps/firstrunwizard/l10n/az.js
7834
%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/video.js
7835
%%WWWDIR%%/apps/firstrunwizard/l10n/az.json
7835
%%WWWDIR%%/apps-pkg/firstrunwizard/.github/contributing.md
7836
%%WWWDIR%%/apps/firstrunwizard/l10n/bg.js
7836
%%WWWDIR%%/apps-pkg/firstrunwizard/.github/issue_template.md
7837
%%WWWDIR%%/apps/firstrunwizard/l10n/bg.json
7837
%%WWWDIR%%/apps-pkg/firstrunwizard/appinfo/app.php
7838
%%WWWDIR%%/apps/firstrunwizard/l10n/bn_BD.js
7838
%%WWWDIR%%/apps-pkg/firstrunwizard/appinfo/info.xml
7839
%%WWWDIR%%/apps/firstrunwizard/l10n/bn_BD.json
7839
%%WWWDIR%%/apps-pkg/firstrunwizard/appinfo/routes.php
7840
%%WWWDIR%%/apps/firstrunwizard/l10n/bn_IN.php
7840
%%WWWDIR%%/apps-pkg/firstrunwizard/appinfo/signature.json
7841
%%WWWDIR%%/apps/firstrunwizard/l10n/ca.js
7841
%%WWWDIR%%/apps-pkg/firstrunwizard/css/colorbox.css
7842
%%WWWDIR%%/apps/firstrunwizard/l10n/ca.json
7842
%%WWWDIR%%/apps-pkg/firstrunwizard/css/firstrunwizard.css
7843
%%WWWDIR%%/apps/firstrunwizard/l10n/cs.js
7843
%%WWWDIR%%/apps-pkg/firstrunwizard/img/app.svg
7844
%%WWWDIR%%/apps/firstrunwizard/l10n/cs.json
7844
%%WWWDIR%%/apps-pkg/firstrunwizard/js/activate.js
7845
%%WWWDIR%%/apps/firstrunwizard/l10n/cy_GB.php
7845
%%WWWDIR%%/apps-pkg/firstrunwizard/js/firstrunwizard.js
7846
%%WWWDIR%%/apps/firstrunwizard/l10n/da.js
7846
%%WWWDIR%%/apps-pkg/firstrunwizard/js/jquery.colorbox.js
7847
%%WWWDIR%%/apps/firstrunwizard/l10n/da.json
7847
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/.gitignore
7848
%%WWWDIR%%/apps/firstrunwizard/l10n/de.js
7848
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/.tx/config
7849
%%WWWDIR%%/apps/firstrunwizard/l10n/de.json
7849
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ar.js
7850
%%WWWDIR%%/apps/firstrunwizard/l10n/de_CH.php
7850
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ar.json
7851
%%WWWDIR%%/apps/firstrunwizard/l10n/de_DE.js
7851
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ast.js
7852
%%WWWDIR%%/apps/firstrunwizard/l10n/de_DE.json
7852
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ast.json
7853
%%WWWDIR%%/apps/firstrunwizard/l10n/el.js
7853
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/az.js
7854
%%WWWDIR%%/apps/firstrunwizard/l10n/el.json
7854
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/az.json
7855
%%WWWDIR%%/apps/firstrunwizard/l10n/en_GB.js
7855
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/bg.js
7856
%%WWWDIR%%/apps/firstrunwizard/l10n/en_GB.json
7856
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/bg.json
7857
%%WWWDIR%%/apps/firstrunwizard/l10n/eo.js
7857
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/bn_BD.js
7858
%%WWWDIR%%/apps/firstrunwizard/l10n/eo.json
7858
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/bn_BD.json
7859
%%WWWDIR%%/apps/firstrunwizard/l10n/es.js
7859
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/bn_IN.php
7860
%%WWWDIR%%/apps/firstrunwizard/l10n/es.json
7860
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ca.js
7861
%%WWWDIR%%/apps/firstrunwizard/l10n/es_419.js
7861
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ca.json
7862
%%WWWDIR%%/apps/firstrunwizard/l10n/es_419.json
7862
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/cs.js
7863
%%WWWDIR%%/apps/firstrunwizard/l10n/es_AR.js
7863
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/cs.json
7864
%%WWWDIR%%/apps/firstrunwizard/l10n/es_AR.json
7864
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/cy_GB.php
7865
%%WWWDIR%%/apps/firstrunwizard/l10n/es_CL.js
7865
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/da.js
7866
%%WWWDIR%%/apps/firstrunwizard/l10n/es_CL.json
7866
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/da.json
7867
%%WWWDIR%%/apps/firstrunwizard/l10n/es_CO.js
7867
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/de.js
7868
%%WWWDIR%%/apps/firstrunwizard/l10n/es_CO.json
7868
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/de.json
7869
%%WWWDIR%%/apps/firstrunwizard/l10n/es_CR.js
7869
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/de_CH.php
7870
%%WWWDIR%%/apps/firstrunwizard/l10n/es_CR.json
7870
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/de_DE.js
7871
%%WWWDIR%%/apps/firstrunwizard/l10n/es_DO.js
7871
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/de_DE.json
7872
%%WWWDIR%%/apps/firstrunwizard/l10n/es_DO.json
7872
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/el.js
7873
%%WWWDIR%%/apps/firstrunwizard/l10n/es_EC.js
7873
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/el.json
7874
%%WWWDIR%%/apps/firstrunwizard/l10n/es_EC.json
7874
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/en_GB.js
7875
%%WWWDIR%%/apps/firstrunwizard/l10n/es_GT.js
7875
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/en_GB.json
7876
%%WWWDIR%%/apps/firstrunwizard/l10n/es_GT.json
7876
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/eo.js
7877
%%WWWDIR%%/apps/firstrunwizard/l10n/es_HN.js
7877
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/eo.json
7878
%%WWWDIR%%/apps/firstrunwizard/l10n/es_HN.json
7878
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es.js
7879
%%WWWDIR%%/apps/firstrunwizard/l10n/es_MX.js
7879
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es.json
7880
%%WWWDIR%%/apps/firstrunwizard/l10n/es_MX.json
7880
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_419.js
7881
%%WWWDIR%%/apps/firstrunwizard/l10n/es_NI.js
7881
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_419.json
7882
%%WWWDIR%%/apps/firstrunwizard/l10n/es_NI.json
7882
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_AR.js
7883
%%WWWDIR%%/apps/firstrunwizard/l10n/es_PA.js
7883
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_AR.json
7884
%%WWWDIR%%/apps/firstrunwizard/l10n/es_PA.json
7884
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_CL.js
7885
%%WWWDIR%%/apps/firstrunwizard/l10n/es_PE.js
7885
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_CL.json
7886
%%WWWDIR%%/apps/firstrunwizard/l10n/es_PE.json
7886
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_CO.js
7887
%%WWWDIR%%/apps/firstrunwizard/l10n/es_PR.js
7887
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_CO.json
7888
%%WWWDIR%%/apps/firstrunwizard/l10n/es_PR.json
7888
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_CR.js
7889
%%WWWDIR%%/apps/firstrunwizard/l10n/es_PY.js
7889
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_CR.json
7890
%%WWWDIR%%/apps/firstrunwizard/l10n/es_PY.json
7890
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_DO.js
7891
%%WWWDIR%%/apps/firstrunwizard/l10n/es_SV.js
7891
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_DO.json
7892
%%WWWDIR%%/apps/firstrunwizard/l10n/es_SV.json
7892
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_EC.js
7893
%%WWWDIR%%/apps/firstrunwizard/l10n/es_UY.js
7893
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_EC.json
7894
%%WWWDIR%%/apps/firstrunwizard/l10n/es_UY.json
7894
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_GT.js
7895
%%WWWDIR%%/apps/firstrunwizard/l10n/et_EE.js
7895
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_GT.json
7896
%%WWWDIR%%/apps/firstrunwizard/l10n/et_EE.json
7896
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_HN.js
7897
%%WWWDIR%%/apps/firstrunwizard/l10n/eu.js
7897
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_HN.json
7898
%%WWWDIR%%/apps/firstrunwizard/l10n/eu.json
7898
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_MX.js
7899
%%WWWDIR%%/apps/firstrunwizard/l10n/fa.js
7899
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_MX.json
7900
%%WWWDIR%%/apps/firstrunwizard/l10n/fa.json
7900
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_NI.js
7901
%%WWWDIR%%/apps/firstrunwizard/l10n/fi.js
7901
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_NI.json
7902
%%WWWDIR%%/apps/firstrunwizard/l10n/fi.json
7902
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PA.js
7903
%%WWWDIR%%/apps/firstrunwizard/l10n/fr.js
7903
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PA.json
7904
%%WWWDIR%%/apps/firstrunwizard/l10n/fr.json
7904
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PE.js
7905
%%WWWDIR%%/apps/firstrunwizard/l10n/he.js
7905
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PE.json
7906
%%WWWDIR%%/apps/firstrunwizard/l10n/he.json
7906
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PR.js
7907
%%WWWDIR%%/apps/firstrunwizard/l10n/hr.js
7907
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PR.json
7908
%%WWWDIR%%/apps/firstrunwizard/l10n/hr.json
7908
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PY.js
7909
%%WWWDIR%%/apps/firstrunwizard/l10n/hu.js
7909
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PY.json
7910
%%WWWDIR%%/apps/firstrunwizard/l10n/hu.json
7910
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_SV.js
7911
%%WWWDIR%%/apps/firstrunwizard/l10n/ia.js
7911
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_SV.json
7912
%%WWWDIR%%/apps/firstrunwizard/l10n/ia.json
7912
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_UY.js
7913
%%WWWDIR%%/apps/firstrunwizard/l10n/id.js
7913
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_UY.json
7914
%%WWWDIR%%/apps/firstrunwizard/l10n/id.json
7914
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/et_EE.js
7915
%%WWWDIR%%/apps/firstrunwizard/l10n/is.js
7915
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/et_EE.json
7916
%%WWWDIR%%/apps/firstrunwizard/l10n/is.json
7916
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/eu.js
7917
%%WWWDIR%%/apps/firstrunwizard/l10n/it.js
7917
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/eu.json
7918
%%WWWDIR%%/apps/firstrunwizard/l10n/it.json
7918
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/fa.js
7919
%%WWWDIR%%/apps/firstrunwizard/l10n/ja.js
7919
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/fa.json
7920
%%WWWDIR%%/apps/firstrunwizard/l10n/ja.json
7920
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/fi.js
7921
%%WWWDIR%%/apps/firstrunwizard/l10n/ka_GE.js
7921
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/fi.json
7922
%%WWWDIR%%/apps/firstrunwizard/l10n/ka_GE.json
7922
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/fr.js
7923
%%WWWDIR%%/apps/firstrunwizard/l10n/km.php
7923
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/fr.json
7924
%%WWWDIR%%/apps/firstrunwizard/l10n/ko.js
7924
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/he.js
7925
%%WWWDIR%%/apps/firstrunwizard/l10n/ko.json
7925
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/he.json
7926
%%WWWDIR%%/apps/firstrunwizard/l10n/ku_IQ.php
7926
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/hr.js
7927
%%WWWDIR%%/apps/firstrunwizard/l10n/lt_LT.js
7927
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/hr.json
7928
%%WWWDIR%%/apps/firstrunwizard/l10n/lt_LT.json
7928
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/hu.js
7929
%%WWWDIR%%/apps/firstrunwizard/l10n/lv.js
7929
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/hu.json
7930
%%WWWDIR%%/apps/firstrunwizard/l10n/lv.json
7930
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ia.js
7931
%%WWWDIR%%/apps/firstrunwizard/l10n/ms_MY.php
7931
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ia.json
7932
%%WWWDIR%%/apps/firstrunwizard/l10n/nb.js
7932
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/id.js
7933
%%WWWDIR%%/apps/firstrunwizard/l10n/nb.json
7933
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/id.json
7934
%%WWWDIR%%/apps/firstrunwizard/l10n/nl.js
7934
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/is.js
7935
%%WWWDIR%%/apps/firstrunwizard/l10n/nl.json
7935
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/is.json
7936
%%WWWDIR%%/apps/firstrunwizard/l10n/oc.js
7936
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/it.js
7937
%%WWWDIR%%/apps/firstrunwizard/l10n/oc.json
7937
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/it.json
7938
%%WWWDIR%%/apps/firstrunwizard/l10n/pl.js
7938
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ja.js
7939
%%WWWDIR%%/apps/firstrunwizard/l10n/pl.json
7939
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ja.json
7940
%%WWWDIR%%/apps/firstrunwizard/l10n/pt_BR.js
7940
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ka_GE.js
7941
%%WWWDIR%%/apps/firstrunwizard/l10n/pt_BR.json
7941
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ka_GE.json
7942
%%WWWDIR%%/apps/firstrunwizard/l10n/pt_PT.js
7942
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/km.php
7943
%%WWWDIR%%/apps/firstrunwizard/l10n/pt_PT.json
7943
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ko.js
7944
%%WWWDIR%%/apps/firstrunwizard/l10n/ro.js
7944
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ko.json
7945
%%WWWDIR%%/apps/firstrunwizard/l10n/ro.json
7945
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ku_IQ.php
7946
%%WWWDIR%%/apps/firstrunwizard/l10n/ru.js
7946
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/lt_LT.js
7947
%%WWWDIR%%/apps/firstrunwizard/l10n/ru.json
7947
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/lt_LT.json
7948
%%WWWDIR%%/apps/firstrunwizard/l10n/si_LK.php
7948
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/lv.js
7949
%%WWWDIR%%/apps/firstrunwizard/l10n/sk.js
7949
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/lv.json
7950
%%WWWDIR%%/apps/firstrunwizard/l10n/sk.json
7950
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ms_MY.php
7951
%%WWWDIR%%/apps/firstrunwizard/l10n/sl.js
7951
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/nb.js
7952
%%WWWDIR%%/apps/firstrunwizard/l10n/sl.json
7952
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/nb.json
7953
%%WWWDIR%%/apps/firstrunwizard/l10n/sq.js
7953
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/nl.js
7954
%%WWWDIR%%/apps/firstrunwizard/l10n/sq.json
7954
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/nl.json
7955
%%WWWDIR%%/apps/firstrunwizard/l10n/sr.js
7955
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/oc.js
7956
%%WWWDIR%%/apps/firstrunwizard/l10n/sr.json
7956
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/oc.json
7957
%%WWWDIR%%/apps/firstrunwizard/l10n/sv.js
7957
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/pl.js
7958
%%WWWDIR%%/apps/firstrunwizard/l10n/sv.json
7958
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/pl.json
7959
%%WWWDIR%%/apps/firstrunwizard/l10n/ta_LK.php
7959
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/pt_BR.js
7960
%%WWWDIR%%/apps/firstrunwizard/l10n/te.php
7960
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/pt_BR.json
7961
%%WWWDIR%%/apps/firstrunwizard/l10n/th.js
7961
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/pt_PT.js
7962
%%WWWDIR%%/apps/firstrunwizard/l10n/th.json
7962
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/pt_PT.json
7963
%%WWWDIR%%/apps/firstrunwizard/l10n/tr.js
7963
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ro.js
7964
%%WWWDIR%%/apps/firstrunwizard/l10n/tr.json
7964
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ro.json
7965
%%WWWDIR%%/apps/firstrunwizard/l10n/ug.php
7965
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ru.js
7966
%%WWWDIR%%/apps/firstrunwizard/l10n/uk.js
7966
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ru.json
7967
%%WWWDIR%%/apps/firstrunwizard/l10n/uk.json
7967
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/si_LK.php
7968
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_CN.js
7968
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sk.js
7969
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_CN.json
7969
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sk.json
7970
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_HK.php
7970
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sl.js
7971
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_TW.js
7971
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sl.json
7972
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_TW.json
7972
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sq.js
7973
%%WWWDIR%%/apps/firstrunwizard/lib/AppInfo/Application.php
7973
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sq.json
7974
%%WWWDIR%%/apps/firstrunwizard/lib/Controller/WizardController.php
7974
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sr.js
7975
%%WWWDIR%%/apps/firstrunwizard/lib/Notification/BackgroundJob.php
7975
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sr.json
7976
%%WWWDIR%%/apps/firstrunwizard/lib/Notification/Notifier.php
7976
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sv.js
7977
%%WWWDIR%%/apps/firstrunwizard/lib/Settings/Personal.php
7977
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sv.json
7978
%%WWWDIR%%/apps/firstrunwizard/templates/personal-settings.php
7978
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ta_LK.php
7979
%%WWWDIR%%/apps/firstrunwizard/templates/wizard.php
7979
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/te.php
7980
%%WWWDIR%%/apps/gallery/.github/issue_template.md
7980
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/th.js
7981
%%WWWDIR%%/apps/gallery/.github/pull_request_template.md
7981
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/th.json
7982
%%WWWDIR%%/apps/gallery/.gitmodules
7982
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/tr.js
7983
%%WWWDIR%%/apps/gallery/AUTHORS.md
7983
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/tr.json
7984
%%WWWDIR%%/apps/gallery/CHANGELOG.md
7984
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ug.php
7985
%%WWWDIR%%/apps/gallery/COPYING
7985
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/uk.js
7986
%%WWWDIR%%/apps/gallery/appinfo/app.php
7986
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/uk.json
7987
%%WWWDIR%%/apps/gallery/appinfo/info.xml
7987
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/zh_CN.js
7988
%%WWWDIR%%/apps/gallery/appinfo/routes.php
7988
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/zh_CN.json
7989
%%WWWDIR%%/apps/gallery/appinfo/signature.json
7989
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/zh_HK.php
7990
%%WWWDIR%%/apps/gallery/build/after_failure.sh
7990
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/zh_TW.js
7991
%%WWWDIR%%/apps/gallery/build/documentation/docpublisher.sh
7991
%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/zh_TW.json
7992
%%WWWDIR%%/apps/gallery/build/documentation/index.html
7992
%%WWWDIR%%/apps-pkg/firstrunwizard/lib/AppInfo/Application.php
7993
%%WWWDIR%%/apps/gallery/build/documentation/reports/code coverage/index.html
7993
%%WWWDIR%%/apps-pkg/firstrunwizard/lib/Controller/WizardController.php
7994
%%WWWDIR%%/apps/gallery/build/documentation/reports/index.html
7994
%%WWWDIR%%/apps-pkg/firstrunwizard/lib/Notification/BackgroundJob.php
7995
%%WWWDIR%%/apps/gallery/build/screenshots/Gallery.jpg
7995
%%WWWDIR%%/apps-pkg/firstrunwizard/lib/Notification/Notifier.php
7996
%%WWWDIR%%/apps/gallery/build/xdebug_install.sh
7996
%%WWWDIR%%/apps-pkg/firstrunwizard/lib/Settings/Personal.php
7997
%%WWWDIR%%/apps/gallery/codeception.yml
7997
%%WWWDIR%%/apps-pkg/firstrunwizard/templates/personal-settings.php
7998
%%WWWDIR%%/apps/gallery/composer.json
7998
%%WWWDIR%%/apps-pkg/firstrunwizard/templates/wizard.php
7999
%%WWWDIR%%/apps/gallery/composer.lock
7999
%%WWWDIR%%/apps-pkg/gallery/.github/issue_template.md
8000
%%WWWDIR%%/apps/gallery/css/authenticate.css
8000
%%WWWDIR%%/apps-pkg/gallery/.github/pull_request_template.md
8001
%%WWWDIR%%/apps/gallery/css/error.css
8001
%%WWWDIR%%/apps-pkg/gallery/.gitmodules
8002
%%WWWDIR%%/apps/gallery/css/gallerybutton.css
8002
%%WWWDIR%%/apps-pkg/gallery/AUTHORS.md
8003
%%WWWDIR%%/apps/gallery/css/github-markdown.css
8003
%%WWWDIR%%/apps-pkg/gallery/CHANGELOG.md
8004
%%WWWDIR%%/apps/gallery/css/mobile.css
8004
%%WWWDIR%%/apps-pkg/gallery/COPYING
8005
%%WWWDIR%%/apps/gallery/css/public.css
8005
%%WWWDIR%%/apps-pkg/gallery/appinfo/app.php
8006
%%WWWDIR%%/apps/gallery/css/share.css
8006
%%WWWDIR%%/apps-pkg/gallery/appinfo/info.xml
8007
%%WWWDIR%%/apps/gallery/css/slideshow.css
8007
%%WWWDIR%%/apps-pkg/gallery/appinfo/routes.php
8008
%%WWWDIR%%/apps/gallery/css/styles.css
8008
%%WWWDIR%%/apps-pkg/gallery/appinfo/signature.json
8009
%%WWWDIR%%/apps/gallery/css/upload.css
8009
%%WWWDIR%%/apps-pkg/gallery/build/after_failure.sh
8010
%%WWWDIR%%/apps/gallery/documentation/developers.md
8010
%%WWWDIR%%/apps-pkg/gallery/build/documentation/docpublisher.sh
8011
%%WWWDIR%%/apps/gallery/img/app.svg
8011
%%WWWDIR%%/apps-pkg/gallery/build/documentation/index.html
8012
%%WWWDIR%%/apps/gallery/img/dateasc.svg
8012
%%WWWDIR%%/apps-pkg/gallery/build/documentation/reports/code coverage/index.html
8013
%%WWWDIR%%/apps/gallery/img/datedes.svg
8013
%%WWWDIR%%/apps-pkg/gallery/build/documentation/reports/index.html
8014
%%WWWDIR%%/apps/gallery/img/gallery-dark.svg
8014
%%WWWDIR%%/apps-pkg/gallery/build/screenshots/Gallery.jpg
8015
%%WWWDIR%%/apps/gallery/img/nameasc.svg
8015
%%WWWDIR%%/apps-pkg/gallery/build/xdebug_install.sh
8016
%%WWWDIR%%/apps/gallery/img/namedes.svg
8016
%%WWWDIR%%/apps-pkg/gallery/codeception.yml
8017
%%WWWDIR%%/apps/gallery/js/.bowerrc
8017
%%WWWDIR%%/apps-pkg/gallery/composer.json
8018
%%WWWDIR%%/apps/gallery/js/.jshintrc
8018
%%WWWDIR%%/apps-pkg/gallery/composer.lock
8019
%%WWWDIR%%/apps/gallery/js/app.js
8019
%%WWWDIR%%/apps-pkg/gallery/css/authenticate.css
8020
%%WWWDIR%%/apps/gallery/js/bower.json
8020
%%WWWDIR%%/apps-pkg/gallery/css/error.css
8021
%%WWWDIR%%/apps/gallery/js/breadcrumb.js
8021
%%WWWDIR%%/apps-pkg/gallery/css/gallerybutton.css
8022
%%WWWDIR%%/apps/gallery/js/eventsource.js
8022
%%WWWDIR%%/apps-pkg/gallery/css/github-markdown.css
8023
%%WWWDIR%%/apps/gallery/js/gallery.js
8023
%%WWWDIR%%/apps-pkg/gallery/css/mobile.css
8024
%%WWWDIR%%/apps/gallery/js/galleryalbum.js
8024
%%WWWDIR%%/apps-pkg/gallery/css/public.css
8025
%%WWWDIR%%/apps/gallery/js/gallerybutton.js
8025
%%WWWDIR%%/apps-pkg/gallery/css/share.css
8026
%%WWWDIR%%/apps/gallery/js/galleryconfig.js
8026
%%WWWDIR%%/apps-pkg/gallery/css/slideshow.css
8027
%%WWWDIR%%/apps/gallery/js/galleryfileaction.js
8027
%%WWWDIR%%/apps-pkg/gallery/css/styles.css
8028
%%WWWDIR%%/apps/gallery/js/galleryimage.js
8028
%%WWWDIR%%/apps-pkg/gallery/css/upload.css
8029
%%WWWDIR%%/apps/gallery/js/galleryinfobox.js
8029
%%WWWDIR%%/apps-pkg/gallery/documentation/developers.md
8030
%%WWWDIR%%/apps/gallery/js/galleryrow.js
8030
%%WWWDIR%%/apps-pkg/gallery/img/app.svg
8031
%%WWWDIR%%/apps/gallery/js/galleryutility.js
8031
%%WWWDIR%%/apps-pkg/gallery/img/dateasc.svg
8032
%%WWWDIR%%/apps/gallery/js/galleryview.js
8032
%%WWWDIR%%/apps-pkg/gallery/img/datedes.svg
8033
%%WWWDIR%%/apps/gallery/js/merged.json
8033
%%WWWDIR%%/apps-pkg/gallery/img/gallery-dark.svg
8034
%%WWWDIR%%/apps/gallery/js/newfilemenuplugins.js
8034
%%WWWDIR%%/apps-pkg/gallery/img/nameasc.svg
8035
%%WWWDIR%%/apps/gallery/js/scripts-for-file-app.json
8035
%%WWWDIR%%/apps-pkg/gallery/img/namedes.svg
8036
%%WWWDIR%%/apps/gallery/js/slideshow.js
8036
%%WWWDIR%%/apps-pkg/gallery/js/.bowerrc
8037
%%WWWDIR%%/apps/gallery/js/slideshowcontrols.js
8037
%%WWWDIR%%/apps-pkg/gallery/js/.jshintrc
8038
%%WWWDIR%%/apps/gallery/js/slideshowzoomablepreview.js
8038
%%WWWDIR%%/apps-pkg/gallery/js/app.js
8039
%%WWWDIR%%/apps/gallery/js/thumbnail.js
8039
%%WWWDIR%%/apps-pkg/gallery/js/bower.json
8040
%%WWWDIR%%/apps/gallery/js/upload-helper.js
8040
%%WWWDIR%%/apps-pkg/gallery/js/breadcrumb.js
8041
%%WWWDIR%%/apps/gallery/js/vendor/bigshot/LICENSE.txt
8041
%%WWWDIR%%/apps-pkg/gallery/js/eventsource.js
8042
%%WWWDIR%%/apps/gallery/js/vendor/bigshot/README.txt
8042
%%WWWDIR%%/apps-pkg/gallery/js/gallery.js
8043
%%WWWDIR%%/apps/gallery/js/vendor/bigshot/bigshot-compressed.js
8043
%%WWWDIR%%/apps-pkg/gallery/js/galleryalbum.js
8044
%%WWWDIR%%/apps/gallery/js/vendor/bigshot/bigshot.js
8044
%%WWWDIR%%/apps-pkg/gallery/js/gallerybutton.js
8045
%%WWWDIR%%/apps/gallery/js/vendor/commonmark/LICENSE
8045
%%WWWDIR%%/apps-pkg/gallery/js/galleryconfig.js
8046
%%WWWDIR%%/apps/gallery/js/vendor/commonmark/dist/commonmark.js
8046
%%WWWDIR%%/apps-pkg/gallery/js/galleryfileaction.js
8047
%%WWWDIR%%/apps/gallery/js/vendor/commonmark/dist/commonmark.min.js
8047
%%WWWDIR%%/apps-pkg/gallery/js/galleryimage.js
8048
%%WWWDIR%%/apps/gallery/js/vendor/dompurify/LICENSE
8048
%%WWWDIR%%/apps-pkg/gallery/js/galleryinfobox.js
8049
%%WWWDIR%%/apps/gallery/js/vendor/dompurify/README.md
8049
%%WWWDIR%%/apps-pkg/gallery/js/galleryrow.js
8050
%%WWWDIR%%/apps/gallery/js/vendor/dompurify/src/purify.js
8050
%%WWWDIR%%/apps-pkg/gallery/js/galleryutility.js
8051
%%WWWDIR%%/apps/gallery/js/vendor/eventsource-polyfill/LICENSE
8051
%%WWWDIR%%/apps-pkg/gallery/js/galleryview.js
8052
%%WWWDIR%%/apps/gallery/js/vendor/eventsource-polyfill/README.md
8052
%%WWWDIR%%/apps-pkg/gallery/js/merged.json
8053
%%WWWDIR%%/apps/gallery/js/vendor/eventsource-polyfill/dist/eventsource.js
8053
%%WWWDIR%%/apps-pkg/gallery/js/newfilemenuplugins.js
8054
%%WWWDIR%%/apps/gallery/js/vendor/jquery-touch-events/README.md
8054
%%WWWDIR%%/apps-pkg/gallery/js/scripts-for-file-app.json
8055
%%WWWDIR%%/apps/gallery/js/vendor/jquery-touch-events/src/1.0.8/jquery.mobile-events.js
8055
%%WWWDIR%%/apps-pkg/gallery/js/slideshow.js
8056
%%WWWDIR%%/apps/gallery/js/vendor/jquery-touch-events/src/1.0.8/jquery.mobile-events.min.js
8056
%%WWWDIR%%/apps-pkg/gallery/js/slideshowcontrols.js
8057
%%WWWDIR%%/apps/gallery/js/vendor/jquery.ui.touch-punch-custom.js
8057
%%WWWDIR%%/apps-pkg/gallery/js/slideshowzoomablepreview.js
8058
%%WWWDIR%%/apps/gallery/js/vendor/jqueryui-touch-punch/README.md
8058
%%WWWDIR%%/apps-pkg/gallery/js/thumbnail.js
8059
%%WWWDIR%%/apps/gallery/js/vendor/jqueryui-touch-punch/jquery.ui.touch-punch.js
8059
%%WWWDIR%%/apps-pkg/gallery/js/upload-helper.js
8060
%%WWWDIR%%/apps/gallery/js/vendor/modified-eventsource-polyfill/eventsource-polyfill.js
8060
%%WWWDIR%%/apps-pkg/gallery/js/vendor/bigshot/LICENSE.txt
8061
%%WWWDIR%%/apps/gallery/js/vendor/nextcloud/newfilemenu.js
8061
%%WWWDIR%%/apps-pkg/gallery/js/vendor/bigshot/README.txt
8062
%%WWWDIR%%/apps/gallery/js/vendor/nextcloud/share.js
8062
%%WWWDIR%%/apps-pkg/gallery/js/vendor/bigshot/bigshot-compressed.js
8063
%%WWWDIR%%/apps/gallery/l10n/.tx/config
8063
%%WWWDIR%%/apps-pkg/gallery/js/vendor/bigshot/bigshot.js
8064
%%WWWDIR%%/apps/gallery/l10n/af_ZA.php
8064
%%WWWDIR%%/apps-pkg/gallery/js/vendor/commonmark/LICENSE
8065
%%WWWDIR%%/apps/gallery/l10n/ar.js
8065
%%WWWDIR%%/apps-pkg/gallery/js/vendor/commonmark/dist/commonmark.js
8066
%%WWWDIR%%/apps/gallery/l10n/ar.json
8066
%%WWWDIR%%/apps-pkg/gallery/js/vendor/commonmark/dist/commonmark.min.js
8067
%%WWWDIR%%/apps/gallery/l10n/ast.js
8067
%%WWWDIR%%/apps-pkg/gallery/js/vendor/dompurify/LICENSE
8068
%%WWWDIR%%/apps/gallery/l10n/ast.json
8068
%%WWWDIR%%/apps-pkg/gallery/js/vendor/dompurify/README.md
8069
%%WWWDIR%%/apps/gallery/l10n/az.js
8069
%%WWWDIR%%/apps-pkg/gallery/js/vendor/dompurify/src/purify.js
8070
%%WWWDIR%%/apps/gallery/l10n/az.json
8070
%%WWWDIR%%/apps-pkg/gallery/js/vendor/eventsource-polyfill/LICENSE
8071
%%WWWDIR%%/apps/gallery/l10n/bg.js
8071
%%WWWDIR%%/apps-pkg/gallery/js/vendor/eventsource-polyfill/README.md
8072
%%WWWDIR%%/apps/gallery/l10n/bg.json
8072
%%WWWDIR%%/apps-pkg/gallery/js/vendor/eventsource-polyfill/dist/eventsource.js
8073
%%WWWDIR%%/apps/gallery/l10n/bn_BD.js
8073
%%WWWDIR%%/apps-pkg/gallery/js/vendor/jquery-touch-events/README.md
8074
%%WWWDIR%%/apps/gallery/l10n/bn_BD.json
8074
%%WWWDIR%%/apps-pkg/gallery/js/vendor/jquery-touch-events/src/1.0.8/jquery.mobile-events.js
8075
%%WWWDIR%%/apps/gallery/l10n/bn_IN.php
8075
%%WWWDIR%%/apps-pkg/gallery/js/vendor/jquery-touch-events/src/1.0.8/jquery.mobile-events.min.js
8076
%%WWWDIR%%/apps/gallery/l10n/bs.js
8076
%%WWWDIR%%/apps-pkg/gallery/js/vendor/jquery.ui.touch-punch-custom.js
8077
%%WWWDIR%%/apps/gallery/l10n/bs.json
8077
%%WWWDIR%%/apps-pkg/gallery/js/vendor/jqueryui-touch-punch/README.md
8078
%%WWWDIR%%/apps/gallery/l10n/ca.js
8078
%%WWWDIR%%/apps-pkg/gallery/js/vendor/jqueryui-touch-punch/jquery.ui.touch-punch.js
8079
%%WWWDIR%%/apps/gallery/l10n/ca.json
8079
%%WWWDIR%%/apps-pkg/gallery/js/vendor/modified-eventsource-polyfill/eventsource-polyfill.js
8080
%%WWWDIR%%/apps/gallery/l10n/cs.js
8080
%%WWWDIR%%/apps-pkg/gallery/js/vendor/nextcloud/newfilemenu.js
8081
%%WWWDIR%%/apps/gallery/l10n/cs.json
8081
%%WWWDIR%%/apps-pkg/gallery/js/vendor/nextcloud/share.js
8082
%%WWWDIR%%/apps/gallery/l10n/cy_GB.js
8082
%%WWWDIR%%/apps-pkg/gallery/l10n/.tx/config
8083
%%WWWDIR%%/apps/gallery/l10n/cy_GB.json
8083
%%WWWDIR%%/apps-pkg/gallery/l10n/af_ZA.php
8084
%%WWWDIR%%/apps/gallery/l10n/da.js
8084
%%WWWDIR%%/apps-pkg/gallery/l10n/ar.js
8085
%%WWWDIR%%/apps/gallery/l10n/da.json
8085
%%WWWDIR%%/apps-pkg/gallery/l10n/ar.json
8086
%%WWWDIR%%/apps/gallery/l10n/de.js
8086
%%WWWDIR%%/apps-pkg/gallery/l10n/ast.js
8087
%%WWWDIR%%/apps/gallery/l10n/de.json
8087
%%WWWDIR%%/apps-pkg/gallery/l10n/ast.json
8088
%%WWWDIR%%/apps/gallery/l10n/de_AT.php
8088
%%WWWDIR%%/apps-pkg/gallery/l10n/az.js
8089
%%WWWDIR%%/apps/gallery/l10n/de_CH.php
8089
%%WWWDIR%%/apps-pkg/gallery/l10n/az.json
8090
%%WWWDIR%%/apps/gallery/l10n/de_DE.js
8090
%%WWWDIR%%/apps-pkg/gallery/l10n/bg.js
8091
%%WWWDIR%%/apps/gallery/l10n/de_DE.json
8091
%%WWWDIR%%/apps-pkg/gallery/l10n/bg.json
8092
%%WWWDIR%%/apps/gallery/l10n/el.js
8092
%%WWWDIR%%/apps-pkg/gallery/l10n/bn_BD.js
8093
%%WWWDIR%%/apps/gallery/l10n/el.json
8093
%%WWWDIR%%/apps-pkg/gallery/l10n/bn_BD.json
8094
%%WWWDIR%%/apps/gallery/l10n/en_GB.js
8094
%%WWWDIR%%/apps-pkg/gallery/l10n/bn_IN.php
8095
%%WWWDIR%%/apps/gallery/l10n/en_GB.json
8095
%%WWWDIR%%/apps-pkg/gallery/l10n/bs.js
8096
%%WWWDIR%%/apps/gallery/l10n/eo.js
8096
%%WWWDIR%%/apps-pkg/gallery/l10n/bs.json
8097
%%WWWDIR%%/apps/gallery/l10n/eo.json
8097
%%WWWDIR%%/apps-pkg/gallery/l10n/ca.js
8098
%%WWWDIR%%/apps/gallery/l10n/es.js
8098
%%WWWDIR%%/apps-pkg/gallery/l10n/ca.json
8099
%%WWWDIR%%/apps/gallery/l10n/es.json
8099
%%WWWDIR%%/apps-pkg/gallery/l10n/cs.js
8100
%%WWWDIR%%/apps/gallery/l10n/es_419.js
8100
%%WWWDIR%%/apps-pkg/gallery/l10n/cs.json
8101
%%WWWDIR%%/apps/gallery/l10n/es_419.json
8101
%%WWWDIR%%/apps-pkg/gallery/l10n/cy_GB.js
8102
%%WWWDIR%%/apps/gallery/l10n/es_AR.js
8102
%%WWWDIR%%/apps-pkg/gallery/l10n/cy_GB.json
8103
%%WWWDIR%%/apps/gallery/l10n/es_AR.json
8103
%%WWWDIR%%/apps-pkg/gallery/l10n/da.js
8104
%%WWWDIR%%/apps/gallery/l10n/es_CL.js
8104
%%WWWDIR%%/apps-pkg/gallery/l10n/da.json
8105
%%WWWDIR%%/apps/gallery/l10n/es_CL.json
8105
%%WWWDIR%%/apps-pkg/gallery/l10n/de.js
8106
%%WWWDIR%%/apps/gallery/l10n/es_CO.js
8106
%%WWWDIR%%/apps-pkg/gallery/l10n/de.json
8107
%%WWWDIR%%/apps/gallery/l10n/es_CO.json
8107
%%WWWDIR%%/apps-pkg/gallery/l10n/de_AT.php
8108
%%WWWDIR%%/apps/gallery/l10n/es_CR.js
8108
%%WWWDIR%%/apps-pkg/gallery/l10n/de_CH.php
8109
%%WWWDIR%%/apps/gallery/l10n/es_CR.json
8109
%%WWWDIR%%/apps-pkg/gallery/l10n/de_DE.js
8110
%%WWWDIR%%/apps/gallery/l10n/es_DO.js
8110
%%WWWDIR%%/apps-pkg/gallery/l10n/de_DE.json
8111
%%WWWDIR%%/apps/gallery/l10n/es_DO.json
8111
%%WWWDIR%%/apps-pkg/gallery/l10n/el.js
8112
%%WWWDIR%%/apps/gallery/l10n/es_EC.js
8112
%%WWWDIR%%/apps-pkg/gallery/l10n/el.json
8113
%%WWWDIR%%/apps/gallery/l10n/es_EC.json
8113
%%WWWDIR%%/apps-pkg/gallery/l10n/en_GB.js
8114
%%WWWDIR%%/apps/gallery/l10n/es_GT.js
8114
%%WWWDIR%%/apps-pkg/gallery/l10n/en_GB.json
8115
%%WWWDIR%%/apps/gallery/l10n/es_GT.json
8115
%%WWWDIR%%/apps-pkg/gallery/l10n/eo.js
8116
%%WWWDIR%%/apps/gallery/l10n/es_HN.js
8116
%%WWWDIR%%/apps-pkg/gallery/l10n/eo.json
8117
%%WWWDIR%%/apps/gallery/l10n/es_HN.json
8117
%%WWWDIR%%/apps-pkg/gallery/l10n/es.js
8118
%%WWWDIR%%/apps/gallery/l10n/es_MX.js
8118
%%WWWDIR%%/apps-pkg/gallery/l10n/es.json
8119
%%WWWDIR%%/apps/gallery/l10n/es_MX.json
8119
%%WWWDIR%%/apps-pkg/gallery/l10n/es_419.js
8120
%%WWWDIR%%/apps/gallery/l10n/es_NI.js
8120
%%WWWDIR%%/apps-pkg/gallery/l10n/es_419.json
8121
%%WWWDIR%%/apps/gallery/l10n/es_NI.json
8121
%%WWWDIR%%/apps-pkg/gallery/l10n/es_AR.js
8122
%%WWWDIR%%/apps/gallery/l10n/es_PA.js
8122
%%WWWDIR%%/apps-pkg/gallery/l10n/es_AR.json
8123
%%WWWDIR%%/apps/gallery/l10n/es_PA.json
8123
%%WWWDIR%%/apps-pkg/gallery/l10n/es_CL.js
8124
%%WWWDIR%%/apps/gallery/l10n/es_PE.js
8124
%%WWWDIR%%/apps-pkg/gallery/l10n/es_CL.json
8125
%%WWWDIR%%/apps/gallery/l10n/es_PE.json
8125
%%WWWDIR%%/apps-pkg/gallery/l10n/es_CO.js
8126
%%WWWDIR%%/apps/gallery/l10n/es_PR.js
8126
%%WWWDIR%%/apps-pkg/gallery/l10n/es_CO.json
8127
%%WWWDIR%%/apps/gallery/l10n/es_PR.json
8127
%%WWWDIR%%/apps-pkg/gallery/l10n/es_CR.js
8128
%%WWWDIR%%/apps/gallery/l10n/es_PY.js
8128
%%WWWDIR%%/apps-pkg/gallery/l10n/es_CR.json
8129
%%WWWDIR%%/apps/gallery/l10n/es_PY.json
8129
%%WWWDIR%%/apps-pkg/gallery/l10n/es_DO.js
8130
%%WWWDIR%%/apps/gallery/l10n/es_SV.js
8130
%%WWWDIR%%/apps-pkg/gallery/l10n/es_DO.json
8131
%%WWWDIR%%/apps/gallery/l10n/es_SV.json
8131
%%WWWDIR%%/apps-pkg/gallery/l10n/es_EC.js
8132
%%WWWDIR%%/apps/gallery/l10n/es_UY.js
8132
%%WWWDIR%%/apps-pkg/gallery/l10n/es_EC.json
8133
%%WWWDIR%%/apps/gallery/l10n/es_UY.json
8133
%%WWWDIR%%/apps-pkg/gallery/l10n/es_GT.js
8134
%%WWWDIR%%/apps/gallery/l10n/et_EE.js
8134
%%WWWDIR%%/apps-pkg/gallery/l10n/es_GT.json
8135
%%WWWDIR%%/apps/gallery/l10n/et_EE.json
8135
%%WWWDIR%%/apps-pkg/gallery/l10n/es_HN.js
8136
%%WWWDIR%%/apps/gallery/l10n/eu.js
8136
%%WWWDIR%%/apps-pkg/gallery/l10n/es_HN.json
8137
%%WWWDIR%%/apps/gallery/l10n/eu.json
8137
%%WWWDIR%%/apps-pkg/gallery/l10n/es_MX.js
8138
%%WWWDIR%%/apps/gallery/l10n/fa.js
8138
%%WWWDIR%%/apps-pkg/gallery/l10n/es_MX.json
8139
%%WWWDIR%%/apps/gallery/l10n/fa.json
8139
%%WWWDIR%%/apps-pkg/gallery/l10n/es_NI.js
8140
%%WWWDIR%%/apps/gallery/l10n/fi.js
8140
%%WWWDIR%%/apps-pkg/gallery/l10n/es_NI.json
8141
%%WWWDIR%%/apps/gallery/l10n/fi.json
8141
%%WWWDIR%%/apps-pkg/gallery/l10n/es_PA.js
8142
%%WWWDIR%%/apps/gallery/l10n/fr.js
8142
%%WWWDIR%%/apps-pkg/gallery/l10n/es_PA.json
8143
%%WWWDIR%%/apps/gallery/l10n/fr.json
8143
%%WWWDIR%%/apps-pkg/gallery/l10n/es_PE.js
8144
%%WWWDIR%%/apps/gallery/l10n/he.js
8144
%%WWWDIR%%/apps-pkg/gallery/l10n/es_PE.json
8145
%%WWWDIR%%/apps/gallery/l10n/he.json
8145
%%WWWDIR%%/apps-pkg/gallery/l10n/es_PR.js
8146
%%WWWDIR%%/apps/gallery/l10n/hi.php
8146
%%WWWDIR%%/apps-pkg/gallery/l10n/es_PR.json
8147
%%WWWDIR%%/apps/gallery/l10n/hr.js
8147
%%WWWDIR%%/apps-pkg/gallery/l10n/es_PY.js
8148
%%WWWDIR%%/apps/gallery/l10n/hr.json
8148
%%WWWDIR%%/apps-pkg/gallery/l10n/es_PY.json
8149
%%WWWDIR%%/apps/gallery/l10n/hu.js
8149
%%WWWDIR%%/apps-pkg/gallery/l10n/es_SV.js
8150
%%WWWDIR%%/apps/gallery/l10n/hu.json
8150
%%WWWDIR%%/apps-pkg/gallery/l10n/es_SV.json
8151
%%WWWDIR%%/apps/gallery/l10n/ia.js
8151
%%WWWDIR%%/apps-pkg/gallery/l10n/es_UY.js
8152
%%WWWDIR%%/apps/gallery/l10n/ia.json
8152
%%WWWDIR%%/apps-pkg/gallery/l10n/es_UY.json
8153
%%WWWDIR%%/apps/gallery/l10n/id.js
8153
%%WWWDIR%%/apps-pkg/gallery/l10n/et_EE.js
8154
%%WWWDIR%%/apps/gallery/l10n/id.json
8154
%%WWWDIR%%/apps-pkg/gallery/l10n/et_EE.json
8155
%%WWWDIR%%/apps/gallery/l10n/is.js
8155
%%WWWDIR%%/apps-pkg/gallery/l10n/eu.js
8156
%%WWWDIR%%/apps/gallery/l10n/is.json
8156
%%WWWDIR%%/apps-pkg/gallery/l10n/eu.json
8157
%%WWWDIR%%/apps/gallery/l10n/it.js
8157
%%WWWDIR%%/apps-pkg/gallery/l10n/fa.js
8158
%%WWWDIR%%/apps/gallery/l10n/it.json
8158
%%WWWDIR%%/apps-pkg/gallery/l10n/fa.json
8159
%%WWWDIR%%/apps/gallery/l10n/ja.js
8159
%%WWWDIR%%/apps-pkg/gallery/l10n/fi.js
8160
%%WWWDIR%%/apps/gallery/l10n/ja.json
8160
%%WWWDIR%%/apps-pkg/gallery/l10n/fi.json
8161
%%WWWDIR%%/apps/gallery/l10n/ka_GE.js
8161
%%WWWDIR%%/apps-pkg/gallery/l10n/fr.js
8162
%%WWWDIR%%/apps/gallery/l10n/ka_GE.json
8162
%%WWWDIR%%/apps-pkg/gallery/l10n/fr.json
8163
%%WWWDIR%%/apps/gallery/l10n/km.js
8163
%%WWWDIR%%/apps-pkg/gallery/l10n/he.js
8164
%%WWWDIR%%/apps/gallery/l10n/km.json
8164
%%WWWDIR%%/apps-pkg/gallery/l10n/he.json
8165
%%WWWDIR%%/apps/gallery/l10n/kn.js
8165
%%WWWDIR%%/apps-pkg/gallery/l10n/hi.php
8166
%%WWWDIR%%/apps/gallery/l10n/kn.json
8166
%%WWWDIR%%/apps-pkg/gallery/l10n/hr.js
8167
%%WWWDIR%%/apps/gallery/l10n/ko.js
8167
%%WWWDIR%%/apps-pkg/gallery/l10n/hr.json
8168
%%WWWDIR%%/apps/gallery/l10n/ko.json
8168
%%WWWDIR%%/apps-pkg/gallery/l10n/hu.js
8169
%%WWWDIR%%/apps/gallery/l10n/ku_IQ.php
8169
%%WWWDIR%%/apps-pkg/gallery/l10n/hu.json
8170
%%WWWDIR%%/apps/gallery/l10n/lb.js
8170
%%WWWDIR%%/apps-pkg/gallery/l10n/ia.js
8171
%%WWWDIR%%/apps/gallery/l10n/lb.json
8171
%%WWWDIR%%/apps-pkg/gallery/l10n/ia.json
8172
%%WWWDIR%%/apps/gallery/l10n/lt_LT.js
8172
%%WWWDIR%%/apps-pkg/gallery/l10n/id.js
8173
%%WWWDIR%%/apps/gallery/l10n/lt_LT.json
8173
%%WWWDIR%%/apps-pkg/gallery/l10n/id.json
8174
%%WWWDIR%%/apps/gallery/l10n/lv.js
8174
%%WWWDIR%%/apps-pkg/gallery/l10n/is.js
8175
%%WWWDIR%%/apps/gallery/l10n/lv.json
8175
%%WWWDIR%%/apps-pkg/gallery/l10n/is.json
8176
%%WWWDIR%%/apps/gallery/l10n/mk.js
8176
%%WWWDIR%%/apps-pkg/gallery/l10n/it.js
8177
%%WWWDIR%%/apps/gallery/l10n/mk.json
8177
%%WWWDIR%%/apps-pkg/gallery/l10n/it.json
8178
%%WWWDIR%%/apps/gallery/l10n/mn.js
8178
%%WWWDIR%%/apps-pkg/gallery/l10n/ja.js
8179
%%WWWDIR%%/apps/gallery/l10n/mn.json
8179
%%WWWDIR%%/apps-pkg/gallery/l10n/ja.json
8180
%%WWWDIR%%/apps/gallery/l10n/ms_MY.php
8180
%%WWWDIR%%/apps-pkg/gallery/l10n/ka_GE.js
8181
%%WWWDIR%%/apps/gallery/l10n/nb.js
8181
%%WWWDIR%%/apps-pkg/gallery/l10n/ka_GE.json
8182
%%WWWDIR%%/apps/gallery/l10n/nb.json
8182
%%WWWDIR%%/apps-pkg/gallery/l10n/km.js
8183
%%WWWDIR%%/apps/gallery/l10n/nl.js
8183
%%WWWDIR%%/apps-pkg/gallery/l10n/km.json
8184
%%WWWDIR%%/apps/gallery/l10n/nl.json
8184
%%WWWDIR%%/apps-pkg/gallery/l10n/kn.js
8185
%%WWWDIR%%/apps/gallery/l10n/nn_NO.js
8185
%%WWWDIR%%/apps-pkg/gallery/l10n/kn.json
8186
%%WWWDIR%%/apps/gallery/l10n/nn_NO.json
8186
%%WWWDIR%%/apps-pkg/gallery/l10n/ko.js
8187
%%WWWDIR%%/apps/gallery/l10n/no-php
8187
%%WWWDIR%%/apps-pkg/gallery/l10n/ko.json
8188
%%WWWDIR%%/apps/gallery/l10n/oc.js
8188
%%WWWDIR%%/apps-pkg/gallery/l10n/ku_IQ.php
8189
%%WWWDIR%%/apps/gallery/l10n/oc.json
8189
%%WWWDIR%%/apps-pkg/gallery/l10n/lb.js
8190
%%WWWDIR%%/apps/gallery/l10n/pa.php
8190
%%WWWDIR%%/apps-pkg/gallery/l10n/lb.json
8191
%%WWWDIR%%/apps/gallery/l10n/pl.js
8191
%%WWWDIR%%/apps-pkg/gallery/l10n/lt_LT.js
8192
%%WWWDIR%%/apps/gallery/l10n/pl.json
8192
%%WWWDIR%%/apps-pkg/gallery/l10n/lt_LT.json
8193
%%WWWDIR%%/apps/gallery/l10n/pt_BR.js
8193
%%WWWDIR%%/apps-pkg/gallery/l10n/lv.js
8194
%%WWWDIR%%/apps/gallery/l10n/pt_BR.json
8194
%%WWWDIR%%/apps-pkg/gallery/l10n/lv.json
8195
%%WWWDIR%%/apps/gallery/l10n/pt_PT.js
8195
%%WWWDIR%%/apps-pkg/gallery/l10n/mk.js
8196
%%WWWDIR%%/apps/gallery/l10n/pt_PT.json
8196
%%WWWDIR%%/apps-pkg/gallery/l10n/mk.json
8197
%%WWWDIR%%/apps/gallery/l10n/ro.js
8197
%%WWWDIR%%/apps-pkg/gallery/l10n/mn.js
8198
%%WWWDIR%%/apps/gallery/l10n/ro.json
8198
%%WWWDIR%%/apps-pkg/gallery/l10n/mn.json
8199
%%WWWDIR%%/apps/gallery/l10n/ru.js
8199
%%WWWDIR%%/apps-pkg/gallery/l10n/ms_MY.php
8200
%%WWWDIR%%/apps/gallery/l10n/ru.json
8200
%%WWWDIR%%/apps-pkg/gallery/l10n/nb.js
8201
%%WWWDIR%%/apps/gallery/l10n/si_LK.php
8201
%%WWWDIR%%/apps-pkg/gallery/l10n/nb.json
8202
%%WWWDIR%%/apps/gallery/l10n/sk.js
8202
%%WWWDIR%%/apps-pkg/gallery/l10n/nl.js
8203
%%WWWDIR%%/apps/gallery/l10n/sk.json
8203
%%WWWDIR%%/apps-pkg/gallery/l10n/nl.json
8204
%%WWWDIR%%/apps/gallery/l10n/sl.js
8204
%%WWWDIR%%/apps-pkg/gallery/l10n/nn_NO.js
8205
%%WWWDIR%%/apps/gallery/l10n/sl.json
8205
%%WWWDIR%%/apps-pkg/gallery/l10n/nn_NO.json
8206
%%WWWDIR%%/apps/gallery/l10n/sq.js
8206
%%WWWDIR%%/apps-pkg/gallery/l10n/no-php
8207
%%WWWDIR%%/apps/gallery/l10n/sq.json
8207
%%WWWDIR%%/apps-pkg/gallery/l10n/oc.js
8208
%%WWWDIR%%/apps/gallery/l10n/sr.js
8208
%%WWWDIR%%/apps-pkg/gallery/l10n/oc.json
8209
%%WWWDIR%%/apps/gallery/l10n/sr.json
8209
%%WWWDIR%%/apps-pkg/gallery/l10n/pa.php
8210
%%WWWDIR%%/apps/gallery/l10n/sr@latin.php
8210
%%WWWDIR%%/apps-pkg/gallery/l10n/pl.js
8211
%%WWWDIR%%/apps/gallery/l10n/sv.js
8211
%%WWWDIR%%/apps-pkg/gallery/l10n/pl.json
8212
%%WWWDIR%%/apps/gallery/l10n/sv.json
8212
%%WWWDIR%%/apps-pkg/gallery/l10n/pt_BR.js
8213
%%WWWDIR%%/apps/gallery/l10n/ta_LK.js
8213
%%WWWDIR%%/apps-pkg/gallery/l10n/pt_BR.json
8214
%%WWWDIR%%/apps/gallery/l10n/ta_LK.json
8214
%%WWWDIR%%/apps-pkg/gallery/l10n/pt_PT.js
8215
%%WWWDIR%%/apps/gallery/l10n/th.js
8215
%%WWWDIR%%/apps-pkg/gallery/l10n/pt_PT.json
8216
%%WWWDIR%%/apps/gallery/l10n/th.json
8216
%%WWWDIR%%/apps-pkg/gallery/l10n/ro.js
8217
%%WWWDIR%%/apps/gallery/l10n/tr.js
8217
%%WWWDIR%%/apps-pkg/gallery/l10n/ro.json
8218
%%WWWDIR%%/apps/gallery/l10n/tr.json
8218
%%WWWDIR%%/apps-pkg/gallery/l10n/ru.js
8219
%%WWWDIR%%/apps/gallery/l10n/ug.php
8219
%%WWWDIR%%/apps-pkg/gallery/l10n/ru.json
8220
%%WWWDIR%%/apps/gallery/l10n/uk.js
8220
%%WWWDIR%%/apps-pkg/gallery/l10n/si_LK.php
8221
%%WWWDIR%%/apps/gallery/l10n/uk.json
8221
%%WWWDIR%%/apps-pkg/gallery/l10n/sk.js
8222
%%WWWDIR%%/apps/gallery/l10n/ur_PK.js
8222
%%WWWDIR%%/apps-pkg/gallery/l10n/sk.json
8223
%%WWWDIR%%/apps/gallery/l10n/ur_PK.json
8223
%%WWWDIR%%/apps-pkg/gallery/l10n/sl.js
8224
%%WWWDIR%%/apps/gallery/l10n/vi.js
8224
%%WWWDIR%%/apps-pkg/gallery/l10n/sl.json
8225
%%WWWDIR%%/apps/gallery/l10n/vi.json
8225
%%WWWDIR%%/apps-pkg/gallery/l10n/sq.js
8226
%%WWWDIR%%/apps/gallery/l10n/zh_CN.js
8226
%%WWWDIR%%/apps-pkg/gallery/l10n/sq.json
8227
%%WWWDIR%%/apps/gallery/l10n/zh_CN.json
8227
%%WWWDIR%%/apps-pkg/gallery/l10n/sr.js
8228
%%WWWDIR%%/apps/gallery/l10n/zh_HK.js
8228
%%WWWDIR%%/apps-pkg/gallery/l10n/sr.json
8229
%%WWWDIR%%/apps/gallery/l10n/zh_HK.json
8229
%%WWWDIR%%/apps-pkg/gallery/l10n/sr@latin.php
8230
%%WWWDIR%%/apps/gallery/l10n/zh_TW.js
8230
%%WWWDIR%%/apps-pkg/gallery/l10n/sv.js
8231
%%WWWDIR%%/apps/gallery/l10n/zh_TW.json
8231
%%WWWDIR%%/apps-pkg/gallery/l10n/sv.json
8232
%%WWWDIR%%/apps/gallery/lib/AppInfo/Application.php
8232
%%WWWDIR%%/apps-pkg/gallery/l10n/ta_LK.js
8233
%%WWWDIR%%/apps/gallery/lib/Config/ConfigException.php
8233
%%WWWDIR%%/apps-pkg/gallery/l10n/ta_LK.json
8234
%%WWWDIR%%/apps/gallery/lib/Config/ConfigParser.php
8234
%%WWWDIR%%/apps-pkg/gallery/l10n/th.js
8235
%%WWWDIR%%/apps/gallery/lib/Config/ConfigValidator.php
8235
%%WWWDIR%%/apps-pkg/gallery/l10n/th.json
8236
%%WWWDIR%%/apps/gallery/lib/Controller/Config.php
8236
%%WWWDIR%%/apps-pkg/gallery/l10n/tr.js
8237
%%WWWDIR%%/apps/gallery/lib/Controller/ConfigApiController.php
8237
%%WWWDIR%%/apps-pkg/gallery/l10n/tr.json
8238
%%WWWDIR%%/apps/gallery/lib/Controller/ConfigController.php
8238
%%WWWDIR%%/apps-pkg/gallery/l10n/ug.php
8239
%%WWWDIR%%/apps/gallery/lib/Controller/ConfigPublicController.php
8239
%%WWWDIR%%/apps-pkg/gallery/l10n/uk.js
8240
%%WWWDIR%%/apps/gallery/lib/Controller/Files.php
8240
%%WWWDIR%%/apps-pkg/gallery/l10n/uk.json
8241
%%WWWDIR%%/apps/gallery/lib/Controller/FilesApiController.php
8241
%%WWWDIR%%/apps-pkg/gallery/l10n/ur_PK.js
8242
%%WWWDIR%%/apps/gallery/lib/Controller/FilesController.php
8242
%%WWWDIR%%/apps-pkg/gallery/l10n/ur_PK.json
8243
%%WWWDIR%%/apps/gallery/lib/Controller/FilesPublicController.php
8243
%%WWWDIR%%/apps-pkg/gallery/l10n/vi.js
8244
%%WWWDIR%%/apps/gallery/lib/Controller/HttpError.php
8244
%%WWWDIR%%/apps-pkg/gallery/l10n/vi.json
8245
%%WWWDIR%%/apps/gallery/lib/Controller/PageController.php
8245
%%WWWDIR%%/apps-pkg/gallery/l10n/zh_CN.js
8246
%%WWWDIR%%/apps/gallery/lib/Controller/PathManipulation.php
8246
%%WWWDIR%%/apps-pkg/gallery/l10n/zh_CN.json
8247
%%WWWDIR%%/apps/gallery/lib/Controller/Preview.php
8247
%%WWWDIR%%/apps-pkg/gallery/l10n/zh_HK.js
8248
%%WWWDIR%%/apps/gallery/lib/Controller/PreviewApiController.php
8248
%%WWWDIR%%/apps-pkg/gallery/l10n/zh_HK.json
8249
%%WWWDIR%%/apps/gallery/lib/Controller/PreviewController.php
8249
%%WWWDIR%%/apps-pkg/gallery/l10n/zh_TW.js
8250
%%WWWDIR%%/apps/gallery/lib/Controller/PreviewPublicController.php
8250
%%WWWDIR%%/apps-pkg/gallery/l10n/zh_TW.json
8251
%%WWWDIR%%/apps/gallery/lib/Environment/Environment.php
8251
%%WWWDIR%%/apps-pkg/gallery/lib/AppInfo/Application.php
8252
%%WWWDIR%%/apps/gallery/lib/Environment/EnvironmentException.php
8252
%%WWWDIR%%/apps-pkg/gallery/lib/Config/ConfigException.php
8253
%%WWWDIR%%/apps/gallery/lib/Environment/NotFoundEnvException.php
8253
%%WWWDIR%%/apps-pkg/gallery/lib/Config/ConfigParser.php
8254
%%WWWDIR%%/apps/gallery/lib/Http/ImageResponse.php
8254
%%WWWDIR%%/apps-pkg/gallery/lib/Config/ConfigValidator.php
8255
%%WWWDIR%%/apps/gallery/lib/Middleware/CheckException.php
8255
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/Config.php
8256
%%WWWDIR%%/apps/gallery/lib/Middleware/CheckMiddleware.php
8256
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/ConfigApiController.php
8257
%%WWWDIR%%/apps/gallery/lib/Middleware/EnvCheckMiddleware.php
8257
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/ConfigController.php
8258
%%WWWDIR%%/apps/gallery/lib/Middleware/SharingCheckMiddleware.php
8258
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/ConfigPublicController.php
8259
%%WWWDIR%%/apps/gallery/lib/Service/Base64Encode.php
8259
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/Files.php
8260
%%WWWDIR%%/apps/gallery/lib/Service/ConfigService.php
8260
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/FilesApiController.php
8261
%%WWWDIR%%/apps/gallery/lib/Service/DownloadService.php
8261
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/FilesController.php
8262
%%WWWDIR%%/apps/gallery/lib/Service/FilesService.php
8262
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/FilesPublicController.php
8263
%%WWWDIR%%/apps/gallery/lib/Service/ForbiddenServiceException.php
8263
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/HttpError.php
8264
%%WWWDIR%%/apps/gallery/lib/Service/InternalServerErrorServiceException.php
8264
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/PageController.php
8265
%%WWWDIR%%/apps/gallery/lib/Service/NotFoundServiceException.php
8265
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/PathManipulation.php
8266
%%WWWDIR%%/apps/gallery/lib/Service/PreviewService.php
8266
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/Preview.php
8267
%%WWWDIR%%/apps/gallery/lib/Service/SearchFolderService.php
8267
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/PreviewApiController.php
8268
%%WWWDIR%%/apps/gallery/lib/Service/SearchMediaService.php
8268
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/PreviewController.php
8269
%%WWWDIR%%/apps/gallery/lib/Service/Service.php
8269
%%WWWDIR%%/apps-pkg/gallery/lib/Controller/PreviewPublicController.php
8270
%%WWWDIR%%/apps/gallery/lib/Service/ServiceException.php
8270
%%WWWDIR%%/apps-pkg/gallery/lib/Environment/Environment.php
8271
%%WWWDIR%%/apps/gallery/lib/Service/ThumbnailService.php
8271
%%WWWDIR%%/apps-pkg/gallery/lib/Environment/EnvironmentException.php
8272
%%WWWDIR%%/apps/gallery/lib/Utility/EventSource.php
8272
%%WWWDIR%%/apps-pkg/gallery/lib/Environment/NotFoundEnvException.php
8273
%%WWWDIR%%/apps/gallery/phpdoc.xml
8273
%%WWWDIR%%/apps-pkg/gallery/lib/Http/ImageResponse.php
8274
%%WWWDIR%%/apps/gallery/templates/authenticate.php
8274
%%WWWDIR%%/apps-pkg/gallery/lib/Middleware/CheckException.php
8275
%%WWWDIR%%/apps/gallery/templates/index.php
8275
%%WWWDIR%%/apps-pkg/gallery/lib/Middleware/CheckMiddleware.php
8276
%%WWWDIR%%/apps/gallery/templates/part.content.php
8276
%%WWWDIR%%/apps-pkg/gallery/lib/Middleware/EnvCheckMiddleware.php
8277
%%WWWDIR%%/apps/gallery/templates/part.filenotfounderror.php
8277
%%WWWDIR%%/apps-pkg/gallery/lib/Middleware/SharingCheckMiddleware.php
8278
%%WWWDIR%%/apps/gallery/templates/part.internalservererror.php
8278
%%WWWDIR%%/apps-pkg/gallery/lib/Service/Base64Encode.php
8279
%%WWWDIR%%/apps/gallery/templates/part.linkerror.php
8279
%%WWWDIR%%/apps-pkg/gallery/lib/Service/ConfigService.php
8280
%%WWWDIR%%/apps/gallery/templates/public.php
8280
%%WWWDIR%%/apps-pkg/gallery/lib/Service/DownloadService.php
8281
%%WWWDIR%%/apps/gallery/templates/slideshow.php
8281
%%WWWDIR%%/apps-pkg/gallery/lib/Service/FilesService.php
8282
%%WWWDIR%%/apps/gallery/vendor/autoload.php
8282
%%WWWDIR%%/apps-pkg/gallery/lib/Service/ForbiddenServiceException.php
8283
%%WWWDIR%%/apps/gallery/vendor/composer/ClassLoader.php
8283
%%WWWDIR%%/apps-pkg/gallery/lib/Service/InternalServerErrorServiceException.php
8284
%%WWWDIR%%/apps/gallery/vendor/composer/LICENSE
8284
%%WWWDIR%%/apps-pkg/gallery/lib/Service/NotFoundServiceException.php
8285
%%WWWDIR%%/apps/gallery/vendor/composer/autoload_classmap.php
8285
%%WWWDIR%%/apps-pkg/gallery/lib/Service/PreviewService.php
8286
%%WWWDIR%%/apps/gallery/vendor/composer/autoload_namespaces.php
8286
%%WWWDIR%%/apps-pkg/gallery/lib/Service/SearchFolderService.php
8287
%%WWWDIR%%/apps/gallery/vendor/composer/autoload_psr4.php
8287
%%WWWDIR%%/apps-pkg/gallery/lib/Service/SearchMediaService.php
8288
%%WWWDIR%%/apps/gallery/vendor/composer/autoload_real.php
8288
%%WWWDIR%%/apps-pkg/gallery/lib/Service/Service.php
8289
%%WWWDIR%%/apps/gallery/vendor/composer/autoload_static.php
8289
%%WWWDIR%%/apps-pkg/gallery/lib/Service/ServiceException.php
8290
%%WWWDIR%%/apps/gallery/vendor/composer/installed.json
8290
%%WWWDIR%%/apps-pkg/gallery/lib/Service/ThumbnailService.php
8291
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/.gitignore
8291
%%WWWDIR%%/apps-pkg/gallery/lib/Utility/EventSource.php
8292
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/CHANGELOG.md
8292
%%WWWDIR%%/apps-pkg/gallery/phpdoc.xml
8293
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Dumper.php
8293
%%WWWDIR%%/apps-pkg/gallery/templates/authenticate.php
8294
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Escaper.php
8294
%%WWWDIR%%/apps-pkg/gallery/templates/index.php
8295
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Exception/DumpException.php
8295
%%WWWDIR%%/apps-pkg/gallery/templates/part.content.php
8296
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Exception/ExceptionInterface.php
8296
%%WWWDIR%%/apps-pkg/gallery/templates/part.filenotfounderror.php
8297
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Exception/ParseException.php
8297
%%WWWDIR%%/apps-pkg/gallery/templates/part.internalservererror.php
8298
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Exception/RuntimeException.php
8298
%%WWWDIR%%/apps-pkg/gallery/templates/part.linkerror.php
8299
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Inline.php
8299
%%WWWDIR%%/apps-pkg/gallery/templates/public.php
8300
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/LICENSE
8300
%%WWWDIR%%/apps-pkg/gallery/templates/slideshow.php
8301
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Parser.php
8301
%%WWWDIR%%/apps-pkg/gallery/vendor/autoload.php
8302
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/README.md
8302
%%WWWDIR%%/apps-pkg/gallery/vendor/composer/ClassLoader.php
8303
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/DumperTest.php
8303
%%WWWDIR%%/apps-pkg/gallery/vendor/composer/LICENSE
8304
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsAnchorAlias.yml
8304
%%WWWDIR%%/apps-pkg/gallery/vendor/composer/autoload_classmap.php
8305
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsBasicTests.yml
8305
%%WWWDIR%%/apps-pkg/gallery/vendor/composer/autoload_namespaces.php
8306
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsBlockMapping.yml
8306
%%WWWDIR%%/apps-pkg/gallery/vendor/composer/autoload_psr4.php
8307
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsDocumentSeparator.yml
8307
%%WWWDIR%%/apps-pkg/gallery/vendor/composer/autoload_real.php
8308
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsErrorTests.yml
8308
%%WWWDIR%%/apps-pkg/gallery/vendor/composer/autoload_static.php
8309
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsFlowCollections.yml
8309
%%WWWDIR%%/apps-pkg/gallery/vendor/composer/installed.json
8310
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsFoldedScalars.yml
8310
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/.gitignore
8311
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsNullsAndEmpties.yml
8311
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/CHANGELOG.md
8312
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsSpecificationExamples.yml
8312
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Dumper.php
8313
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsTypeTransfers.yml
8313
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Escaper.php
8314
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml
8314
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Exception/DumpException.php
8315
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/escapedCharacters.yml
8315
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Exception/ExceptionInterface.php
8316
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/index.yml
8316
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Exception/ParseException.php
8317
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfComments.yml
8317
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Exception/RuntimeException.php
8318
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfCompact.yml
8318
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Inline.php
8319
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfMergeKey.yml
8319
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/LICENSE
8320
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfObjects.yml
8320
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Parser.php
8321
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfQuotes.yml
8321
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/README.md
8322
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfTests.yml
8322
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/DumperTest.php
8323
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/unindentedCollections.yml
8323
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsAnchorAlias.yml
8324
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/InlineTest.php
8324
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsBasicTests.yml
8325
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/ParseExceptionTest.php
8325
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsBlockMapping.yml
8326
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/ParserTest.php
8326
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsDocumentSeparator.yml
8327
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/YamlTest.php
8327
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsErrorTests.yml
8328
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Unescaper.php
8328
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsFlowCollections.yml
8329
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Yaml.php
8329
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsFoldedScalars.yml
8330
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/composer.json
8330
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsNullsAndEmpties.yml
8331
%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/phpunit.xml.dist
8331
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsSpecificationExamples.yml
8332
%%WWWDIR%%/apps/logreader/.babelrc
8332
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsTypeTransfers.yml
8333
%%WWWDIR%%/apps/logreader/.github/contributing.md
8333
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml
8334
%%WWWDIR%%/apps/logreader/.github/issue_template.md
8334
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/escapedCharacters.yml
8335
%%WWWDIR%%/apps/logreader/Makefile
8335
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/index.yml
8336
%%WWWDIR%%/apps/logreader/appinfo/app.php
8336
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/sfComments.yml
8337
%%WWWDIR%%/apps/logreader/appinfo/info.xml
8337
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/sfCompact.yml
8338
%%WWWDIR%%/apps/logreader/appinfo/routes.php
8338
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/sfMergeKey.yml
8339
%%WWWDIR%%/apps/logreader/appinfo/signature.json
8339
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/sfObjects.yml
8340
%%WWWDIR%%/apps/logreader/build/main.css
8340
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/sfQuotes.yml
8341
%%WWWDIR%%/apps/logreader/build/main.css.map
8341
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/sfTests.yml
8342
%%WWWDIR%%/apps/logreader/build/main.js
8342
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/unindentedCollections.yml
8343
%%WWWDIR%%/apps/logreader/build/main.js.map
8343
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/InlineTest.php
8344
%%WWWDIR%%/apps/logreader/css/app.css
8344
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/ParseExceptionTest.php
8345
%%WWWDIR%%/apps/logreader/img/app-dark.svg
8345
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/ParserTest.php
8346
%%WWWDIR%%/apps/logreader/img/app.svg
8346
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/YamlTest.php
8347
%%WWWDIR%%/apps/logreader/js/App.js
8347
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Unescaper.php
8348
%%WWWDIR%%/apps/logreader/js/Components/BackgroundException.js
8348
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Yaml.php
8349
%%WWWDIR%%/apps/logreader/js/Components/Exception.js
8349
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/composer.json
8350
%%WWWDIR%%/apps/logreader/js/Components/Exception.less
8350
%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/phpunit.xml.dist
8351
%%WWWDIR%%/apps/logreader/js/Components/LevelSettings.js
8351
%%WWWDIR%%/apps-pkg/logreader/.babelrc
8352
%%WWWDIR%%/apps/logreader/js/Components/LevelSettings.less
8352
%%WWWDIR%%/apps-pkg/logreader/.github/contributing.md
8353
%%WWWDIR%%/apps/logreader/js/Components/LogEntry.js
8353
%%WWWDIR%%/apps-pkg/logreader/.github/issue_template.md
8354
%%WWWDIR%%/apps/logreader/js/Components/LogLevel.js
8354
%%WWWDIR%%/apps-pkg/logreader/Makefile
8355
%%WWWDIR%%/apps/logreader/js/Components/LogTable.js
8355
%%WWWDIR%%/apps-pkg/logreader/appinfo/app.php
8356
%%WWWDIR%%/apps/logreader/js/Components/LogTable.less
8356
%%WWWDIR%%/apps-pkg/logreader/appinfo/info.xml
8357
%%WWWDIR%%/apps/logreader/js/Components/LogUploader.js
8357
%%WWWDIR%%/apps-pkg/logreader/appinfo/routes.php
8358
%%WWWDIR%%/apps/logreader/js/Components/LogUploader.less
8358
%%WWWDIR%%/apps-pkg/logreader/appinfo/signature.json
8359
%%WWWDIR%%/apps/logreader/js/Components/ToggleEntry.js
8359
%%WWWDIR%%/apps-pkg/logreader/build/main.css
8360
%%WWWDIR%%/apps/logreader/js/Components/ToggleEntry.less
8360
%%WWWDIR%%/apps-pkg/logreader/build/main.css.map
8361
%%WWWDIR%%/apps/logreader/js/Components/TraceLine.js
8361
%%WWWDIR%%/apps-pkg/logreader/build/main.js
8362
%%WWWDIR%%/apps/logreader/js/Components/TraceLine.less
8362
%%WWWDIR%%/apps-pkg/logreader/build/main.js.map
8363
%%WWWDIR%%/apps/logreader/js/DateFormatConverter.js
8363
%%WWWDIR%%/apps-pkg/logreader/css/app.css
8364
%%WWWDIR%%/apps/logreader/js/ExceptionParser.js
8364
%%WWWDIR%%/apps-pkg/logreader/img/app-dark.svg
8365
%%WWWDIR%%/apps/logreader/js/Providers/LogFile.js
8365
%%WWWDIR%%/apps-pkg/logreader/img/app.svg
8366
%%WWWDIR%%/apps/logreader/js/Providers/LogProvider.js
8366
%%WWWDIR%%/apps-pkg/logreader/js/App.js
8367
%%WWWDIR%%/apps/logreader/js/Search.js
8367
%%WWWDIR%%/apps-pkg/logreader/js/Components/BackgroundException.js
8368
%%WWWDIR%%/apps/logreader/js/index.js
8368
%%WWWDIR%%/apps-pkg/logreader/js/Components/Exception.js
8369
%%WWWDIR%%/apps/logreader/js/unserialize.js
8369
%%WWWDIR%%/apps-pkg/logreader/js/Components/Exception.less
8370
%%WWWDIR%%/apps/logreader/l10n/.tx/config
8370
%%WWWDIR%%/apps-pkg/logreader/js/Components/LevelSettings.js
8371
%%WWWDIR%%/apps/logreader/l10n/ast.js
8371
%%WWWDIR%%/apps-pkg/logreader/js/Components/LevelSettings.less
8372
%%WWWDIR%%/apps/logreader/l10n/ast.json
8372
%%WWWDIR%%/apps-pkg/logreader/js/Components/LogEntry.js
8373
%%WWWDIR%%/apps/logreader/l10n/ca.js
8373
%%WWWDIR%%/apps-pkg/logreader/js/Components/LogLevel.js
8374
%%WWWDIR%%/apps/logreader/l10n/ca.json
8374
%%WWWDIR%%/apps-pkg/logreader/js/Components/LogTable.js
8375
%%WWWDIR%%/apps/logreader/l10n/cs.js
8375
%%WWWDIR%%/apps-pkg/logreader/js/Components/LogTable.less
8376
%%WWWDIR%%/apps/logreader/l10n/cs.json
8376
%%WWWDIR%%/apps-pkg/logreader/js/Components/LogUploader.js
8377
%%WWWDIR%%/apps/logreader/l10n/da.js
8377
%%WWWDIR%%/apps-pkg/logreader/js/Components/LogUploader.less
8378
%%WWWDIR%%/apps/logreader/l10n/da.json
8378
%%WWWDIR%%/apps-pkg/logreader/js/Components/ToggleEntry.js
8379
%%WWWDIR%%/apps/logreader/l10n/de.js
8379
%%WWWDIR%%/apps-pkg/logreader/js/Components/ToggleEntry.less
8380
%%WWWDIR%%/apps/logreader/l10n/de.json
8380
%%WWWDIR%%/apps-pkg/logreader/js/Components/TraceLine.js
8381
%%WWWDIR%%/apps/logreader/l10n/de_DE.js
8381
%%WWWDIR%%/apps-pkg/logreader/js/Components/TraceLine.less
8382
%%WWWDIR%%/apps/logreader/l10n/de_DE.json
8382
%%WWWDIR%%/apps-pkg/logreader/js/DateFormatConverter.js
8383
%%WWWDIR%%/apps/logreader/l10n/el.js
8383
%%WWWDIR%%/apps-pkg/logreader/js/ExceptionParser.js
8384
%%WWWDIR%%/apps/logreader/l10n/el.json
8384
%%WWWDIR%%/apps-pkg/logreader/js/Providers/LogFile.js
8385
%%WWWDIR%%/apps/logreader/l10n/en_GB.js
8385
%%WWWDIR%%/apps-pkg/logreader/js/Providers/LogProvider.js
8386
%%WWWDIR%%/apps/logreader/l10n/en_GB.json
8386
%%WWWDIR%%/apps-pkg/logreader/js/Search.js
8387
%%WWWDIR%%/apps/logreader/l10n/es.js
8387
%%WWWDIR%%/apps-pkg/logreader/js/index.js
8388
%%WWWDIR%%/apps/logreader/l10n/es.json
8388
%%WWWDIR%%/apps-pkg/logreader/js/unserialize.js
8389
%%WWWDIR%%/apps/logreader/l10n/es_419.js
8389
%%WWWDIR%%/apps-pkg/logreader/l10n/.tx/config
8390
%%WWWDIR%%/apps/logreader/l10n/es_419.json
8390
%%WWWDIR%%/apps-pkg/logreader/l10n/ast.js
8391
%%WWWDIR%%/apps/logreader/l10n/es_CL.js
8391
%%WWWDIR%%/apps-pkg/logreader/l10n/ast.json
8392
%%WWWDIR%%/apps/logreader/l10n/es_CL.json
8392
%%WWWDIR%%/apps-pkg/logreader/l10n/ca.js
8393
%%WWWDIR%%/apps/logreader/l10n/es_CO.js
8393
%%WWWDIR%%/apps-pkg/logreader/l10n/ca.json
8394
%%WWWDIR%%/apps/logreader/l10n/es_CO.json
8394
%%WWWDIR%%/apps-pkg/logreader/l10n/cs.js
8395
%%WWWDIR%%/apps/logreader/l10n/es_CR.js
8395
%%WWWDIR%%/apps-pkg/logreader/l10n/cs.json
8396
%%WWWDIR%%/apps/logreader/l10n/es_CR.json
8396
%%WWWDIR%%/apps-pkg/logreader/l10n/da.js
8397
%%WWWDIR%%/apps/logreader/l10n/es_DO.js
8397
%%WWWDIR%%/apps-pkg/logreader/l10n/da.json
8398
%%WWWDIR%%/apps/logreader/l10n/es_DO.json
8398
%%WWWDIR%%/apps-pkg/logreader/l10n/de.js
8399
%%WWWDIR%%/apps/logreader/l10n/es_EC.js
8399
%%WWWDIR%%/apps-pkg/logreader/l10n/de.json
8400
%%WWWDIR%%/apps/logreader/l10n/es_EC.json
8400
%%WWWDIR%%/apps-pkg/logreader/l10n/de_DE.js
8401
%%WWWDIR%%/apps/logreader/l10n/es_GT.js
8401
%%WWWDIR%%/apps-pkg/logreader/l10n/de_DE.json
8402
%%WWWDIR%%/apps/logreader/l10n/es_GT.json
8402
%%WWWDIR%%/apps-pkg/logreader/l10n/el.js
8403
%%WWWDIR%%/apps/logreader/l10n/es_HN.js
8403
%%WWWDIR%%/apps-pkg/logreader/l10n/el.json
8404
%%WWWDIR%%/apps/logreader/l10n/es_HN.json
8404
%%WWWDIR%%/apps-pkg/logreader/l10n/en_GB.js
8405
%%WWWDIR%%/apps/logreader/l10n/es_MX.js
8405
%%WWWDIR%%/apps-pkg/logreader/l10n/en_GB.json
8406
%%WWWDIR%%/apps/logreader/l10n/es_MX.json
8406
%%WWWDIR%%/apps-pkg/logreader/l10n/es.js
8407
%%WWWDIR%%/apps/logreader/l10n/es_NI.js
8407
%%WWWDIR%%/apps-pkg/logreader/l10n/es.json
8408
%%WWWDIR%%/apps/logreader/l10n/es_NI.json
8408
%%WWWDIR%%/apps-pkg/logreader/l10n/es_419.js
8409
%%WWWDIR%%/apps/logreader/l10n/es_PA.js
8409
%%WWWDIR%%/apps-pkg/logreader/l10n/es_419.json
8410
%%WWWDIR%%/apps/logreader/l10n/es_PA.json
8410
%%WWWDIR%%/apps-pkg/logreader/l10n/es_CL.js
8411
%%WWWDIR%%/apps/logreader/l10n/es_PE.js
8411
%%WWWDIR%%/apps-pkg/logreader/l10n/es_CL.json
8412
%%WWWDIR%%/apps/logreader/l10n/es_PE.json
8412
%%WWWDIR%%/apps-pkg/logreader/l10n/es_CO.js
8413
%%WWWDIR%%/apps/logreader/l10n/es_PR.js
8413
%%WWWDIR%%/apps-pkg/logreader/l10n/es_CO.json
8414
%%WWWDIR%%/apps/logreader/l10n/es_PR.json
8414
%%WWWDIR%%/apps-pkg/logreader/l10n/es_CR.js
8415
%%WWWDIR%%/apps/logreader/l10n/es_PY.js
8415
%%WWWDIR%%/apps-pkg/logreader/l10n/es_CR.json
8416
%%WWWDIR%%/apps/logreader/l10n/es_PY.json
8416
%%WWWDIR%%/apps-pkg/logreader/l10n/es_DO.js
8417
%%WWWDIR%%/apps/logreader/l10n/es_SV.js
8417
%%WWWDIR%%/apps-pkg/logreader/l10n/es_DO.json
8418
%%WWWDIR%%/apps/logreader/l10n/es_SV.json
8418
%%WWWDIR%%/apps-pkg/logreader/l10n/es_EC.js
8419
%%WWWDIR%%/apps/logreader/l10n/es_UY.js
8419
%%WWWDIR%%/apps-pkg/logreader/l10n/es_EC.json
8420
%%WWWDIR%%/apps/logreader/l10n/es_UY.json
8420
%%WWWDIR%%/apps-pkg/logreader/l10n/es_GT.js
8421
%%WWWDIR%%/apps/logreader/l10n/et_EE.js
8421
%%WWWDIR%%/apps-pkg/logreader/l10n/es_GT.json
8422
%%WWWDIR%%/apps/logreader/l10n/et_EE.json
8422
%%WWWDIR%%/apps-pkg/logreader/l10n/es_HN.js
8423
%%WWWDIR%%/apps/logreader/l10n/eu.js
8423
%%WWWDIR%%/apps-pkg/logreader/l10n/es_HN.json
8424
%%WWWDIR%%/apps/logreader/l10n/eu.json
8424
%%WWWDIR%%/apps-pkg/logreader/l10n/es_MX.js
8425
%%WWWDIR%%/apps/logreader/l10n/fi.js
8425
%%WWWDIR%%/apps-pkg/logreader/l10n/es_MX.json
8426
%%WWWDIR%%/apps/logreader/l10n/fi.json
8426
%%WWWDIR%%/apps-pkg/logreader/l10n/es_NI.js
8427
%%WWWDIR%%/apps/logreader/l10n/fr.js
8427
%%WWWDIR%%/apps-pkg/logreader/l10n/es_NI.json
8428
%%WWWDIR%%/apps/logreader/l10n/fr.json
8428
%%WWWDIR%%/apps-pkg/logreader/l10n/es_PA.js
8429
%%WWWDIR%%/apps/logreader/l10n/hu.js
8429
%%WWWDIR%%/apps-pkg/logreader/l10n/es_PA.json
8430
%%WWWDIR%%/apps/logreader/l10n/hu.json
8430
%%WWWDIR%%/apps-pkg/logreader/l10n/es_PE.js
8431
%%WWWDIR%%/apps/logreader/l10n/is.js
8431
%%WWWDIR%%/apps-pkg/logreader/l10n/es_PE.json
8432
%%WWWDIR%%/apps/logreader/l10n/is.json
8432
%%WWWDIR%%/apps-pkg/logreader/l10n/es_PR.js
8433
%%WWWDIR%%/apps/logreader/l10n/it.js
8433
%%WWWDIR%%/apps-pkg/logreader/l10n/es_PR.json
8434
%%WWWDIR%%/apps/logreader/l10n/it.json
8434
%%WWWDIR%%/apps-pkg/logreader/l10n/es_PY.js
8435
%%WWWDIR%%/apps/logreader/l10n/ja.js
8435
%%WWWDIR%%/apps-pkg/logreader/l10n/es_PY.json
8436
%%WWWDIR%%/apps/logreader/l10n/ja.json
8436
%%WWWDIR%%/apps-pkg/logreader/l10n/es_SV.js
8437
%%WWWDIR%%/apps/logreader/l10n/ka_GE.js
8437
%%WWWDIR%%/apps-pkg/logreader/l10n/es_SV.json
8438
%%WWWDIR%%/apps/logreader/l10n/ka_GE.json
8438
%%WWWDIR%%/apps-pkg/logreader/l10n/es_UY.js
8439
%%WWWDIR%%/apps/logreader/l10n/ko.js
8439
%%WWWDIR%%/apps-pkg/logreader/l10n/es_UY.json
8440
%%WWWDIR%%/apps/logreader/l10n/ko.json
8440
%%WWWDIR%%/apps-pkg/logreader/l10n/et_EE.js
8441
%%WWWDIR%%/apps/logreader/l10n/lt_LT.js
8441
%%WWWDIR%%/apps-pkg/logreader/l10n/et_EE.json
8442
%%WWWDIR%%/apps/logreader/l10n/lt_LT.json
8442
%%WWWDIR%%/apps-pkg/logreader/l10n/eu.js
8443
%%WWWDIR%%/apps/logreader/l10n/lv.js
8443
%%WWWDIR%%/apps-pkg/logreader/l10n/eu.json
8444
%%WWWDIR%%/apps/logreader/l10n/lv.json
8444
%%WWWDIR%%/apps-pkg/logreader/l10n/fi.js
8445
%%WWWDIR%%/apps/logreader/l10n/nb.js
8445
%%WWWDIR%%/apps-pkg/logreader/l10n/fi.json
8446
%%WWWDIR%%/apps/logreader/l10n/nb.json
8446
%%WWWDIR%%/apps-pkg/logreader/l10n/fr.js
8447
%%WWWDIR%%/apps/logreader/l10n/nl.js
8447
%%WWWDIR%%/apps-pkg/logreader/l10n/fr.json
8448
%%WWWDIR%%/apps/logreader/l10n/nl.json
8448
%%WWWDIR%%/apps-pkg/logreader/l10n/hu.js
8449
%%WWWDIR%%/apps/logreader/l10n/pl.js
8449
%%WWWDIR%%/apps-pkg/logreader/l10n/hu.json
8450
%%WWWDIR%%/apps/logreader/l10n/pl.json
8450
%%WWWDIR%%/apps-pkg/logreader/l10n/is.js
8451
%%WWWDIR%%/apps/logreader/l10n/pt_BR.js
8451
%%WWWDIR%%/apps-pkg/logreader/l10n/is.json
8452
%%WWWDIR%%/apps/logreader/l10n/pt_BR.json
8452
%%WWWDIR%%/apps-pkg/logreader/l10n/it.js
8453
%%WWWDIR%%/apps/logreader/l10n/ru.js
8453
%%WWWDIR%%/apps-pkg/logreader/l10n/it.json
8454
%%WWWDIR%%/apps/logreader/l10n/ru.json
8454
%%WWWDIR%%/apps-pkg/logreader/l10n/ja.js
8455
%%WWWDIR%%/apps/logreader/l10n/sk.js
8455
%%WWWDIR%%/apps-pkg/logreader/l10n/ja.json
8456
%%WWWDIR%%/apps/logreader/l10n/sk.json
8456
%%WWWDIR%%/apps-pkg/logreader/l10n/ka_GE.js
8457
%%WWWDIR%%/apps/logreader/l10n/sq.js
8457
%%WWWDIR%%/apps-pkg/logreader/l10n/ka_GE.json
8458
%%WWWDIR%%/apps/logreader/l10n/sq.json
8458
%%WWWDIR%%/apps-pkg/logreader/l10n/ko.js
8459
%%WWWDIR%%/apps/logreader/l10n/sr.js
8459
%%WWWDIR%%/apps-pkg/logreader/l10n/ko.json
8460
%%WWWDIR%%/apps/logreader/l10n/sr.json
8460
%%WWWDIR%%/apps-pkg/logreader/l10n/lt_LT.js
8461
%%WWWDIR%%/apps/logreader/l10n/sv.js
8461
%%WWWDIR%%/apps-pkg/logreader/l10n/lt_LT.json
8462
%%WWWDIR%%/apps/logreader/l10n/sv.json
8462
%%WWWDIR%%/apps-pkg/logreader/l10n/lv.js
8463
%%WWWDIR%%/apps/logreader/l10n/tr.js
8463
%%WWWDIR%%/apps-pkg/logreader/l10n/lv.json
8464
%%WWWDIR%%/apps/logreader/l10n/tr.json
8464
%%WWWDIR%%/apps-pkg/logreader/l10n/nb.js
8465
%%WWWDIR%%/apps/logreader/l10n/zh_CN.js
8465
%%WWWDIR%%/apps-pkg/logreader/l10n/nb.json
8466
%%WWWDIR%%/apps/logreader/l10n/zh_CN.json
8466
%%WWWDIR%%/apps-pkg/logreader/l10n/nl.js
8467
%%WWWDIR%%/apps/logreader/l10n/zh_TW.js
8467
%%WWWDIR%%/apps-pkg/logreader/l10n/nl.json
8468
%%WWWDIR%%/apps/logreader/l10n/zh_TW.json
8468
%%WWWDIR%%/apps-pkg/logreader/l10n/pl.js
8469
%%WWWDIR%%/apps/logreader/lib/Controller/LogController.php
8469
%%WWWDIR%%/apps-pkg/logreader/l10n/pl.json
8470
%%WWWDIR%%/apps/logreader/lib/Controller/PageController.php
8470
%%WWWDIR%%/apps-pkg/logreader/l10n/pt_BR.js
8471
%%WWWDIR%%/apps/logreader/lib/Log/LogIterator.php
8471
%%WWWDIR%%/apps-pkg/logreader/l10n/pt_BR.json
8472
%%WWWDIR%%/apps/logreader/lib/Log/SearchFilter.php
8472
%%WWWDIR%%/apps-pkg/logreader/l10n/ru.js
8473
%%WWWDIR%%/apps/logreader/lib/Settings/Admin.php
8473
%%WWWDIR%%/apps-pkg/logreader/l10n/ru.json
8474
%%WWWDIR%%/apps/logreader/lib/Settings/Section.php
8474
%%WWWDIR%%/apps-pkg/logreader/l10n/sk.js
8475
%%WWWDIR%%/apps/logreader/package.json
8475
%%WWWDIR%%/apps-pkg/logreader/l10n/sk.json
8476
%%WWWDIR%%/apps/logreader/screenshots/reader.png
8476
%%WWWDIR%%/apps-pkg/logreader/l10n/sq.js
8477
%%WWWDIR%%/apps/logreader/templates/index.php
8477
%%WWWDIR%%/apps-pkg/logreader/l10n/sq.json
8478
%%WWWDIR%%/apps/logreader/webpack/dev.config.js
8478
%%WWWDIR%%/apps-pkg/logreader/l10n/sr.js
8479
%%WWWDIR%%/apps/logreader/webpack/prod.config.js
8479
%%WWWDIR%%/apps-pkg/logreader/l10n/sr.json
8480
%%WWWDIR%%/apps/logreader/webpack/utils/notifyStats.js
8480
%%WWWDIR%%/apps-pkg/logreader/l10n/sv.js
8481
%%WWWDIR%%/apps/logreader/webpack/utils/writeStats.js
8481
%%WWWDIR%%/apps-pkg/logreader/l10n/sv.json
8482
%%WWWDIR%%/apps/logreader/webpack/webpack-dev-server.js
8482
%%WWWDIR%%/apps-pkg/logreader/l10n/tr.js
8483
%%WWWDIR%%/apps/lookup_server_connector/appinfo/app.php
8483
%%WWWDIR%%/apps-pkg/logreader/l10n/tr.json
8484
%%WWWDIR%%/apps/lookup_server_connector/appinfo/info.xml
8484
%%WWWDIR%%/apps-pkg/logreader/l10n/zh_CN.js
8485
%%WWWDIR%%/apps/lookup_server_connector/appinfo/signature.json
8485
%%WWWDIR%%/apps-pkg/logreader/l10n/zh_CN.json
8486
%%WWWDIR%%/apps/lookup_server_connector/composer/autoload.php
8486
%%WWWDIR%%/apps-pkg/logreader/l10n/zh_TW.js
8487
%%WWWDIR%%/apps/lookup_server_connector/composer/composer.json
8487
%%WWWDIR%%/apps-pkg/logreader/l10n/zh_TW.json
8488
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/ClassLoader.php
8488
%%WWWDIR%%/apps-pkg/logreader/lib/Controller/LogController.php
8489
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/LICENSE
8489
%%WWWDIR%%/apps-pkg/logreader/lib/Controller/PageController.php
8490
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_classmap.php
8490
%%WWWDIR%%/apps-pkg/logreader/lib/Log/LogIterator.php
8491
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_namespaces.php
8491
%%WWWDIR%%/apps-pkg/logreader/lib/Log/SearchFilter.php
8492
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_psr4.php
8492
%%WWWDIR%%/apps-pkg/logreader/lib/Settings/Admin.php
8493
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_real.php
8493
%%WWWDIR%%/apps-pkg/logreader/lib/Settings/Section.php
8494
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_static.php
8494
%%WWWDIR%%/apps-pkg/logreader/package.json
8495
%%WWWDIR%%/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
8495
%%WWWDIR%%/apps-pkg/logreader/screenshots/reader.png
8496
%%WWWDIR%%/apps/lookup_server_connector/lib/UpdateLookupServer.php
8496
%%WWWDIR%%/apps-pkg/logreader/templates/index.php
8497
%%WWWDIR%%/apps/nextcloud_announcements/.gitattributes
8497
%%WWWDIR%%/apps-pkg/logreader/webpack/dev.config.js
8498
%%WWWDIR%%/apps/nextcloud_announcements/.github/contributing.md
8498
%%WWWDIR%%/apps-pkg/logreader/webpack/prod.config.js
8499
%%WWWDIR%%/apps/nextcloud_announcements/.github/issue_template.md
8499
%%WWWDIR%%/apps-pkg/logreader/webpack/utils/notifyStats.js
8500
%%WWWDIR%%/apps/nextcloud_announcements/COPYING
8500
%%WWWDIR%%/apps-pkg/logreader/webpack/utils/writeStats.js
8501
%%WWWDIR%%/apps/nextcloud_announcements/appinfo/app.php
8501
%%WWWDIR%%/apps-pkg/logreader/webpack/webpack-dev-server.js
8502
%%WWWDIR%%/apps/nextcloud_announcements/appinfo/certificate.crt
8502
%%WWWDIR%%/apps-pkg/lookup_server_connector/appinfo/app.php
8503
%%WWWDIR%%/apps/nextcloud_announcements/appinfo/info.xml
8503
%%WWWDIR%%/apps-pkg/lookup_server_connector/appinfo/info.xml
8504
%%WWWDIR%%/apps/nextcloud_announcements/appinfo/signature.json
8504
%%WWWDIR%%/apps-pkg/lookup_server_connector/appinfo/signature.json
8505
%%WWWDIR%%/apps/nextcloud_announcements/img/app-dark.svg
8505
%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/autoload.php
8506
%%WWWDIR%%/apps/nextcloud_announcements/img/app.svg
8506
%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer.json
8507
%%WWWDIR%%/apps/nextcloud_announcements/js/admin.js
8507
%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer/ClassLoader.php
8508
%%WWWDIR%%/apps/nextcloud_announcements/l10n/.tx/config
8508
%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer/LICENSE
8509
%%WWWDIR%%/apps/nextcloud_announcements/l10n/af.js
8509
%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer/autoload_classmap.php
8510
%%WWWDIR%%/apps/nextcloud_announcements/l10n/af.json
8510
%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer/autoload_namespaces.php
8511
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ar.js
8511
%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer/autoload_psr4.php
8512
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ar.json
8512
%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer/autoload_real.php
8513
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ast.js
8513
%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer/autoload_static.php
8514
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ast.json
8514
%%WWWDIR%%/apps-pkg/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
8515
%%WWWDIR%%/apps/nextcloud_announcements/l10n/bg.js
8515
%%WWWDIR%%/apps-pkg/lookup_server_connector/lib/UpdateLookupServer.php
8516
%%WWWDIR%%/apps/nextcloud_announcements/l10n/bg.json
8516
%%WWWDIR%%/apps-pkg/nextcloud_announcements/.gitattributes
8517
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ca.js
8517
%%WWWDIR%%/apps-pkg/nextcloud_announcements/.github/contributing.md
8518
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ca.json
8518
%%WWWDIR%%/apps-pkg/nextcloud_announcements/.github/issue_template.md
8519
%%WWWDIR%%/apps/nextcloud_announcements/l10n/cs.js
8519
%%WWWDIR%%/apps-pkg/nextcloud_announcements/COPYING
8520
%%WWWDIR%%/apps/nextcloud_announcements/l10n/cs.json
8520
%%WWWDIR%%/apps-pkg/nextcloud_announcements/appinfo/app.php
8521
%%WWWDIR%%/apps/nextcloud_announcements/l10n/da.js
8521
%%WWWDIR%%/apps-pkg/nextcloud_announcements/appinfo/certificate.crt
8522
%%WWWDIR%%/apps/nextcloud_announcements/l10n/da.json
8522
%%WWWDIR%%/apps-pkg/nextcloud_announcements/appinfo/info.xml
8523
%%WWWDIR%%/apps/nextcloud_announcements/l10n/de.js
8523
%%WWWDIR%%/apps-pkg/nextcloud_announcements/appinfo/signature.json
8524
%%WWWDIR%%/apps/nextcloud_announcements/l10n/de.json
8524
%%WWWDIR%%/apps-pkg/nextcloud_announcements/img/app-dark.svg
8525
%%WWWDIR%%/apps/nextcloud_announcements/l10n/de_DE.js
8525
%%WWWDIR%%/apps-pkg/nextcloud_announcements/img/app.svg
8526
%%WWWDIR%%/apps/nextcloud_announcements/l10n/de_DE.json
8526
%%WWWDIR%%/apps-pkg/nextcloud_announcements/js/admin.js
8527
%%WWWDIR%%/apps/nextcloud_announcements/l10n/el.js
8527
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/.tx/config
8528
%%WWWDIR%%/apps/nextcloud_announcements/l10n/el.json
8528
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/af.js
8529
%%WWWDIR%%/apps/nextcloud_announcements/l10n/en_GB.js
8529
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/af.json
8530
%%WWWDIR%%/apps/nextcloud_announcements/l10n/en_GB.json
8530
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ar.js
8531
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es.js
8531
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ar.json
8532
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es.json
8532
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ast.js
8533
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_419.js
8533
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ast.json
8534
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_419.json
8534
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/bg.js
8535
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_AR.js
8535
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/bg.json
8536
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_AR.json
8536
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ca.js
8537
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_CL.js
8537
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ca.json
8538
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_CL.json
8538
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/cs.js
8539
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_CO.js
8539
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/cs.json
8540
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_CO.json
8540
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/da.js
8541
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_CR.js
8541
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/da.json
8542
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_CR.json
8542
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/de.js
8543
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_DO.js
8543
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/de.json
8544
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_DO.json
8544
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/de_DE.js
8545
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_EC.js
8545
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/de_DE.json
8546
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_EC.json
8546
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/el.js
8547
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_GT.js
8547
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/el.json
8548
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_GT.json
8548
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/en_GB.js
8549
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_HN.js
8549
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/en_GB.json
8550
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_HN.json
8550
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es.js
8551
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_MX.js
8551
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es.json
8552
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_MX.json
8552
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_419.js
8553
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_NI.js
8553
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_419.json
8554
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_NI.json
8554
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_AR.js
8555
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PA.js
8555
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_AR.json
8556
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PA.json
8556
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_CL.js
8557
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PE.js
8557
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_CL.json
8558
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PE.json
8558
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_CO.js
8559
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PR.js
8559
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_CO.json
8560
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PR.json
8560
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_CR.js
8561
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PY.js
8561
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_CR.json
8562
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PY.json
8562
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_DO.js
8563
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_SV.js
8563
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_DO.json
8564
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_SV.json
8564
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_EC.js
8565
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_UY.js
8565
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_EC.json
8566
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_UY.json
8566
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_GT.js
8567
%%WWWDIR%%/apps/nextcloud_announcements/l10n/et_EE.js
8567
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_GT.json
8568
%%WWWDIR%%/apps/nextcloud_announcements/l10n/et_EE.json
8568
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_HN.js
8569
%%WWWDIR%%/apps/nextcloud_announcements/l10n/eu.js
8569
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_HN.json
8570
%%WWWDIR%%/apps/nextcloud_announcements/l10n/eu.json
8570
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_MX.js
8571
%%WWWDIR%%/apps/nextcloud_announcements/l10n/fi.js
8571
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_MX.json
8572
%%WWWDIR%%/apps/nextcloud_announcements/l10n/fi.json
8572
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_NI.js
8573
%%WWWDIR%%/apps/nextcloud_announcements/l10n/fr.js
8573
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_NI.json
8574
%%WWWDIR%%/apps/nextcloud_announcements/l10n/fr.json
8574
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PA.js
8575
%%WWWDIR%%/apps/nextcloud_announcements/l10n/gl.js
8575
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PA.json
8576
%%WWWDIR%%/apps/nextcloud_announcements/l10n/gl.json
8576
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PE.js
8577
%%WWWDIR%%/apps/nextcloud_announcements/l10n/hu.js
8577
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PE.json
8578
%%WWWDIR%%/apps/nextcloud_announcements/l10n/hu.json
8578
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PR.js
8579
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ia.js
8579
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PR.json
8580
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ia.json
8580
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PY.js
8581
%%WWWDIR%%/apps/nextcloud_announcements/l10n/id.js
8581
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PY.json
8582
%%WWWDIR%%/apps/nextcloud_announcements/l10n/id.json
8582
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_SV.js
8583
%%WWWDIR%%/apps/nextcloud_announcements/l10n/is.js
8583
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_SV.json
8584
%%WWWDIR%%/apps/nextcloud_announcements/l10n/is.json
8584
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_UY.js
8585
%%WWWDIR%%/apps/nextcloud_announcements/l10n/it.js
8585
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_UY.json
8586
%%WWWDIR%%/apps/nextcloud_announcements/l10n/it.json
8586
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/et_EE.js
8587
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ja.js
8587
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/et_EE.json
8588
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ja.json
8588
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/eu.js
8589
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ka_GE.js
8589
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/eu.json
8590
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ka_GE.json
8590
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/fi.js
8591
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ko.js
8591
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/fi.json
8592
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ko.json
8592
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/fr.js
8593
%%WWWDIR%%/apps/nextcloud_announcements/l10n/lt_LT.js
8593
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/fr.json
8594
%%WWWDIR%%/apps/nextcloud_announcements/l10n/lt_LT.json
8594
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/gl.js
8595
%%WWWDIR%%/apps/nextcloud_announcements/l10n/lv.js
8595
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/gl.json
8596
%%WWWDIR%%/apps/nextcloud_announcements/l10n/lv.json
8596
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/hu.js
8597
%%WWWDIR%%/apps/nextcloud_announcements/l10n/nb.js
8597
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/hu.json
8598
%%WWWDIR%%/apps/nextcloud_announcements/l10n/nb.json
8598
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ia.js
8599
%%WWWDIR%%/apps/nextcloud_announcements/l10n/nl.js
8599
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ia.json
8600
%%WWWDIR%%/apps/nextcloud_announcements/l10n/nl.json
8600
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/id.js
8601
%%WWWDIR%%/apps/nextcloud_announcements/l10n/pl.js
8601
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/id.json
8602
%%WWWDIR%%/apps/nextcloud_announcements/l10n/pl.json
8602
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/is.js
8603
%%WWWDIR%%/apps/nextcloud_announcements/l10n/pt_BR.js
8603
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/is.json
8604
%%WWWDIR%%/apps/nextcloud_announcements/l10n/pt_BR.json
8604
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/it.js
8605
%%WWWDIR%%/apps/nextcloud_announcements/l10n/pt_PT.js
8605
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/it.json
8606
%%WWWDIR%%/apps/nextcloud_announcements/l10n/pt_PT.json
8606
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ja.js
8607
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ro.js
8607
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ja.json
8608
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ro.json
8608
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ka_GE.js
8609
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ru.js
8609
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ka_GE.json
8610
%%WWWDIR%%/apps/nextcloud_announcements/l10n/ru.json
8610
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ko.js
8611
%%WWWDIR%%/apps/nextcloud_announcements/l10n/sk.js
8611
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ko.json
8612
%%WWWDIR%%/apps/nextcloud_announcements/l10n/sk.json
8612
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/lt_LT.js
8613
%%WWWDIR%%/apps/nextcloud_announcements/l10n/sl.js
8613
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/lt_LT.json
8614
%%WWWDIR%%/apps/nextcloud_announcements/l10n/sl.json
8614
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/lv.js
8615
%%WWWDIR%%/apps/nextcloud_announcements/l10n/sq.js
8615
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/lv.json
8616
%%WWWDIR%%/apps/nextcloud_announcements/l10n/sq.json
8616
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/nb.js
8617
%%WWWDIR%%/apps/nextcloud_announcements/l10n/sr.js
8617
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/nb.json
8618
%%WWWDIR%%/apps/nextcloud_announcements/l10n/sr.json
8618
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/nl.js
8619
%%WWWDIR%%/apps/nextcloud_announcements/l10n/sv.js
8619
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/nl.json
8620
%%WWWDIR%%/apps/nextcloud_announcements/l10n/sv.json
8620
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/pl.js
8621
%%WWWDIR%%/apps/nextcloud_announcements/l10n/tr.js
8621
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/pl.json
8622
%%WWWDIR%%/apps/nextcloud_announcements/l10n/tr.json
8622
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/pt_BR.js
8623
%%WWWDIR%%/apps/nextcloud_announcements/l10n/vi.js
8623
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/pt_BR.json
8624
%%WWWDIR%%/apps/nextcloud_announcements/l10n/vi.json
8624
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/pt_PT.js
8625
%%WWWDIR%%/apps/nextcloud_announcements/l10n/zh_CN.js
8625
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/pt_PT.json
8626
%%WWWDIR%%/apps/nextcloud_announcements/l10n/zh_CN.json
8626
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ro.js
8627
%%WWWDIR%%/apps/nextcloud_announcements/l10n/zh_TW.js
8627
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ro.json
8628
%%WWWDIR%%/apps/nextcloud_announcements/l10n/zh_TW.json
8628
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ru.js
8629
%%WWWDIR%%/apps/nextcloud_announcements/lib/AppInfo/Application.php
8629
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ru.json
8630
%%WWWDIR%%/apps/nextcloud_announcements/lib/Cron/Crawler.php
8630
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sk.js
8631
%%WWWDIR%%/apps/nextcloud_announcements/lib/Notification/Notifier.php
8631
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sk.json
8632
%%WWWDIR%%/apps/nextcloud_announcements/lib/Settings/Admin.php
8632
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sl.js
8633
%%WWWDIR%%/apps/nextcloud_announcements/templates/admin.php
8633
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sl.json
8634
%%WWWDIR%%/apps/notifications/COPYING
8634
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sq.js
8635
%%WWWDIR%%/apps/notifications/appinfo/app.php
8635
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sq.json
8636
%%WWWDIR%%/apps/notifications/appinfo/database.xml
8636
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sr.js
8637
%%WWWDIR%%/apps/notifications/appinfo/info.xml
8637
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sr.json
8638
%%WWWDIR%%/apps/notifications/appinfo/routes.php
8638
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sv.js
8639
%%WWWDIR%%/apps/notifications/appinfo/signature.json
8639
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sv.json
8640
%%WWWDIR%%/apps/notifications/css/styles.css
8640
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/tr.js
8641
%%WWWDIR%%/apps/notifications/docs/notification-workflow.md
8641
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/tr.json
8642
%%WWWDIR%%/apps/notifications/docs/ocs-endpoint-v1.md
8642
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/vi.js
8643
%%WWWDIR%%/apps/notifications/docs/ocs-endpoint-v2.md
8643
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/vi.json
8644
%%WWWDIR%%/apps/notifications/docs/push-v2.md
8644
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/zh_CN.js
8645
%%WWWDIR%%/apps/notifications/docs/screenshot.png
8645
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/zh_CN.json
8646
%%WWWDIR%%/apps/notifications/img/notifications-new-dark.svg
8646
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/zh_TW.js
8647
%%WWWDIR%%/apps/notifications/img/notifications-new.png
8647
%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/zh_TW.json
8648
%%WWWDIR%%/apps/notifications/img/notifications-new.svg
8648
%%WWWDIR%%/apps-pkg/nextcloud_announcements/lib/AppInfo/Application.php
8649
%%WWWDIR%%/apps/notifications/img/notifications.png
8649
%%WWWDIR%%/apps-pkg/nextcloud_announcements/lib/Cron/Crawler.php
8650
%%WWWDIR%%/apps/notifications/img/notifications.svg
8650
%%WWWDIR%%/apps-pkg/nextcloud_announcements/lib/Notification/Notifier.php
8651
%%WWWDIR%%/apps/notifications/js/app.js
8651
%%WWWDIR%%/apps-pkg/nextcloud_announcements/lib/Settings/Admin.php
8652
%%WWWDIR%%/apps/notifications/js/merged.json
8652
%%WWWDIR%%/apps-pkg/nextcloud_announcements/templates/admin.php
8653
%%WWWDIR%%/apps/notifications/js/notification.js
8653
%%WWWDIR%%/apps-pkg/notifications/COPYING
8654
%%WWWDIR%%/apps/notifications/js/richObjectStringParser.js
8654
%%WWWDIR%%/apps-pkg/notifications/appinfo/app.php
8655
%%WWWDIR%%/apps/notifications/l10n/.tx/config
8655
%%WWWDIR%%/apps-pkg/notifications/appinfo/database.xml
8656
%%WWWDIR%%/apps/notifications/l10n/af.js
8656
%%WWWDIR%%/apps-pkg/notifications/appinfo/info.xml
8657
%%WWWDIR%%/apps/notifications/l10n/af.json
8657
%%WWWDIR%%/apps-pkg/notifications/appinfo/routes.php
8658
%%WWWDIR%%/apps/notifications/l10n/ar.js
8658
%%WWWDIR%%/apps-pkg/notifications/appinfo/signature.json
8659
%%WWWDIR%%/apps/notifications/l10n/ar.json
8659
%%WWWDIR%%/apps-pkg/notifications/css/styles.css
8660
%%WWWDIR%%/apps/notifications/l10n/ast.js
8660
%%WWWDIR%%/apps-pkg/notifications/docs/notification-workflow.md
8661
%%WWWDIR%%/apps/notifications/l10n/ast.json
8661
%%WWWDIR%%/apps-pkg/notifications/docs/ocs-endpoint-v1.md
8662
%%WWWDIR%%/apps/notifications/l10n/bg.js
8662
%%WWWDIR%%/apps-pkg/notifications/docs/ocs-endpoint-v2.md
8663
%%WWWDIR%%/apps/notifications/l10n/bg.json
8663
%%WWWDIR%%/apps-pkg/notifications/docs/push-v2.md
8664
%%WWWDIR%%/apps/notifications/l10n/ca.js
8664
%%WWWDIR%%/apps-pkg/notifications/docs/screenshot.png
8665
%%WWWDIR%%/apps/notifications/l10n/ca.json
8665
%%WWWDIR%%/apps-pkg/notifications/img/notifications-new-dark.svg
8666
%%WWWDIR%%/apps/notifications/l10n/cs.js
8666
%%WWWDIR%%/apps-pkg/notifications/img/notifications-new.png
8667
%%WWWDIR%%/apps/notifications/l10n/cs.json
8667
%%WWWDIR%%/apps-pkg/notifications/img/notifications-new.svg
8668
%%WWWDIR%%/apps/notifications/l10n/da.js
8668
%%WWWDIR%%/apps-pkg/notifications/img/notifications.png
8669
%%WWWDIR%%/apps/notifications/l10n/da.json
8669
%%WWWDIR%%/apps-pkg/notifications/img/notifications.svg
8670
%%WWWDIR%%/apps/notifications/l10n/de.js
8670
%%WWWDIR%%/apps-pkg/notifications/js/app.js
8671
%%WWWDIR%%/apps/notifications/l10n/de.json
8671
%%WWWDIR%%/apps-pkg/notifications/js/merged.json
8672
%%WWWDIR%%/apps/notifications/l10n/de_DE.js
8672
%%WWWDIR%%/apps-pkg/notifications/js/notification.js
8673
%%WWWDIR%%/apps/notifications/l10n/de_DE.json
8673
%%WWWDIR%%/apps-pkg/notifications/js/richObjectStringParser.js
8674
%%WWWDIR%%/apps/notifications/l10n/el.js
8674
%%WWWDIR%%/apps-pkg/notifications/l10n/.tx/config
8675
%%WWWDIR%%/apps/notifications/l10n/el.json
8675
%%WWWDIR%%/apps-pkg/notifications/l10n/af.js
8676
%%WWWDIR%%/apps/notifications/l10n/en_GB.js
8676
%%WWWDIR%%/apps-pkg/notifications/l10n/af.json
8677
%%WWWDIR%%/apps/notifications/l10n/en_GB.json
8677
%%WWWDIR%%/apps-pkg/notifications/l10n/ar.js
8678
%%WWWDIR%%/apps/notifications/l10n/es.js
8678
%%WWWDIR%%/apps-pkg/notifications/l10n/ar.json
8679
%%WWWDIR%%/apps/notifications/l10n/es.json
8679
%%WWWDIR%%/apps-pkg/notifications/l10n/ast.js
8680
%%WWWDIR%%/apps/notifications/l10n/es_419.js
8680
%%WWWDIR%%/apps-pkg/notifications/l10n/ast.json
8681
%%WWWDIR%%/apps/notifications/l10n/es_419.json
8681
%%WWWDIR%%/apps-pkg/notifications/l10n/bg.js
8682
%%WWWDIR%%/apps/notifications/l10n/es_AR.js
8682
%%WWWDIR%%/apps-pkg/notifications/l10n/bg.json
8683
%%WWWDIR%%/apps/notifications/l10n/es_AR.json
8683
%%WWWDIR%%/apps-pkg/notifications/l10n/ca.js
8684
%%WWWDIR%%/apps/notifications/l10n/es_CL.js
8684
%%WWWDIR%%/apps-pkg/notifications/l10n/ca.json
8685
%%WWWDIR%%/apps/notifications/l10n/es_CL.json
8685
%%WWWDIR%%/apps-pkg/notifications/l10n/cs.js
8686
%%WWWDIR%%/apps/notifications/l10n/es_CO.js
8686
%%WWWDIR%%/apps-pkg/notifications/l10n/cs.json
8687
%%WWWDIR%%/apps/notifications/l10n/es_CO.json
8687
%%WWWDIR%%/apps-pkg/notifications/l10n/da.js
8688
%%WWWDIR%%/apps/notifications/l10n/es_CR.js
8688
%%WWWDIR%%/apps-pkg/notifications/l10n/da.json
8689
%%WWWDIR%%/apps/notifications/l10n/es_CR.json
8689
%%WWWDIR%%/apps-pkg/notifications/l10n/de.js
8690
%%WWWDIR%%/apps/notifications/l10n/es_DO.js
8690
%%WWWDIR%%/apps-pkg/notifications/l10n/de.json
8691
%%WWWDIR%%/apps/notifications/l10n/es_DO.json
8691
%%WWWDIR%%/apps-pkg/notifications/l10n/de_DE.js
8692
%%WWWDIR%%/apps/notifications/l10n/es_EC.js
8692
%%WWWDIR%%/apps-pkg/notifications/l10n/de_DE.json
8693
%%WWWDIR%%/apps/notifications/l10n/es_EC.json
8693
%%WWWDIR%%/apps-pkg/notifications/l10n/el.js
8694
%%WWWDIR%%/apps/notifications/l10n/es_GT.js
8694
%%WWWDIR%%/apps-pkg/notifications/l10n/el.json
8695
%%WWWDIR%%/apps/notifications/l10n/es_GT.json
8695
%%WWWDIR%%/apps-pkg/notifications/l10n/en_GB.js
8696
%%WWWDIR%%/apps/notifications/l10n/es_HN.js
8696
%%WWWDIR%%/apps-pkg/notifications/l10n/en_GB.json
8697
%%WWWDIR%%/apps/notifications/l10n/es_HN.json
8697
%%WWWDIR%%/apps-pkg/notifications/l10n/es.js
8698
%%WWWDIR%%/apps/notifications/l10n/es_MX.js
8698
%%WWWDIR%%/apps-pkg/notifications/l10n/es.json
8699
%%WWWDIR%%/apps/notifications/l10n/es_MX.json
8699
%%WWWDIR%%/apps-pkg/notifications/l10n/es_419.js
8700
%%WWWDIR%%/apps/notifications/l10n/es_NI.js
8700
%%WWWDIR%%/apps-pkg/notifications/l10n/es_419.json
8701
%%WWWDIR%%/apps/notifications/l10n/es_NI.json
8701
%%WWWDIR%%/apps-pkg/notifications/l10n/es_AR.js
8702
%%WWWDIR%%/apps/notifications/l10n/es_PA.js
8702
%%WWWDIR%%/apps-pkg/notifications/l10n/es_AR.json
8703
%%WWWDIR%%/apps/notifications/l10n/es_PA.json
8703
%%WWWDIR%%/apps-pkg/notifications/l10n/es_CL.js
8704
%%WWWDIR%%/apps/notifications/l10n/es_PE.js
8704
%%WWWDIR%%/apps-pkg/notifications/l10n/es_CL.json
8705
%%WWWDIR%%/apps/notifications/l10n/es_PE.json
8705
%%WWWDIR%%/apps-pkg/notifications/l10n/es_CO.js
8706
%%WWWDIR%%/apps/notifications/l10n/es_PR.js
8706
%%WWWDIR%%/apps-pkg/notifications/l10n/es_CO.json
8707
%%WWWDIR%%/apps/notifications/l10n/es_PR.json
8707
%%WWWDIR%%/apps-pkg/notifications/l10n/es_CR.js
8708
%%WWWDIR%%/apps/notifications/l10n/es_PY.js
8708
%%WWWDIR%%/apps-pkg/notifications/l10n/es_CR.json
8709
%%WWWDIR%%/apps/notifications/l10n/es_PY.json
8709
%%WWWDIR%%/apps-pkg/notifications/l10n/es_DO.js
8710
%%WWWDIR%%/apps/notifications/l10n/es_SV.js
8710
%%WWWDIR%%/apps-pkg/notifications/l10n/es_DO.json
8711
%%WWWDIR%%/apps/notifications/l10n/es_SV.json
8711
%%WWWDIR%%/apps-pkg/notifications/l10n/es_EC.js
8712
%%WWWDIR%%/apps/notifications/l10n/es_UY.js
8712
%%WWWDIR%%/apps-pkg/notifications/l10n/es_EC.json
8713
%%WWWDIR%%/apps/notifications/l10n/es_UY.json
8713
%%WWWDIR%%/apps-pkg/notifications/l10n/es_GT.js
8714
%%WWWDIR%%/apps/notifications/l10n/et_EE.js
8714
%%WWWDIR%%/apps-pkg/notifications/l10n/es_GT.json
8715
%%WWWDIR%%/apps/notifications/l10n/et_EE.json
8715
%%WWWDIR%%/apps-pkg/notifications/l10n/es_HN.js
8716
%%WWWDIR%%/apps/notifications/l10n/eu.js
8716
%%WWWDIR%%/apps-pkg/notifications/l10n/es_HN.json
8717
%%WWWDIR%%/apps/notifications/l10n/eu.json
8717
%%WWWDIR%%/apps-pkg/notifications/l10n/es_MX.js
8718
%%WWWDIR%%/apps/notifications/l10n/fi.js
8718
%%WWWDIR%%/apps-pkg/notifications/l10n/es_MX.json
8719
%%WWWDIR%%/apps/notifications/l10n/fi.json
8719
%%WWWDIR%%/apps-pkg/notifications/l10n/es_NI.js
8720
%%WWWDIR%%/apps/notifications/l10n/fr.js
8720
%%WWWDIR%%/apps-pkg/notifications/l10n/es_NI.json
8721
%%WWWDIR%%/apps/notifications/l10n/fr.json
8721
%%WWWDIR%%/apps-pkg/notifications/l10n/es_PA.js
8722
%%WWWDIR%%/apps/notifications/l10n/gl.js
8722
%%WWWDIR%%/apps-pkg/notifications/l10n/es_PA.json
8723
%%WWWDIR%%/apps/notifications/l10n/gl.json
8723
%%WWWDIR%%/apps-pkg/notifications/l10n/es_PE.js
8724
%%WWWDIR%%/apps/notifications/l10n/hu.js
8724
%%WWWDIR%%/apps-pkg/notifications/l10n/es_PE.json
8725
%%WWWDIR%%/apps/notifications/l10n/hu.json
8725
%%WWWDIR%%/apps-pkg/notifications/l10n/es_PR.js
8726
%%WWWDIR%%/apps/notifications/l10n/ia.js
8726
%%WWWDIR%%/apps-pkg/notifications/l10n/es_PR.json
8727
%%WWWDIR%%/apps/notifications/l10n/ia.json
8727
%%WWWDIR%%/apps-pkg/notifications/l10n/es_PY.js
8728
%%WWWDIR%%/apps/notifications/l10n/id.js
8728
%%WWWDIR%%/apps-pkg/notifications/l10n/es_PY.json
8729
%%WWWDIR%%/apps/notifications/l10n/id.json
8729
%%WWWDIR%%/apps-pkg/notifications/l10n/es_SV.js
8730
%%WWWDIR%%/apps/notifications/l10n/is.js
8730
%%WWWDIR%%/apps-pkg/notifications/l10n/es_SV.json
8731
%%WWWDIR%%/apps/notifications/l10n/is.json
8731
%%WWWDIR%%/apps-pkg/notifications/l10n/es_UY.js
8732
%%WWWDIR%%/apps/notifications/l10n/it.js
8732
%%WWWDIR%%/apps-pkg/notifications/l10n/es_UY.json
8733
%%WWWDIR%%/apps/notifications/l10n/it.json
8733
%%WWWDIR%%/apps-pkg/notifications/l10n/et_EE.js
8734
%%WWWDIR%%/apps/notifications/l10n/ja.js
8734
%%WWWDIR%%/apps-pkg/notifications/l10n/et_EE.json
8735
%%WWWDIR%%/apps/notifications/l10n/ja.json
8735
%%WWWDIR%%/apps-pkg/notifications/l10n/eu.js
8736
%%WWWDIR%%/apps/notifications/l10n/ka_GE.js
8736
%%WWWDIR%%/apps-pkg/notifications/l10n/eu.json
8737
%%WWWDIR%%/apps/notifications/l10n/ka_GE.json
8737
%%WWWDIR%%/apps-pkg/notifications/l10n/fi.js
8738
%%WWWDIR%%/apps/notifications/l10n/ko.js
8738
%%WWWDIR%%/apps-pkg/notifications/l10n/fi.json
8739
%%WWWDIR%%/apps/notifications/l10n/ko.json
8739
%%WWWDIR%%/apps-pkg/notifications/l10n/fr.js
8740
%%WWWDIR%%/apps/notifications/l10n/lt_LT.js
8740
%%WWWDIR%%/apps-pkg/notifications/l10n/fr.json
8741
%%WWWDIR%%/apps/notifications/l10n/lt_LT.json
8741
%%WWWDIR%%/apps-pkg/notifications/l10n/gl.js
8742
%%WWWDIR%%/apps/notifications/l10n/lv.js
8742
%%WWWDIR%%/apps-pkg/notifications/l10n/gl.json
8743
%%WWWDIR%%/apps/notifications/l10n/lv.json
8743
%%WWWDIR%%/apps-pkg/notifications/l10n/hu.js
8744
%%WWWDIR%%/apps/notifications/l10n/mn.js
8744
%%WWWDIR%%/apps-pkg/notifications/l10n/hu.json
8745
%%WWWDIR%%/apps/notifications/l10n/mn.json
8745
%%WWWDIR%%/apps-pkg/notifications/l10n/ia.js
8746
%%WWWDIR%%/apps/notifications/l10n/nb.js
8746
%%WWWDIR%%/apps-pkg/notifications/l10n/ia.json
8747
%%WWWDIR%%/apps/notifications/l10n/nb.json
8747
%%WWWDIR%%/apps-pkg/notifications/l10n/id.js
8748
%%WWWDIR%%/apps/notifications/l10n/nl.js
8748
%%WWWDIR%%/apps-pkg/notifications/l10n/id.json
8749
%%WWWDIR%%/apps/notifications/l10n/nl.json
8749
%%WWWDIR%%/apps-pkg/notifications/l10n/is.js
8750
%%WWWDIR%%/apps/notifications/l10n/pl.js
8750
%%WWWDIR%%/apps-pkg/notifications/l10n/is.json
8751
%%WWWDIR%%/apps/notifications/l10n/pl.json
8751
%%WWWDIR%%/apps-pkg/notifications/l10n/it.js
8752
%%WWWDIR%%/apps/notifications/l10n/pt_BR.js
8752
%%WWWDIR%%/apps-pkg/notifications/l10n/it.json
8753
%%WWWDIR%%/apps/notifications/l10n/pt_BR.json
8753
%%WWWDIR%%/apps-pkg/notifications/l10n/ja.js
8754
%%WWWDIR%%/apps/notifications/l10n/pt_PT.js
8754
%%WWWDIR%%/apps-pkg/notifications/l10n/ja.json
8755
%%WWWDIR%%/apps/notifications/l10n/pt_PT.json
8755
%%WWWDIR%%/apps-pkg/notifications/l10n/ka_GE.js
8756
%%WWWDIR%%/apps/notifications/l10n/ro.js
8756
%%WWWDIR%%/apps-pkg/notifications/l10n/ka_GE.json
8757
%%WWWDIR%%/apps/notifications/l10n/ro.json
8757
%%WWWDIR%%/apps-pkg/notifications/l10n/ko.js
8758
%%WWWDIR%%/apps/notifications/l10n/ru.js
8758
%%WWWDIR%%/apps-pkg/notifications/l10n/ko.json
8759
%%WWWDIR%%/apps/notifications/l10n/ru.json
8759
%%WWWDIR%%/apps-pkg/notifications/l10n/lt_LT.js
8760
%%WWWDIR%%/apps/notifications/l10n/sk.js
8760
%%WWWDIR%%/apps-pkg/notifications/l10n/lt_LT.json
8761
%%WWWDIR%%/apps/notifications/l10n/sk.json
8761
%%WWWDIR%%/apps-pkg/notifications/l10n/lv.js
8762
%%WWWDIR%%/apps/notifications/l10n/sl.js
8762
%%WWWDIR%%/apps-pkg/notifications/l10n/lv.json
8763
%%WWWDIR%%/apps/notifications/l10n/sl.json
8763
%%WWWDIR%%/apps-pkg/notifications/l10n/mn.js
8764
%%WWWDIR%%/apps/notifications/l10n/sq.js
8764
%%WWWDIR%%/apps-pkg/notifications/l10n/mn.json
8765
%%WWWDIR%%/apps/notifications/l10n/sq.json
8765
%%WWWDIR%%/apps-pkg/notifications/l10n/nb.js
8766
%%WWWDIR%%/apps/notifications/l10n/sr.js
8766
%%WWWDIR%%/apps-pkg/notifications/l10n/nb.json
8767
%%WWWDIR%%/apps/notifications/l10n/sr.json
8767
%%WWWDIR%%/apps-pkg/notifications/l10n/nl.js
8768
%%WWWDIR%%/apps/notifications/l10n/sv.js
8768
%%WWWDIR%%/apps-pkg/notifications/l10n/nl.json
8769
%%WWWDIR%%/apps/notifications/l10n/sv.json
8769
%%WWWDIR%%/apps-pkg/notifications/l10n/pl.js
8770
%%WWWDIR%%/apps/notifications/l10n/tr.js
8770
%%WWWDIR%%/apps-pkg/notifications/l10n/pl.json
8771
%%WWWDIR%%/apps/notifications/l10n/tr.json
8771
%%WWWDIR%%/apps-pkg/notifications/l10n/pt_BR.js
8772
%%WWWDIR%%/apps/notifications/l10n/uk.js
8772
%%WWWDIR%%/apps-pkg/notifications/l10n/pt_BR.json
8773
%%WWWDIR%%/apps/notifications/l10n/uk.json
8773
%%WWWDIR%%/apps-pkg/notifications/l10n/pt_PT.js
8774
%%WWWDIR%%/apps/notifications/l10n/uz.js
8774
%%WWWDIR%%/apps-pkg/notifications/l10n/pt_PT.json
8775
%%WWWDIR%%/apps/notifications/l10n/uz.json
8775
%%WWWDIR%%/apps-pkg/notifications/l10n/ro.js
8776
%%WWWDIR%%/apps/notifications/l10n/vi.js
8776
%%WWWDIR%%/apps-pkg/notifications/l10n/ro.json
8777
%%WWWDIR%%/apps/notifications/l10n/vi.json
8777
%%WWWDIR%%/apps-pkg/notifications/l10n/ru.js
8778
%%WWWDIR%%/apps/notifications/l10n/zh_CN.js
8778
%%WWWDIR%%/apps-pkg/notifications/l10n/ru.json
8779
%%WWWDIR%%/apps/notifications/l10n/zh_CN.json
8779
%%WWWDIR%%/apps-pkg/notifications/l10n/sk.js
8780
%%WWWDIR%%/apps/notifications/l10n/zh_TW.js
8780
%%WWWDIR%%/apps-pkg/notifications/l10n/sk.json
8781
%%WWWDIR%%/apps/notifications/l10n/zh_TW.json
8781
%%WWWDIR%%/apps-pkg/notifications/l10n/sl.js
8782
%%WWWDIR%%/apps/notifications/lib/App.php
8782
%%WWWDIR%%/apps-pkg/notifications/l10n/sl.json
8783
%%WWWDIR%%/apps/notifications/lib/AppInfo/Application.php
8783
%%WWWDIR%%/apps-pkg/notifications/l10n/sq.js
8784
%%WWWDIR%%/apps/notifications/lib/Capabilities.php
8784
%%WWWDIR%%/apps-pkg/notifications/l10n/sq.json
8785
%%WWWDIR%%/apps/notifications/lib/Controller/EndpointController.php
8785
%%WWWDIR%%/apps-pkg/notifications/l10n/sr.js
8786
%%WWWDIR%%/apps/notifications/lib/Controller/PushController.php
8786
%%WWWDIR%%/apps-pkg/notifications/l10n/sr.json
8787
%%WWWDIR%%/apps/notifications/lib/Handler.php
8787
%%WWWDIR%%/apps-pkg/notifications/l10n/sv.js
8788
%%WWWDIR%%/apps/notifications/lib/Push.php
8788
%%WWWDIR%%/apps-pkg/notifications/l10n/sv.json
8789
%%WWWDIR%%/apps/oauth2/appinfo/database.xml
8789
%%WWWDIR%%/apps-pkg/notifications/l10n/tr.js
8790
%%WWWDIR%%/apps/oauth2/appinfo/info.xml
8790
%%WWWDIR%%/apps-pkg/notifications/l10n/tr.json
8791
%%WWWDIR%%/apps/oauth2/appinfo/routes.php
8791
%%WWWDIR%%/apps-pkg/notifications/l10n/uk.js
8792
%%WWWDIR%%/apps/oauth2/appinfo/signature.json
8792
%%WWWDIR%%/apps-pkg/notifications/l10n/uk.json
8793
%%WWWDIR%%/apps/oauth2/composer/autoload.php
8793
%%WWWDIR%%/apps-pkg/notifications/l10n/vi.js
8794
%%WWWDIR%%/apps/oauth2/composer/composer.json
8794
%%WWWDIR%%/apps-pkg/notifications/l10n/vi.json
8795
%%WWWDIR%%/apps/oauth2/composer/composer/ClassLoader.php
8795
%%WWWDIR%%/apps-pkg/notifications/l10n/zh_CN.js
8796
%%WWWDIR%%/apps/oauth2/composer/composer/LICENSE
8796
%%WWWDIR%%/apps-pkg/notifications/l10n/zh_CN.json
8797
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_classmap.php
8797
%%WWWDIR%%/apps-pkg/notifications/l10n/zh_TW.js
8798
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_namespaces.php
8798
%%WWWDIR%%/apps-pkg/notifications/l10n/zh_TW.json
8799
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_psr4.php
8799
%%WWWDIR%%/apps-pkg/notifications/lib/App.php
8800
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_real.php
8800
%%WWWDIR%%/apps-pkg/notifications/lib/AppInfo/Application.php
8801
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_static.php
8801
%%WWWDIR%%/apps-pkg/notifications/lib/Capabilities.php
8802
%%WWWDIR%%/apps/oauth2/css/setting-admin.css
8802
%%WWWDIR%%/apps-pkg/notifications/lib/Controller/EndpointController.php
8803
%%WWWDIR%%/apps/oauth2/js/setting-admin.js
8803
%%WWWDIR%%/apps-pkg/notifications/lib/Controller/PushController.php
8804
%%WWWDIR%%/apps/oauth2/l10n/.gitkeep
8804
%%WWWDIR%%/apps-pkg/notifications/lib/Handler.php
8805
%%WWWDIR%%/apps/oauth2/l10n/af.js
8805
%%WWWDIR%%/apps-pkg/notifications/lib/Push.php
8806
%%WWWDIR%%/apps/oauth2/l10n/af.json
8806
%%WWWDIR%%/apps-pkg/oauth2/appinfo/database.xml
8807
%%WWWDIR%%/apps/oauth2/l10n/ar.js
8807
%%WWWDIR%%/apps-pkg/oauth2/appinfo/info.xml
8808
%%WWWDIR%%/apps/oauth2/l10n/ar.json
8808
%%WWWDIR%%/apps-pkg/oauth2/appinfo/routes.php
8809
%%WWWDIR%%/apps/oauth2/l10n/ast.js
8809
%%WWWDIR%%/apps-pkg/oauth2/appinfo/signature.json
8810
%%WWWDIR%%/apps/oauth2/l10n/ast.json
8810
%%WWWDIR%%/apps-pkg/oauth2/composer/autoload.php
8811
%%WWWDIR%%/apps/oauth2/l10n/ca.js
8811
%%WWWDIR%%/apps-pkg/oauth2/composer/composer.json
8812
%%WWWDIR%%/apps/oauth2/l10n/ca.json
8812
%%WWWDIR%%/apps-pkg/oauth2/composer/composer/ClassLoader.php
8813
%%WWWDIR%%/apps/oauth2/l10n/cs.js
8813
%%WWWDIR%%/apps-pkg/oauth2/composer/composer/LICENSE
8814
%%WWWDIR%%/apps/oauth2/l10n/cs.json
8814
%%WWWDIR%%/apps-pkg/oauth2/composer/composer/autoload_classmap.php
8815
%%WWWDIR%%/apps/oauth2/l10n/da.js
8815
%%WWWDIR%%/apps-pkg/oauth2/composer/composer/autoload_namespaces.php
8816
%%WWWDIR%%/apps/oauth2/l10n/da.json
8816
%%WWWDIR%%/apps-pkg/oauth2/composer/composer/autoload_psr4.php
8817
%%WWWDIR%%/apps/oauth2/l10n/de.js
8817
%%WWWDIR%%/apps-pkg/oauth2/composer/composer/autoload_real.php
8818
%%WWWDIR%%/apps/oauth2/l10n/de.json
8818
%%WWWDIR%%/apps-pkg/oauth2/composer/composer/autoload_static.php
8819
%%WWWDIR%%/apps/oauth2/l10n/de_DE.js
8819
%%WWWDIR%%/apps-pkg/oauth2/css/setting-admin.css
8820
%%WWWDIR%%/apps/oauth2/l10n/de_DE.json
8820
%%WWWDIR%%/apps-pkg/oauth2/js/setting-admin.js
8821
%%WWWDIR%%/apps/oauth2/l10n/el.js
8821
%%WWWDIR%%/apps-pkg/oauth2/l10n/.gitkeep
8822
%%WWWDIR%%/apps/oauth2/l10n/el.json
8822
%%WWWDIR%%/apps-pkg/oauth2/l10n/af.js
8823
%%WWWDIR%%/apps/oauth2/l10n/en_GB.js
8823
%%WWWDIR%%/apps-pkg/oauth2/l10n/af.json
8824
%%WWWDIR%%/apps/oauth2/l10n/en_GB.json
8824
%%WWWDIR%%/apps-pkg/oauth2/l10n/ar.js
8825
%%WWWDIR%%/apps/oauth2/l10n/es.js
8825
%%WWWDIR%%/apps-pkg/oauth2/l10n/ar.json
8826
%%WWWDIR%%/apps/oauth2/l10n/es.json
8826
%%WWWDIR%%/apps-pkg/oauth2/l10n/ast.js
8827
%%WWWDIR%%/apps/oauth2/l10n/es_419.js
8827
%%WWWDIR%%/apps-pkg/oauth2/l10n/ast.json
8828
%%WWWDIR%%/apps/oauth2/l10n/es_419.json
8828
%%WWWDIR%%/apps-pkg/oauth2/l10n/ca.js
8829
%%WWWDIR%%/apps/oauth2/l10n/es_AR.js
8829
%%WWWDIR%%/apps-pkg/oauth2/l10n/ca.json
8830
%%WWWDIR%%/apps/oauth2/l10n/es_AR.json
8830
%%WWWDIR%%/apps-pkg/oauth2/l10n/cs.js
8831
%%WWWDIR%%/apps/oauth2/l10n/es_CL.js
8831
%%WWWDIR%%/apps-pkg/oauth2/l10n/cs.json
8832
%%WWWDIR%%/apps/oauth2/l10n/es_CL.json
8832
%%WWWDIR%%/apps-pkg/oauth2/l10n/da.js
8833
%%WWWDIR%%/apps/oauth2/l10n/es_CO.js
8833
%%WWWDIR%%/apps-pkg/oauth2/l10n/da.json
8834
%%WWWDIR%%/apps/oauth2/l10n/es_CO.json
8834
%%WWWDIR%%/apps-pkg/oauth2/l10n/de.js
8835
%%WWWDIR%%/apps/oauth2/l10n/es_CR.js
8835
%%WWWDIR%%/apps-pkg/oauth2/l10n/de.json
8836
%%WWWDIR%%/apps/oauth2/l10n/es_CR.json
8836
%%WWWDIR%%/apps-pkg/oauth2/l10n/de_DE.js
8837
%%WWWDIR%%/apps/oauth2/l10n/es_DO.js
8837
%%WWWDIR%%/apps-pkg/oauth2/l10n/de_DE.json
8838
%%WWWDIR%%/apps/oauth2/l10n/es_DO.json
8838
%%WWWDIR%%/apps-pkg/oauth2/l10n/el.js
8839
%%WWWDIR%%/apps/oauth2/l10n/es_EC.js
8839
%%WWWDIR%%/apps-pkg/oauth2/l10n/el.json
8840
%%WWWDIR%%/apps/oauth2/l10n/es_EC.json
8840
%%WWWDIR%%/apps-pkg/oauth2/l10n/en_GB.js
8841
%%WWWDIR%%/apps/oauth2/l10n/es_GT.js
8841
%%WWWDIR%%/apps-pkg/oauth2/l10n/en_GB.json
8842
%%WWWDIR%%/apps/oauth2/l10n/es_GT.json
8842
%%WWWDIR%%/apps-pkg/oauth2/l10n/es.js
8843
%%WWWDIR%%/apps/oauth2/l10n/es_HN.js
8843
%%WWWDIR%%/apps-pkg/oauth2/l10n/es.json
8844
%%WWWDIR%%/apps/oauth2/l10n/es_HN.json
8844
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_419.js
8845
%%WWWDIR%%/apps/oauth2/l10n/es_MX.js
8845
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_419.json
8846
%%WWWDIR%%/apps/oauth2/l10n/es_MX.json
8846
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_AR.js
8847
%%WWWDIR%%/apps/oauth2/l10n/es_NI.js
8847
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_AR.json
8848
%%WWWDIR%%/apps/oauth2/l10n/es_NI.json
8848
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_CL.js
8849
%%WWWDIR%%/apps/oauth2/l10n/es_PA.js
8849
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_CL.json
8850
%%WWWDIR%%/apps/oauth2/l10n/es_PA.json
8850
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_CO.js
8851
%%WWWDIR%%/apps/oauth2/l10n/es_PE.js
8851
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_CO.json
8852
%%WWWDIR%%/apps/oauth2/l10n/es_PE.json
8852
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_CR.js
8853
%%WWWDIR%%/apps/oauth2/l10n/es_PR.js
8853
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_CR.json
8854
%%WWWDIR%%/apps/oauth2/l10n/es_PR.json
8854
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_DO.js
8855
%%WWWDIR%%/apps/oauth2/l10n/es_PY.js
8855
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_DO.json
8856
%%WWWDIR%%/apps/oauth2/l10n/es_PY.json
8856
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_EC.js
8857
%%WWWDIR%%/apps/oauth2/l10n/es_SV.js
8857
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_EC.json
8858
%%WWWDIR%%/apps/oauth2/l10n/es_SV.json
8858
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_GT.js
8859
%%WWWDIR%%/apps/oauth2/l10n/es_UY.js
8859
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_GT.json
8860
%%WWWDIR%%/apps/oauth2/l10n/es_UY.json
8860
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_HN.js
8861
%%WWWDIR%%/apps/oauth2/l10n/et_EE.js
8861
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_HN.json
8862
%%WWWDIR%%/apps/oauth2/l10n/et_EE.json
8862
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_MX.js
8863
%%WWWDIR%%/apps/oauth2/l10n/eu.js
8863
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_MX.json
8864
%%WWWDIR%%/apps/oauth2/l10n/eu.json
8864
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_NI.js
8865
%%WWWDIR%%/apps/oauth2/l10n/fi.js
8865
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_NI.json
8866
%%WWWDIR%%/apps/oauth2/l10n/fi.json
8866
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PA.js
8867
%%WWWDIR%%/apps/oauth2/l10n/fr.js
8867
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PA.json
8868
%%WWWDIR%%/apps/oauth2/l10n/fr.json
8868
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PE.js
8869
%%WWWDIR%%/apps/oauth2/l10n/gl.js
8869
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PE.json
8870
%%WWWDIR%%/apps/oauth2/l10n/gl.json
8870
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PR.js
8871
%%WWWDIR%%/apps/oauth2/l10n/hu.js
8871
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PR.json
8872
%%WWWDIR%%/apps/oauth2/l10n/hu.json
8872
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PY.js
8873
%%WWWDIR%%/apps/oauth2/l10n/id.js
8873
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PY.json
8874
%%WWWDIR%%/apps/oauth2/l10n/id.json
8874
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_SV.js
8875
%%WWWDIR%%/apps/oauth2/l10n/is.js
8875
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_SV.json
8876
%%WWWDIR%%/apps/oauth2/l10n/is.json
8876
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_UY.js
8877
%%WWWDIR%%/apps/oauth2/l10n/it.js
8877
%%WWWDIR%%/apps-pkg/oauth2/l10n/es_UY.json
8878
%%WWWDIR%%/apps/oauth2/l10n/it.json
8878
%%WWWDIR%%/apps-pkg/oauth2/l10n/et_EE.js
8879
%%WWWDIR%%/apps/oauth2/l10n/ja.js
8879
%%WWWDIR%%/apps-pkg/oauth2/l10n/et_EE.json
8880
%%WWWDIR%%/apps/oauth2/l10n/ja.json
8880
%%WWWDIR%%/apps-pkg/oauth2/l10n/eu.js
8881
%%WWWDIR%%/apps/oauth2/l10n/ka_GE.js
8881
%%WWWDIR%%/apps-pkg/oauth2/l10n/eu.json
8882
%%WWWDIR%%/apps/oauth2/l10n/ka_GE.json
8882
%%WWWDIR%%/apps-pkg/oauth2/l10n/fi.js
8883
%%WWWDIR%%/apps/oauth2/l10n/ko.js
8883
%%WWWDIR%%/apps-pkg/oauth2/l10n/fi.json
8884
%%WWWDIR%%/apps/oauth2/l10n/ko.json
8884
%%WWWDIR%%/apps-pkg/oauth2/l10n/fr.js
8885
%%WWWDIR%%/apps/oauth2/l10n/lt_LT.js
8885
%%WWWDIR%%/apps-pkg/oauth2/l10n/fr.json
8886
%%WWWDIR%%/apps/oauth2/l10n/lt_LT.json
8886
%%WWWDIR%%/apps-pkg/oauth2/l10n/gl.js
8887
%%WWWDIR%%/apps/oauth2/l10n/lv.js
8887
%%WWWDIR%%/apps-pkg/oauth2/l10n/gl.json
8888
%%WWWDIR%%/apps/oauth2/l10n/lv.json
8888
%%WWWDIR%%/apps-pkg/oauth2/l10n/hu.js
8889
%%WWWDIR%%/apps/oauth2/l10n/nb.js
8889
%%WWWDIR%%/apps-pkg/oauth2/l10n/hu.json
8890
%%WWWDIR%%/apps/oauth2/l10n/nb.json
8890
%%WWWDIR%%/apps-pkg/oauth2/l10n/id.js
8891
%%WWWDIR%%/apps/oauth2/l10n/nl.js
8891
%%WWWDIR%%/apps-pkg/oauth2/l10n/id.json
8892
%%WWWDIR%%/apps/oauth2/l10n/nl.json
8892
%%WWWDIR%%/apps-pkg/oauth2/l10n/is.js
8893
%%WWWDIR%%/apps/oauth2/l10n/pl.js
8893
%%WWWDIR%%/apps-pkg/oauth2/l10n/is.json
8894
%%WWWDIR%%/apps/oauth2/l10n/pl.json
8894
%%WWWDIR%%/apps-pkg/oauth2/l10n/it.js
8895
%%WWWDIR%%/apps/oauth2/l10n/pt_BR.js
8895
%%WWWDIR%%/apps-pkg/oauth2/l10n/it.json
8896
%%WWWDIR%%/apps/oauth2/l10n/pt_BR.json
8896
%%WWWDIR%%/apps-pkg/oauth2/l10n/ja.js
8897
%%WWWDIR%%/apps/oauth2/l10n/ru.js
8897
%%WWWDIR%%/apps-pkg/oauth2/l10n/ja.json
8898
%%WWWDIR%%/apps/oauth2/l10n/ru.json
8898
%%WWWDIR%%/apps-pkg/oauth2/l10n/ka_GE.js
8899
%%WWWDIR%%/apps/oauth2/l10n/sk.js
8899
%%WWWDIR%%/apps-pkg/oauth2/l10n/ka_GE.json
8900
%%WWWDIR%%/apps/oauth2/l10n/sk.json
8900
%%WWWDIR%%/apps-pkg/oauth2/l10n/ko.js
8901
%%WWWDIR%%/apps/oauth2/l10n/sq.js
8901
%%WWWDIR%%/apps-pkg/oauth2/l10n/ko.json
8902
%%WWWDIR%%/apps/oauth2/l10n/sq.json
8902
%%WWWDIR%%/apps-pkg/oauth2/l10n/lt_LT.js
8903
%%WWWDIR%%/apps/oauth2/l10n/sr.js
8903
%%WWWDIR%%/apps-pkg/oauth2/l10n/lt_LT.json
8904
%%WWWDIR%%/apps/oauth2/l10n/sr.json
8904
%%WWWDIR%%/apps-pkg/oauth2/l10n/lv.js
8905
%%WWWDIR%%/apps/oauth2/l10n/sv.js
8905
%%WWWDIR%%/apps-pkg/oauth2/l10n/lv.json
8906
%%WWWDIR%%/apps/oauth2/l10n/sv.json
8906
%%WWWDIR%%/apps-pkg/oauth2/l10n/nb.js
8907
%%WWWDIR%%/apps/oauth2/l10n/tr.js
8907
%%WWWDIR%%/apps-pkg/oauth2/l10n/nb.json
8908
%%WWWDIR%%/apps/oauth2/l10n/tr.json
8908
%%WWWDIR%%/apps-pkg/oauth2/l10n/nl.js
8909
%%WWWDIR%%/apps/oauth2/l10n/vi.js
8909
%%WWWDIR%%/apps-pkg/oauth2/l10n/nl.json
8910
%%WWWDIR%%/apps/oauth2/l10n/vi.json
8910
%%WWWDIR%%/apps-pkg/oauth2/l10n/pl.js
8911
%%WWWDIR%%/apps/oauth2/l10n/zh_CN.js
8911
%%WWWDIR%%/apps-pkg/oauth2/l10n/pl.json
8912
%%WWWDIR%%/apps/oauth2/l10n/zh_CN.json
8912
%%WWWDIR%%/apps-pkg/oauth2/l10n/pt_BR.js
8913
%%WWWDIR%%/apps/oauth2/l10n/zh_TW.js
8913
%%WWWDIR%%/apps-pkg/oauth2/l10n/pt_BR.json
8914
%%WWWDIR%%/apps/oauth2/l10n/zh_TW.json
8914
%%WWWDIR%%/apps-pkg/oauth2/l10n/pt_PT.js
8915
%%WWWDIR%%/apps/oauth2/lib/Controller/LoginRedirectorController.php
8915
%%WWWDIR%%/apps-pkg/oauth2/l10n/pt_PT.json
8916
%%WWWDIR%%/apps/oauth2/lib/Controller/OauthApiController.php
8916
%%WWWDIR%%/apps-pkg/oauth2/l10n/ru.js
8917
%%WWWDIR%%/apps/oauth2/lib/Controller/SettingsController.php
8917
%%WWWDIR%%/apps-pkg/oauth2/l10n/ru.json
8918
%%WWWDIR%%/apps/oauth2/lib/Db/AccessToken.php
8918
%%WWWDIR%%/apps-pkg/oauth2/l10n/sk.js
8919
%%WWWDIR%%/apps/oauth2/lib/Db/AccessTokenMapper.php
8919
%%WWWDIR%%/apps-pkg/oauth2/l10n/sk.json
8920
%%WWWDIR%%/apps/oauth2/lib/Db/Client.php
8920
%%WWWDIR%%/apps-pkg/oauth2/l10n/sq.js
8921
%%WWWDIR%%/apps/oauth2/lib/Db/ClientMapper.php
8921
%%WWWDIR%%/apps-pkg/oauth2/l10n/sq.json
8922
%%WWWDIR%%/apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php
8922
%%WWWDIR%%/apps-pkg/oauth2/l10n/sr.js
8923
%%WWWDIR%%/apps/oauth2/lib/Exceptions/ClientNotFoundException.php
8923
%%WWWDIR%%/apps-pkg/oauth2/l10n/sr.json
8924
%%WWWDIR%%/apps/oauth2/lib/Settings/Admin.php
8924
%%WWWDIR%%/apps-pkg/oauth2/l10n/sv.js
8925
%%WWWDIR%%/apps/oauth2/templates/admin.php
8925
%%WWWDIR%%/apps-pkg/oauth2/l10n/sv.json
8926
%%WWWDIR%%/apps/password_policy/.github/contributing.md
8926
%%WWWDIR%%/apps-pkg/oauth2/l10n/tr.js
8927
%%WWWDIR%%/apps/password_policy/.github/issue_template.md
8927
%%WWWDIR%%/apps-pkg/oauth2/l10n/tr.json
8928
%%WWWDIR%%/apps/password_policy/LICENSE
8928
%%WWWDIR%%/apps-pkg/oauth2/l10n/vi.js
8929
%%WWWDIR%%/apps/password_policy/appinfo/app.php
8929
%%WWWDIR%%/apps-pkg/oauth2/l10n/vi.json
8930
%%WWWDIR%%/apps/password_policy/appinfo/info.xml
8930
%%WWWDIR%%/apps-pkg/oauth2/l10n/zh_CN.js
8931
%%WWWDIR%%/apps/password_policy/appinfo/signature.json
8931
%%WWWDIR%%/apps-pkg/oauth2/l10n/zh_CN.json
8932
%%WWWDIR%%/apps/password_policy/css/settings-admin.css
8932
%%WWWDIR%%/apps-pkg/oauth2/l10n/zh_TW.js
8933
%%WWWDIR%%/apps/password_policy/img/app.svg
8933
%%WWWDIR%%/apps-pkg/oauth2/l10n/zh_TW.json
8934
%%WWWDIR%%/apps/password_policy/js/settings-admin.js
8934
%%WWWDIR%%/apps-pkg/oauth2/lib/Controller/LoginRedirectorController.php
8935
%%WWWDIR%%/apps/password_policy/l10n/.tx/config
8935
%%WWWDIR%%/apps-pkg/oauth2/lib/Controller/OauthApiController.php
8936
%%WWWDIR%%/apps/password_policy/l10n/af.js
8936
%%WWWDIR%%/apps-pkg/oauth2/lib/Controller/SettingsController.php
8937
%%WWWDIR%%/apps/password_policy/l10n/af.json
8937
%%WWWDIR%%/apps-pkg/oauth2/lib/Db/AccessToken.php
8938
%%WWWDIR%%/apps/password_policy/l10n/ast.js
8938
%%WWWDIR%%/apps-pkg/oauth2/lib/Db/AccessTokenMapper.php
8939
%%WWWDIR%%/apps/password_policy/l10n/ast.json
8939
%%WWWDIR%%/apps-pkg/oauth2/lib/Db/Client.php
8940
%%WWWDIR%%/apps/password_policy/l10n/bg.js
8940
%%WWWDIR%%/apps-pkg/oauth2/lib/Db/ClientMapper.php
8941
%%WWWDIR%%/apps/password_policy/l10n/bg.json
8941
%%WWWDIR%%/apps-pkg/oauth2/lib/Exceptions/AccessTokenNotFoundException.php
8942
%%WWWDIR%%/apps/password_policy/l10n/ca.js
8942
%%WWWDIR%%/apps-pkg/oauth2/lib/Exceptions/ClientNotFoundException.php
8943
%%WWWDIR%%/apps/password_policy/l10n/ca.json
8943
%%WWWDIR%%/apps-pkg/oauth2/lib/Settings/Admin.php
8944
%%WWWDIR%%/apps/password_policy/l10n/cs.js
8944
%%WWWDIR%%/apps-pkg/oauth2/templates/admin.php
8945
%%WWWDIR%%/apps/password_policy/l10n/cs.json
8945
%%WWWDIR%%/apps-pkg/password_policy/.github/contributing.md
8946
%%WWWDIR%%/apps/password_policy/l10n/da.js
8946
%%WWWDIR%%/apps-pkg/password_policy/.github/issue_template.md
8947
%%WWWDIR%%/apps/password_policy/l10n/da.json
8947
%%WWWDIR%%/apps-pkg/password_policy/LICENSE
8948
%%WWWDIR%%/apps/password_policy/l10n/de.js
8948
%%WWWDIR%%/apps-pkg/password_policy/appinfo/app.php
8949
%%WWWDIR%%/apps/password_policy/l10n/de.json
8949
%%WWWDIR%%/apps-pkg/password_policy/appinfo/info.xml
8950
%%WWWDIR%%/apps/password_policy/l10n/de_DE.js
8950
%%WWWDIR%%/apps-pkg/password_policy/appinfo/signature.json
8951
%%WWWDIR%%/apps/password_policy/l10n/de_DE.json
8951
%%WWWDIR%%/apps-pkg/password_policy/css/settings-admin.css
8952
%%WWWDIR%%/apps/password_policy/l10n/el.js
8952
%%WWWDIR%%/apps-pkg/password_policy/img/app.svg
8953
%%WWWDIR%%/apps/password_policy/l10n/el.json
8953
%%WWWDIR%%/apps-pkg/password_policy/js/settings-admin.js
8954
%%WWWDIR%%/apps/password_policy/l10n/en_GB.js
8954
%%WWWDIR%%/apps-pkg/password_policy/l10n/.tx/config
8955
%%WWWDIR%%/apps/password_policy/l10n/en_GB.json
8955
%%WWWDIR%%/apps-pkg/password_policy/l10n/af.js
8956
%%WWWDIR%%/apps/password_policy/l10n/es.js
8956
%%WWWDIR%%/apps-pkg/password_policy/l10n/af.json
8957
%%WWWDIR%%/apps/password_policy/l10n/es.json
8957
%%WWWDIR%%/apps-pkg/password_policy/l10n/ast.js
8958
%%WWWDIR%%/apps/password_policy/l10n/es_419.js
8958
%%WWWDIR%%/apps-pkg/password_policy/l10n/ast.json
8959
%%WWWDIR%%/apps/password_policy/l10n/es_419.json
8959
%%WWWDIR%%/apps-pkg/password_policy/l10n/bg.js
8960
%%WWWDIR%%/apps/password_policy/l10n/es_AR.js
8960
%%WWWDIR%%/apps-pkg/password_policy/l10n/bg.json
8961
%%WWWDIR%%/apps/password_policy/l10n/es_AR.json
8961
%%WWWDIR%%/apps-pkg/password_policy/l10n/ca.js
8962
%%WWWDIR%%/apps/password_policy/l10n/es_CL.js
8962
%%WWWDIR%%/apps-pkg/password_policy/l10n/ca.json
8963
%%WWWDIR%%/apps/password_policy/l10n/es_CL.json
8963
%%WWWDIR%%/apps-pkg/password_policy/l10n/cs.js
8964
%%WWWDIR%%/apps/password_policy/l10n/es_CO.js
8964
%%WWWDIR%%/apps-pkg/password_policy/l10n/cs.json
8965
%%WWWDIR%%/apps/password_policy/l10n/es_CO.json
8965
%%WWWDIR%%/apps-pkg/password_policy/l10n/da.js
8966
%%WWWDIR%%/apps/password_policy/l10n/es_CR.js
8966
%%WWWDIR%%/apps-pkg/password_policy/l10n/da.json
8967
%%WWWDIR%%/apps/password_policy/l10n/es_CR.json
8967
%%WWWDIR%%/apps-pkg/password_policy/l10n/de.js
8968
%%WWWDIR%%/apps/password_policy/l10n/es_DO.js
8968
%%WWWDIR%%/apps-pkg/password_policy/l10n/de.json
8969
%%WWWDIR%%/apps/password_policy/l10n/es_DO.json
8969
%%WWWDIR%%/apps-pkg/password_policy/l10n/de_DE.js
8970
%%WWWDIR%%/apps/password_policy/l10n/es_EC.js
8970
%%WWWDIR%%/apps-pkg/password_policy/l10n/de_DE.json
8971
%%WWWDIR%%/apps/password_policy/l10n/es_EC.json
8971
%%WWWDIR%%/apps-pkg/password_policy/l10n/el.js
8972
%%WWWDIR%%/apps/password_policy/l10n/es_GT.js
8972
%%WWWDIR%%/apps-pkg/password_policy/l10n/el.json
8973
%%WWWDIR%%/apps/password_policy/l10n/es_GT.json
8973
%%WWWDIR%%/apps-pkg/password_policy/l10n/en_GB.js
8974
%%WWWDIR%%/apps/password_policy/l10n/es_HN.js
8974
%%WWWDIR%%/apps-pkg/password_policy/l10n/en_GB.json
8975
%%WWWDIR%%/apps/password_policy/l10n/es_HN.json
8975
%%WWWDIR%%/apps-pkg/password_policy/l10n/es.js
8976
%%WWWDIR%%/apps/password_policy/l10n/es_MX.js
8976
%%WWWDIR%%/apps-pkg/password_policy/l10n/es.json
8977
%%WWWDIR%%/apps/password_policy/l10n/es_MX.json
8977
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_419.js
8978
%%WWWDIR%%/apps/password_policy/l10n/es_NI.js
8978
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_419.json
8979
%%WWWDIR%%/apps/password_policy/l10n/es_NI.json
8979
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_AR.js
8980
%%WWWDIR%%/apps/password_policy/l10n/es_PA.js
8980
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_AR.json
8981
%%WWWDIR%%/apps/password_policy/l10n/es_PA.json
8981
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_CL.js
8982
%%WWWDIR%%/apps/password_policy/l10n/es_PE.js
8982
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_CL.json
8983
%%WWWDIR%%/apps/password_policy/l10n/es_PE.json
8983
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_CO.js
8984
%%WWWDIR%%/apps/password_policy/l10n/es_PR.js
8984
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_CO.json
8985
%%WWWDIR%%/apps/password_policy/l10n/es_PR.json
8985
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_CR.js
8986
%%WWWDIR%%/apps/password_policy/l10n/es_PY.js
8986
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_CR.json
8987
%%WWWDIR%%/apps/password_policy/l10n/es_PY.json
8987
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_DO.js
8988
%%WWWDIR%%/apps/password_policy/l10n/es_SV.js
8988
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_DO.json
8989
%%WWWDIR%%/apps/password_policy/l10n/es_SV.json
8989
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_EC.js
8990
%%WWWDIR%%/apps/password_policy/l10n/es_UY.js
8990
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_EC.json
8991
%%WWWDIR%%/apps/password_policy/l10n/es_UY.json
8991
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_GT.js
8992
%%WWWDIR%%/apps/password_policy/l10n/et_EE.js
8992
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_GT.json
8993
%%WWWDIR%%/apps/password_policy/l10n/et_EE.json
8993
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_HN.js
8994
%%WWWDIR%%/apps/password_policy/l10n/eu.js
8994
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_HN.json
8995
%%WWWDIR%%/apps/password_policy/l10n/eu.json
8995
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_MX.js
8996
%%WWWDIR%%/apps/password_policy/l10n/fi.js
8996
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_MX.json
8997
%%WWWDIR%%/apps/password_policy/l10n/fi.json
8997
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_NI.js
8998
%%WWWDIR%%/apps/password_policy/l10n/fr.js
8998
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_NI.json
8999
%%WWWDIR%%/apps/password_policy/l10n/fr.json
8999
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PA.js
9000
%%WWWDIR%%/apps/password_policy/l10n/gl.js
9000
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PA.json
9001
%%WWWDIR%%/apps/password_policy/l10n/gl.json
9001
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PE.js
9002
%%WWWDIR%%/apps/password_policy/l10n/hu.js
9002
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PE.json
9003
%%WWWDIR%%/apps/password_policy/l10n/hu.json
9003
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PR.js
9004
%%WWWDIR%%/apps/password_policy/l10n/ia.js
9004
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PR.json
9005
%%WWWDIR%%/apps/password_policy/l10n/ia.json
9005
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PY.js
9006
%%WWWDIR%%/apps/password_policy/l10n/id.js
9006
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PY.json
9007
%%WWWDIR%%/apps/password_policy/l10n/id.json
9007
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_SV.js
9008
%%WWWDIR%%/apps/password_policy/l10n/is.js
9008
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_SV.json
9009
%%WWWDIR%%/apps/password_policy/l10n/is.json
9009
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_UY.js
9010
%%WWWDIR%%/apps/password_policy/l10n/it.js
9010
%%WWWDIR%%/apps-pkg/password_policy/l10n/es_UY.json
9011
%%WWWDIR%%/apps/password_policy/l10n/it.json
9011
%%WWWDIR%%/apps-pkg/password_policy/l10n/et_EE.js
9012
%%WWWDIR%%/apps/password_policy/l10n/ja.js
9012
%%WWWDIR%%/apps-pkg/password_policy/l10n/et_EE.json
9013
%%WWWDIR%%/apps/password_policy/l10n/ja.json
9013
%%WWWDIR%%/apps-pkg/password_policy/l10n/eu.js
9014
%%WWWDIR%%/apps/password_policy/l10n/ka_GE.js
9014
%%WWWDIR%%/apps-pkg/password_policy/l10n/eu.json
9015
%%WWWDIR%%/apps/password_policy/l10n/ka_GE.json
9015
%%WWWDIR%%/apps-pkg/password_policy/l10n/fi.js
9016
%%WWWDIR%%/apps/password_policy/l10n/ko.js
9016
%%WWWDIR%%/apps-pkg/password_policy/l10n/fi.json
9017
%%WWWDIR%%/apps/password_policy/l10n/ko.json
9017
%%WWWDIR%%/apps-pkg/password_policy/l10n/fr.js
9018
%%WWWDIR%%/apps/password_policy/l10n/lt_LT.js
9018
%%WWWDIR%%/apps-pkg/password_policy/l10n/fr.json
9019
%%WWWDIR%%/apps/password_policy/l10n/lt_LT.json
9019
%%WWWDIR%%/apps-pkg/password_policy/l10n/gl.js
9020
%%WWWDIR%%/apps/password_policy/l10n/lv.js
9020
%%WWWDIR%%/apps-pkg/password_policy/l10n/gl.json
9021
%%WWWDIR%%/apps/password_policy/l10n/lv.json
9021
%%WWWDIR%%/apps-pkg/password_policy/l10n/hu.js
9022
%%WWWDIR%%/apps/password_policy/l10n/mn.js
9022
%%WWWDIR%%/apps-pkg/password_policy/l10n/hu.json
9023
%%WWWDIR%%/apps/password_policy/l10n/mn.json
9023
%%WWWDIR%%/apps-pkg/password_policy/l10n/ia.js
9024
%%WWWDIR%%/apps/password_policy/l10n/nb.js
9024
%%WWWDIR%%/apps-pkg/password_policy/l10n/ia.json
9025
%%WWWDIR%%/apps/password_policy/l10n/nb.json
9025
%%WWWDIR%%/apps-pkg/password_policy/l10n/id.js
9026
%%WWWDIR%%/apps/password_policy/l10n/nl.js
9026
%%WWWDIR%%/apps-pkg/password_policy/l10n/id.json
9027
%%WWWDIR%%/apps/password_policy/l10n/nl.json
9027
%%WWWDIR%%/apps-pkg/password_policy/l10n/is.js
9028
%%WWWDIR%%/apps/password_policy/l10n/pl.js
9028
%%WWWDIR%%/apps-pkg/password_policy/l10n/is.json
9029
%%WWWDIR%%/apps/password_policy/l10n/pl.json
9029
%%WWWDIR%%/apps-pkg/password_policy/l10n/it.js
9030
%%WWWDIR%%/apps/password_policy/l10n/pt_BR.js
9030
%%WWWDIR%%/apps-pkg/password_policy/l10n/it.json
9031
%%WWWDIR%%/apps/password_policy/l10n/pt_BR.json
9031
%%WWWDIR%%/apps-pkg/password_policy/l10n/ja.js
9032
%%WWWDIR%%/apps/password_policy/l10n/ru.js
9032
%%WWWDIR%%/apps-pkg/password_policy/l10n/ja.json
9033
%%WWWDIR%%/apps/password_policy/l10n/ru.json
9033
%%WWWDIR%%/apps-pkg/password_policy/l10n/ka_GE.js
9034
%%WWWDIR%%/apps/password_policy/l10n/sk.js
9034
%%WWWDIR%%/apps-pkg/password_policy/l10n/ka_GE.json
9035
%%WWWDIR%%/apps/password_policy/l10n/sk.json
9035
%%WWWDIR%%/apps-pkg/password_policy/l10n/ko.js
9036
%%WWWDIR%%/apps/password_policy/l10n/sl.js
9036
%%WWWDIR%%/apps-pkg/password_policy/l10n/ko.json
9037
%%WWWDIR%%/apps/password_policy/l10n/sl.json
9037
%%WWWDIR%%/apps-pkg/password_policy/l10n/lt_LT.js
9038
%%WWWDIR%%/apps/password_policy/l10n/sq.js
9038
%%WWWDIR%%/apps-pkg/password_policy/l10n/lt_LT.json
9039
%%WWWDIR%%/apps/password_policy/l10n/sq.json
9039
%%WWWDIR%%/apps-pkg/password_policy/l10n/lv.js
9040
%%WWWDIR%%/apps/password_policy/l10n/sr.js
9040
%%WWWDIR%%/apps-pkg/password_policy/l10n/lv.json
9041
%%WWWDIR%%/apps/password_policy/l10n/sr.json
9041
%%WWWDIR%%/apps-pkg/password_policy/l10n/mn.js
9042
%%WWWDIR%%/apps/password_policy/l10n/sv.js
9042
%%WWWDIR%%/apps-pkg/password_policy/l10n/mn.json
9043
%%WWWDIR%%/apps/password_policy/l10n/sv.json
9043
%%WWWDIR%%/apps-pkg/password_policy/l10n/nb.js
9044
%%WWWDIR%%/apps/password_policy/l10n/tr.js
9044
%%WWWDIR%%/apps-pkg/password_policy/l10n/nb.json
9045
%%WWWDIR%%/apps/password_policy/l10n/tr.json
9045
%%WWWDIR%%/apps-pkg/password_policy/l10n/nl.js
9046
%%WWWDIR%%/apps/password_policy/l10n/zh_CN.js
9046
%%WWWDIR%%/apps-pkg/password_policy/l10n/nl.json
9047
%%WWWDIR%%/apps/password_policy/l10n/zh_CN.json
9047
%%WWWDIR%%/apps-pkg/password_policy/l10n/pl.js
9048
%%WWWDIR%%/apps/password_policy/l10n/zh_TW.js
9048
%%WWWDIR%%/apps-pkg/password_policy/l10n/pl.json
9049
%%WWWDIR%%/apps/password_policy/l10n/zh_TW.json
9049
%%WWWDIR%%/apps-pkg/password_policy/l10n/pt_BR.js
9050
%%WWWDIR%%/apps/password_policy/lib/AppInfo/Application.php
9050
%%WWWDIR%%/apps-pkg/password_policy/l10n/pt_BR.json
9051
%%WWWDIR%%/apps/password_policy/lib/Capabilities.php
9051
%%WWWDIR%%/apps-pkg/password_policy/l10n/pt_PT.js
9052
%%WWWDIR%%/apps/password_policy/lib/PasswordPolicyConfig.php
9052
%%WWWDIR%%/apps-pkg/password_policy/l10n/pt_PT.json
9053
%%WWWDIR%%/apps/password_policy/lib/PasswordValidator.php
9053
%%WWWDIR%%/apps-pkg/password_policy/l10n/ru.js
9054
%%WWWDIR%%/apps/password_policy/lib/Settings.php
9054
%%WWWDIR%%/apps-pkg/password_policy/l10n/ru.json
9055
%%WWWDIR%%/apps/password_policy/lists/README.md
9055
%%WWWDIR%%/apps-pkg/password_policy/l10n/sk.js
9056
%%WWWDIR%%/apps/password_policy/lists/converter.php
9056
%%WWWDIR%%/apps-pkg/password_policy/l10n/sk.json
9057
%%WWWDIR%%/apps/password_policy/lists/list-1.php
9057
%%WWWDIR%%/apps-pkg/password_policy/l10n/sl.js
9058
%%WWWDIR%%/apps/password_policy/lists/list-10.php
9058
%%WWWDIR%%/apps-pkg/password_policy/l10n/sl.json
9059
%%WWWDIR%%/apps/password_policy/lists/list-11.php
9059
%%WWWDIR%%/apps-pkg/password_policy/l10n/sq.js
9060
%%WWWDIR%%/apps/password_policy/lists/list-12.php
9060
%%WWWDIR%%/apps-pkg/password_policy/l10n/sq.json
9061
%%WWWDIR%%/apps/password_policy/lists/list-13.php
9061
%%WWWDIR%%/apps-pkg/password_policy/l10n/sr.js
9062
%%WWWDIR%%/apps/password_policy/lists/list-14.php
9062
%%WWWDIR%%/apps-pkg/password_policy/l10n/sr.json
9063
%%WWWDIR%%/apps/password_policy/lists/list-15.php
9063
%%WWWDIR%%/apps-pkg/password_policy/l10n/sv.js
9064
%%WWWDIR%%/apps/password_policy/lists/list-16.php
9064
%%WWWDIR%%/apps-pkg/password_policy/l10n/sv.json
9065
%%WWWDIR%%/apps/password_policy/lists/list-17.php
9065
%%WWWDIR%%/apps-pkg/password_policy/l10n/tr.js
9066
%%WWWDIR%%/apps/password_policy/lists/list-18.php
9066
%%WWWDIR%%/apps-pkg/password_policy/l10n/tr.json
9067
%%WWWDIR%%/apps/password_policy/lists/list-19.php
9067
%%WWWDIR%%/apps-pkg/password_policy/l10n/zh_CN.js
9068
%%WWWDIR%%/apps/password_policy/lists/list-20.php
9068
%%WWWDIR%%/apps-pkg/password_policy/l10n/zh_CN.json
9069
%%WWWDIR%%/apps/password_policy/lists/list-21.php
9069
%%WWWDIR%%/apps-pkg/password_policy/l10n/zh_TW.js
9070
%%WWWDIR%%/apps/password_policy/lists/list-22.php
9070
%%WWWDIR%%/apps-pkg/password_policy/l10n/zh_TW.json
9071
%%WWWDIR%%/apps/password_policy/lists/list-23.php
9071
%%WWWDIR%%/apps-pkg/password_policy/lib/AppInfo/Application.php
9072
%%WWWDIR%%/apps/password_policy/lists/list-24.php
9072
%%WWWDIR%%/apps-pkg/password_policy/lib/Capabilities.php
9073
%%WWWDIR%%/apps/password_policy/lists/list-25.php
9073
%%WWWDIR%%/apps-pkg/password_policy/lib/PasswordPolicyConfig.php
9074
%%WWWDIR%%/apps/password_policy/lists/list-26.php
9074
%%WWWDIR%%/apps-pkg/password_policy/lib/PasswordValidator.php
9075
%%WWWDIR%%/apps/password_policy/lists/list-27.php
9075
%%WWWDIR%%/apps-pkg/password_policy/lib/Settings.php
9076
%%WWWDIR%%/apps/password_policy/lists/list-28.php
9076
%%WWWDIR%%/apps-pkg/password_policy/lists/README.md
9077
%%WWWDIR%%/apps/password_policy/lists/list-29.php
9077
%%WWWDIR%%/apps-pkg/password_policy/lists/converter.php
9078
%%WWWDIR%%/apps/password_policy/lists/list-3.php
9078
%%WWWDIR%%/apps-pkg/password_policy/lists/list-1.php
9079
%%WWWDIR%%/apps/password_policy/lists/list-30.php
9079
%%WWWDIR%%/apps-pkg/password_policy/lists/list-10.php
9080
%%WWWDIR%%/apps/password_policy/lists/list-31.php
9080
%%WWWDIR%%/apps-pkg/password_policy/lists/list-11.php
9081
%%WWWDIR%%/apps/password_policy/lists/list-32.php
9081
%%WWWDIR%%/apps-pkg/password_policy/lists/list-12.php
9082
%%WWWDIR%%/apps/password_policy/lists/list-33.php
9082
%%WWWDIR%%/apps-pkg/password_policy/lists/list-13.php
9083
%%WWWDIR%%/apps/password_policy/lists/list-35.php
9083
%%WWWDIR%%/apps-pkg/password_policy/lists/list-14.php
9084
%%WWWDIR%%/apps/password_policy/lists/list-36.php
9084
%%WWWDIR%%/apps-pkg/password_policy/lists/list-15.php
9085
%%WWWDIR%%/apps/password_policy/lists/list-37.php
9085
%%WWWDIR%%/apps-pkg/password_policy/lists/list-16.php
9086
%%WWWDIR%%/apps/password_policy/lists/list-39.php
9086
%%WWWDIR%%/apps-pkg/password_policy/lists/list-17.php
9087
%%WWWDIR%%/apps/password_policy/lists/list-4.php
9087
%%WWWDIR%%/apps-pkg/password_policy/lists/list-18.php
9088
%%WWWDIR%%/apps/password_policy/lists/list-5.php
9088
%%WWWDIR%%/apps-pkg/password_policy/lists/list-19.php
9089
%%WWWDIR%%/apps/password_policy/lists/list-6.php
9089
%%WWWDIR%%/apps-pkg/password_policy/lists/list-20.php
9090
%%WWWDIR%%/apps/password_policy/lists/list-7.php
9090
%%WWWDIR%%/apps-pkg/password_policy/lists/list-21.php
9091
%%WWWDIR%%/apps/password_policy/lists/list-8.php
9091
%%WWWDIR%%/apps-pkg/password_policy/lists/list-22.php
9092
%%WWWDIR%%/apps/password_policy/lists/list-9.php
9092
%%WWWDIR%%/apps-pkg/password_policy/lists/list-23.php
9093
%%WWWDIR%%/apps/password_policy/templates/settings-admin.php
9093
%%WWWDIR%%/apps-pkg/password_policy/lists/list-24.php
9094
%%WWWDIR%%/apps/provisioning_api/appinfo/info.xml
9094
%%WWWDIR%%/apps-pkg/password_policy/lists/list-25.php
9095
%%WWWDIR%%/apps/provisioning_api/appinfo/routes.php
9095
%%WWWDIR%%/apps-pkg/password_policy/lists/list-26.php
9096
%%WWWDIR%%/apps/provisioning_api/appinfo/signature.json
9096
%%WWWDIR%%/apps-pkg/password_policy/lists/list-27.php
9097
%%WWWDIR%%/apps/provisioning_api/composer/autoload.php
9097
%%WWWDIR%%/apps-pkg/password_policy/lists/list-28.php
9098
%%WWWDIR%%/apps/provisioning_api/composer/composer.json
9098
%%WWWDIR%%/apps-pkg/password_policy/lists/list-29.php
9099
%%WWWDIR%%/apps/provisioning_api/composer/composer/ClassLoader.php
9099
%%WWWDIR%%/apps-pkg/password_policy/lists/list-3.php
9100
%%WWWDIR%%/apps/provisioning_api/composer/composer/LICENSE
9100
%%WWWDIR%%/apps-pkg/password_policy/lists/list-30.php
9101
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_classmap.php
9101
%%WWWDIR%%/apps-pkg/password_policy/lists/list-31.php
9102
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_namespaces.php
9102
%%WWWDIR%%/apps-pkg/password_policy/lists/list-32.php
9103
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_psr4.php
9103
%%WWWDIR%%/apps-pkg/password_policy/lists/list-33.php
9104
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_real.php
9104
%%WWWDIR%%/apps-pkg/password_policy/lists/list-35.php
9105
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_static.php
9105
%%WWWDIR%%/apps-pkg/password_policy/lists/list-36.php
9106
%%WWWDIR%%/apps/provisioning_api/img/app.svg
9106
%%WWWDIR%%/apps-pkg/password_policy/lists/list-37.php
9107
%%WWWDIR%%/apps/provisioning_api/lib/AppInfo/Application.php
9107
%%WWWDIR%%/apps-pkg/password_policy/lists/list-39.php
9108
%%WWWDIR%%/apps/provisioning_api/lib/Controller/AppConfigController.php
9108
%%WWWDIR%%/apps-pkg/password_policy/lists/list-4.php
9109
%%WWWDIR%%/apps/provisioning_api/lib/Controller/AppsController.php
9109
%%WWWDIR%%/apps-pkg/password_policy/lists/list-5.php
9110
%%WWWDIR%%/apps/provisioning_api/lib/Controller/GroupsController.php
9110
%%WWWDIR%%/apps-pkg/password_policy/lists/list-6.php
9111
%%WWWDIR%%/apps/provisioning_api/lib/Controller/UsersController.php
9111
%%WWWDIR%%/apps-pkg/password_policy/lists/list-7.php
9112
%%WWWDIR%%/apps/provisioning_api/lib/Middleware/Exceptions/NotSubAdminException.php
9112
%%WWWDIR%%/apps-pkg/password_policy/lists/list-8.php
9113
%%WWWDIR%%/apps/provisioning_api/lib/Middleware/ProvisioningApiMiddleware.php
9113
%%WWWDIR%%/apps-pkg/password_policy/lists/list-9.php
9114
%%WWWDIR%%/apps/serverinfo/.github/contributing.md
9114
%%WWWDIR%%/apps-pkg/password_policy/templates/settings-admin.php
9115
%%WWWDIR%%/apps/serverinfo/.github/issue_template.md
9115
%%WWWDIR%%/apps-pkg/provisioning_api/appinfo/info.xml
9116
%%WWWDIR%%/apps/serverinfo/AUTHORS.md
9116
%%WWWDIR%%/apps-pkg/provisioning_api/appinfo/routes.php
9117
%%WWWDIR%%/apps/serverinfo/CHANGELOG.md
9117
%%WWWDIR%%/apps-pkg/provisioning_api/appinfo/signature.json
9118
%%WWWDIR%%/apps/serverinfo/COPYING
9118
%%WWWDIR%%/apps-pkg/provisioning_api/composer/autoload.php
9119
%%WWWDIR%%/apps/serverinfo/appinfo/app.php
9119
%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer.json
9120
%%WWWDIR%%/apps/serverinfo/appinfo/info.xml
9120
%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer/ClassLoader.php
9121
%%WWWDIR%%/apps/serverinfo/appinfo/routes.php
9121
%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer/LICENSE
9122
%%WWWDIR%%/apps/serverinfo/appinfo/signature.json
9122
%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer/autoload_classmap.php
9123
%%WWWDIR%%/apps/serverinfo/css/style.css
9123
%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer/autoload_namespaces.php
9124
%%WWWDIR%%/apps/serverinfo/img/app-dark.svg
9124
%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer/autoload_psr4.php
9125
%%WWWDIR%%/apps/serverinfo/img/app.svg
9125
%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer/autoload_real.php
9126
%%WWWDIR%%/apps/serverinfo/js/Chart.min.js
9126
%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer/autoload_static.php
9127
%%WWWDIR%%/apps/serverinfo/js/script.js
9127
%%WWWDIR%%/apps-pkg/provisioning_api/img/app.svg
9128
%%WWWDIR%%/apps/serverinfo/js/smoothie.js
9128
%%WWWDIR%%/apps-pkg/provisioning_api/lib/AppInfo/Application.php
9129
%%WWWDIR%%/apps/serverinfo/l10n/.tx/config
9129
%%WWWDIR%%/apps-pkg/provisioning_api/lib/Controller/AppConfigController.php
9130
%%WWWDIR%%/apps/serverinfo/l10n/af.js
9130
%%WWWDIR%%/apps-pkg/provisioning_api/lib/Controller/AppsController.php
9131
%%WWWDIR%%/apps/serverinfo/l10n/af.json
9131
%%WWWDIR%%/apps-pkg/provisioning_api/lib/Controller/GroupsController.php
9132
%%WWWDIR%%/apps/serverinfo/l10n/ar.js
9132
%%WWWDIR%%/apps-pkg/provisioning_api/lib/Controller/UsersController.php
9133
%%WWWDIR%%/apps/serverinfo/l10n/ar.json
9133
%%WWWDIR%%/apps-pkg/provisioning_api/lib/Middleware/Exceptions/NotSubAdminException.php
9134
%%WWWDIR%%/apps/serverinfo/l10n/ast.js
9134
%%WWWDIR%%/apps-pkg/provisioning_api/lib/Middleware/ProvisioningApiMiddleware.php
9135
%%WWWDIR%%/apps/serverinfo/l10n/ast.json
9135
%%WWWDIR%%/apps-pkg/serverinfo/.github/contributing.md
9136
%%WWWDIR%%/apps/serverinfo/l10n/bg.js
9136
%%WWWDIR%%/apps-pkg/serverinfo/.github/issue_template.md
9137
%%WWWDIR%%/apps/serverinfo/l10n/bg.json
9137
%%WWWDIR%%/apps-pkg/serverinfo/AUTHORS.md
9138
%%WWWDIR%%/apps/serverinfo/l10n/ca.js
9138
%%WWWDIR%%/apps-pkg/serverinfo/CHANGELOG.md
9139
%%WWWDIR%%/apps/serverinfo/l10n/ca.json
9139
%%WWWDIR%%/apps-pkg/serverinfo/COPYING
9140
%%WWWDIR%%/apps/serverinfo/l10n/cs.js
9140
%%WWWDIR%%/apps-pkg/serverinfo/appinfo/app.php
9141
%%WWWDIR%%/apps/serverinfo/l10n/cs.json
9141
%%WWWDIR%%/apps-pkg/serverinfo/appinfo/info.xml
9142
%%WWWDIR%%/apps/serverinfo/l10n/da.js
9142
%%WWWDIR%%/apps-pkg/serverinfo/appinfo/routes.php
9143
%%WWWDIR%%/apps/serverinfo/l10n/da.json
9143
%%WWWDIR%%/apps-pkg/serverinfo/appinfo/signature.json
9144
%%WWWDIR%%/apps/serverinfo/l10n/de.js
9144
%%WWWDIR%%/apps-pkg/serverinfo/css/style.css
9145
%%WWWDIR%%/apps/serverinfo/l10n/de.json
9145
%%WWWDIR%%/apps-pkg/serverinfo/img/app-dark.svg
9146
%%WWWDIR%%/apps/serverinfo/l10n/de_DE.js
9146
%%WWWDIR%%/apps-pkg/serverinfo/img/app.svg
9147
%%WWWDIR%%/apps/serverinfo/l10n/de_DE.json
9147
%%WWWDIR%%/apps-pkg/serverinfo/js/Chart.min.js
9148
%%WWWDIR%%/apps/serverinfo/l10n/el.js
9148
%%WWWDIR%%/apps-pkg/serverinfo/js/script.js
9149
%%WWWDIR%%/apps/serverinfo/l10n/el.json
9149
%%WWWDIR%%/apps-pkg/serverinfo/js/smoothie.js
9150
%%WWWDIR%%/apps/serverinfo/l10n/en_GB.js
9150
%%WWWDIR%%/apps-pkg/serverinfo/l10n/.tx/config
9151
%%WWWDIR%%/apps/serverinfo/l10n/en_GB.json
9151
%%WWWDIR%%/apps-pkg/serverinfo/l10n/af.js
9152
%%WWWDIR%%/apps/serverinfo/l10n/es.js
9152
%%WWWDIR%%/apps-pkg/serverinfo/l10n/af.json
9153
%%WWWDIR%%/apps/serverinfo/l10n/es.json
9153
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ar.js
9154
%%WWWDIR%%/apps/serverinfo/l10n/es_419.js
9154
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ar.json
9155
%%WWWDIR%%/apps/serverinfo/l10n/es_419.json
9155
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ast.js
9156
%%WWWDIR%%/apps/serverinfo/l10n/es_AR.js
9156
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ast.json
9157
%%WWWDIR%%/apps/serverinfo/l10n/es_AR.json
9157
%%WWWDIR%%/apps-pkg/serverinfo/l10n/bg.js
9158
%%WWWDIR%%/apps/serverinfo/l10n/es_CL.js
9158
%%WWWDIR%%/apps-pkg/serverinfo/l10n/bg.json
9159
%%WWWDIR%%/apps/serverinfo/l10n/es_CL.json
9159
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ca.js
9160
%%WWWDIR%%/apps/serverinfo/l10n/es_CO.js
9160
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ca.json
9161
%%WWWDIR%%/apps/serverinfo/l10n/es_CO.json
9161
%%WWWDIR%%/apps-pkg/serverinfo/l10n/cs.js
9162
%%WWWDIR%%/apps/serverinfo/l10n/es_CR.js
9162
%%WWWDIR%%/apps-pkg/serverinfo/l10n/cs.json
9163
%%WWWDIR%%/apps/serverinfo/l10n/es_CR.json
9163
%%WWWDIR%%/apps-pkg/serverinfo/l10n/da.js
9164
%%WWWDIR%%/apps/serverinfo/l10n/es_DO.js
9164
%%WWWDIR%%/apps-pkg/serverinfo/l10n/da.json
9165
%%WWWDIR%%/apps/serverinfo/l10n/es_DO.json
9165
%%WWWDIR%%/apps-pkg/serverinfo/l10n/de.js
9166
%%WWWDIR%%/apps/serverinfo/l10n/es_EC.js
9166
%%WWWDIR%%/apps-pkg/serverinfo/l10n/de.json
9167
%%WWWDIR%%/apps/serverinfo/l10n/es_EC.json
9167
%%WWWDIR%%/apps-pkg/serverinfo/l10n/de_DE.js
9168
%%WWWDIR%%/apps/serverinfo/l10n/es_GT.js
9168
%%WWWDIR%%/apps-pkg/serverinfo/l10n/de_DE.json
9169
%%WWWDIR%%/apps/serverinfo/l10n/es_GT.json
9169
%%WWWDIR%%/apps-pkg/serverinfo/l10n/el.js
9170
%%WWWDIR%%/apps/serverinfo/l10n/es_HN.js
9170
%%WWWDIR%%/apps-pkg/serverinfo/l10n/el.json
9171
%%WWWDIR%%/apps/serverinfo/l10n/es_HN.json
9171
%%WWWDIR%%/apps-pkg/serverinfo/l10n/en_GB.js
9172
%%WWWDIR%%/apps/serverinfo/l10n/es_MX.js
9172
%%WWWDIR%%/apps-pkg/serverinfo/l10n/en_GB.json
9173
%%WWWDIR%%/apps/serverinfo/l10n/es_MX.json
9173
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es.js
9174
%%WWWDIR%%/apps/serverinfo/l10n/es_NI.js
9174
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es.json
9175
%%WWWDIR%%/apps/serverinfo/l10n/es_NI.json
9175
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_419.js
9176
%%WWWDIR%%/apps/serverinfo/l10n/es_PA.js
9176
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_419.json
9177
%%WWWDIR%%/apps/serverinfo/l10n/es_PA.json
9177
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_AR.js
9178
%%WWWDIR%%/apps/serverinfo/l10n/es_PE.js
9178
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_AR.json
9179
%%WWWDIR%%/apps/serverinfo/l10n/es_PE.json
9179
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_CL.js
9180
%%WWWDIR%%/apps/serverinfo/l10n/es_PR.js
9180
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_CL.json
9181
%%WWWDIR%%/apps/serverinfo/l10n/es_PR.json
9181
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_CO.js
9182
%%WWWDIR%%/apps/serverinfo/l10n/es_PY.js
9182
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_CO.json
9183
%%WWWDIR%%/apps/serverinfo/l10n/es_PY.json
9183
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_CR.js
9184
%%WWWDIR%%/apps/serverinfo/l10n/es_SV.js
9184
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_CR.json
9185
%%WWWDIR%%/apps/serverinfo/l10n/es_SV.json
9185
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_DO.js
9186
%%WWWDIR%%/apps/serverinfo/l10n/es_UY.js
9186
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_DO.json
9187
%%WWWDIR%%/apps/serverinfo/l10n/es_UY.json
9187
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_EC.js
9188
%%WWWDIR%%/apps/serverinfo/l10n/et_EE.js
9188
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_EC.json
9189
%%WWWDIR%%/apps/serverinfo/l10n/et_EE.json
9189
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_GT.js
9190
%%WWWDIR%%/apps/serverinfo/l10n/eu.js
9190
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_GT.json
9191
%%WWWDIR%%/apps/serverinfo/l10n/eu.json
9191
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_HN.js
9192
%%WWWDIR%%/apps/serverinfo/l10n/fi.js
9192
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_HN.json
9193
%%WWWDIR%%/apps/serverinfo/l10n/fi.json
9193
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_MX.js
9194
%%WWWDIR%%/apps/serverinfo/l10n/fr.js
9194
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_MX.json
9195
%%WWWDIR%%/apps/serverinfo/l10n/fr.json
9195
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_NI.js
9196
%%WWWDIR%%/apps/serverinfo/l10n/gl.js
9196
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_NI.json
9197
%%WWWDIR%%/apps/serverinfo/l10n/gl.json
9197
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PA.js
9198
%%WWWDIR%%/apps/serverinfo/l10n/hu.js
9198
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PA.json
9199
%%WWWDIR%%/apps/serverinfo/l10n/hu.json
9199
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PE.js
9200
%%WWWDIR%%/apps/serverinfo/l10n/ia.js
9200
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PE.json
9201
%%WWWDIR%%/apps/serverinfo/l10n/ia.json
9201
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PR.js
9202
%%WWWDIR%%/apps/serverinfo/l10n/id.js
9202
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PR.json
9203
%%WWWDIR%%/apps/serverinfo/l10n/id.json
9203
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PY.js
9204
%%WWWDIR%%/apps/serverinfo/l10n/is.js
9204
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PY.json
9205
%%WWWDIR%%/apps/serverinfo/l10n/is.json
9205
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_SV.js
9206
%%WWWDIR%%/apps/serverinfo/l10n/it.js
9206
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_SV.json
9207
%%WWWDIR%%/apps/serverinfo/l10n/it.json
9207
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_UY.js
9208
%%WWWDIR%%/apps/serverinfo/l10n/ja.js
9208
%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_UY.json
9209
%%WWWDIR%%/apps/serverinfo/l10n/ja.json
9209
%%WWWDIR%%/apps-pkg/serverinfo/l10n/et_EE.js
9210
%%WWWDIR%%/apps/serverinfo/l10n/ka_GE.js
9210
%%WWWDIR%%/apps-pkg/serverinfo/l10n/et_EE.json
9211
%%WWWDIR%%/apps/serverinfo/l10n/ka_GE.json
9211
%%WWWDIR%%/apps-pkg/serverinfo/l10n/eu.js
9212
%%WWWDIR%%/apps/serverinfo/l10n/ko.js
9212
%%WWWDIR%%/apps-pkg/serverinfo/l10n/eu.json
9213
%%WWWDIR%%/apps/serverinfo/l10n/ko.json
9213
%%WWWDIR%%/apps-pkg/serverinfo/l10n/fi.js
9214
%%WWWDIR%%/apps/serverinfo/l10n/lt_LT.js
9214
%%WWWDIR%%/apps-pkg/serverinfo/l10n/fi.json
9215
%%WWWDIR%%/apps/serverinfo/l10n/lt_LT.json
9215
%%WWWDIR%%/apps-pkg/serverinfo/l10n/fr.js
9216
%%WWWDIR%%/apps/serverinfo/l10n/lv.js
9216
%%WWWDIR%%/apps-pkg/serverinfo/l10n/fr.json
9217
%%WWWDIR%%/apps/serverinfo/l10n/lv.json
9217
%%WWWDIR%%/apps-pkg/serverinfo/l10n/gl.js
9218
%%WWWDIR%%/apps/serverinfo/l10n/mn.js
9218
%%WWWDIR%%/apps-pkg/serverinfo/l10n/gl.json
9219
%%WWWDIR%%/apps/serverinfo/l10n/mn.json
9219
%%WWWDIR%%/apps-pkg/serverinfo/l10n/hu.js
9220
%%WWWDIR%%/apps/serverinfo/l10n/nb.js
9220
%%WWWDIR%%/apps-pkg/serverinfo/l10n/hu.json
9221
%%WWWDIR%%/apps/serverinfo/l10n/nb.json
9221
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ia.js
9222
%%WWWDIR%%/apps/serverinfo/l10n/nl.js
9222
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ia.json
9223
%%WWWDIR%%/apps/serverinfo/l10n/nl.json
9223
%%WWWDIR%%/apps-pkg/serverinfo/l10n/id.js
9224
%%WWWDIR%%/apps/serverinfo/l10n/nn_NO.js
9224
%%WWWDIR%%/apps-pkg/serverinfo/l10n/id.json
9225
%%WWWDIR%%/apps/serverinfo/l10n/nn_NO.json
9225
%%WWWDIR%%/apps-pkg/serverinfo/l10n/is.js
9226
%%WWWDIR%%/apps/serverinfo/l10n/pl.js
9226
%%WWWDIR%%/apps-pkg/serverinfo/l10n/is.json
9227
%%WWWDIR%%/apps/serverinfo/l10n/pl.json
9227
%%WWWDIR%%/apps-pkg/serverinfo/l10n/it.js
9228
%%WWWDIR%%/apps/serverinfo/l10n/pt_BR.js
9228
%%WWWDIR%%/apps-pkg/serverinfo/l10n/it.json
9229
%%WWWDIR%%/apps/serverinfo/l10n/pt_BR.json
9229
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ja.js
9230
%%WWWDIR%%/apps/serverinfo/l10n/ru.js
9230
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ja.json
9231
%%WWWDIR%%/apps/serverinfo/l10n/ru.json
9231
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ka_GE.js
9232
%%WWWDIR%%/apps/serverinfo/l10n/sk.js
9232
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ka_GE.json
9233
%%WWWDIR%%/apps/serverinfo/l10n/sk.json
9233
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ko.js
9234
%%WWWDIR%%/apps/serverinfo/l10n/sl.js
9234
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ko.json
9235
%%WWWDIR%%/apps/serverinfo/l10n/sl.json
9235
%%WWWDIR%%/apps-pkg/serverinfo/l10n/lt_LT.js
9236
%%WWWDIR%%/apps/serverinfo/l10n/sq.js
9236
%%WWWDIR%%/apps-pkg/serverinfo/l10n/lt_LT.json
9237
%%WWWDIR%%/apps/serverinfo/l10n/sq.json
9237
%%WWWDIR%%/apps-pkg/serverinfo/l10n/lv.js
9238
%%WWWDIR%%/apps/serverinfo/l10n/sr.js
9238
%%WWWDIR%%/apps-pkg/serverinfo/l10n/lv.json
9239
%%WWWDIR%%/apps/serverinfo/l10n/sr.json
9239
%%WWWDIR%%/apps-pkg/serverinfo/l10n/mn.js
9240
%%WWWDIR%%/apps/serverinfo/l10n/sv.js
9240
%%WWWDIR%%/apps-pkg/serverinfo/l10n/mn.json
9241
%%WWWDIR%%/apps/serverinfo/l10n/sv.json
9241
%%WWWDIR%%/apps-pkg/serverinfo/l10n/nb.js
9242
%%WWWDIR%%/apps/serverinfo/l10n/tr.js
9242
%%WWWDIR%%/apps-pkg/serverinfo/l10n/nb.json
9243
%%WWWDIR%%/apps/serverinfo/l10n/tr.json
9243
%%WWWDIR%%/apps-pkg/serverinfo/l10n/nl.js
9244
%%WWWDIR%%/apps/serverinfo/l10n/vi.js
9244
%%WWWDIR%%/apps-pkg/serverinfo/l10n/nl.json
9245
%%WWWDIR%%/apps/serverinfo/l10n/vi.json
9245
%%WWWDIR%%/apps-pkg/serverinfo/l10n/nn_NO.js
9246
%%WWWDIR%%/apps/serverinfo/l10n/zh_CN.js
9246
%%WWWDIR%%/apps-pkg/serverinfo/l10n/nn_NO.json
9247
%%WWWDIR%%/apps/serverinfo/l10n/zh_CN.json
9247
%%WWWDIR%%/apps-pkg/serverinfo/l10n/pl.js
9248
%%WWWDIR%%/apps/serverinfo/l10n/zh_TW.js
9248
%%WWWDIR%%/apps-pkg/serverinfo/l10n/pl.json
9249
%%WWWDIR%%/apps/serverinfo/l10n/zh_TW.json
9249
%%WWWDIR%%/apps-pkg/serverinfo/l10n/pt_BR.js
9250
%%WWWDIR%%/apps/serverinfo/lib/Controller/ApiController.php
9250
%%WWWDIR%%/apps-pkg/serverinfo/l10n/pt_BR.json
9251
%%WWWDIR%%/apps/serverinfo/lib/Controller/PageController.php
9251
%%WWWDIR%%/apps-pkg/serverinfo/l10n/pt_PT.js
9252
%%WWWDIR%%/apps/serverinfo/lib/DatabaseStatistics.php
9252
%%WWWDIR%%/apps-pkg/serverinfo/l10n/pt_PT.json
9253
%%WWWDIR%%/apps/serverinfo/lib/PhpStatistics.php
9253
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ru.js
9254
%%WWWDIR%%/apps/serverinfo/lib/SessionStatistics.php
9254
%%WWWDIR%%/apps-pkg/serverinfo/l10n/ru.json
9255
%%WWWDIR%%/apps/serverinfo/lib/Settings/AdminSection.php
9255
%%WWWDIR%%/apps-pkg/serverinfo/l10n/sk.js
9256
%%WWWDIR%%/apps/serverinfo/lib/Settings/AdminSettings.php
9256
%%WWWDIR%%/apps-pkg/serverinfo/l10n/sk.json
9257
%%WWWDIR%%/apps/serverinfo/lib/ShareStatistics.php
9257
%%WWWDIR%%/apps-pkg/serverinfo/l10n/sl.js
9258
%%WWWDIR%%/apps/serverinfo/lib/StorageStatistics.php
9258
%%WWWDIR%%/apps-pkg/serverinfo/l10n/sl.json
9259
%%WWWDIR%%/apps/serverinfo/lib/SystemStatistics.php
9259
%%WWWDIR%%/apps-pkg/serverinfo/l10n/sq.js
9260
%%WWWDIR%%/apps/serverinfo/templates/settings-admin.php
9260
%%WWWDIR%%/apps-pkg/serverinfo/l10n/sq.json
9261
%%WWWDIR%%/apps/sharebymail/appinfo/app.php
9261
%%WWWDIR%%/apps-pkg/serverinfo/l10n/sr.js
9262
%%WWWDIR%%/apps/sharebymail/appinfo/info.xml
9262
%%WWWDIR%%/apps-pkg/serverinfo/l10n/sr.json
9263
%%WWWDIR%%/apps/sharebymail/appinfo/signature.json
9263
%%WWWDIR%%/apps-pkg/serverinfo/l10n/sv.js
9264
%%WWWDIR%%/apps/sharebymail/composer/autoload.php
9264
%%WWWDIR%%/apps-pkg/serverinfo/l10n/sv.json
9265
%%WWWDIR%%/apps/sharebymail/composer/composer.json
9265
%%WWWDIR%%/apps-pkg/serverinfo/l10n/tr.js
9266
%%WWWDIR%%/apps/sharebymail/composer/composer/ClassLoader.php
9266
%%WWWDIR%%/apps-pkg/serverinfo/l10n/tr.json
9267
%%WWWDIR%%/apps/sharebymail/composer/composer/LICENSE
9267
%%WWWDIR%%/apps-pkg/serverinfo/l10n/vi.js
9268
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_classmap.php
9268
%%WWWDIR%%/apps-pkg/serverinfo/l10n/vi.json
9269
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_namespaces.php
9269
%%WWWDIR%%/apps-pkg/serverinfo/l10n/zh_CN.js
9270
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_psr4.php
9270
%%WWWDIR%%/apps-pkg/serverinfo/l10n/zh_CN.json
9271
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_real.php
9271
%%WWWDIR%%/apps-pkg/serverinfo/l10n/zh_TW.js
9272
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_static.php
9272
%%WWWDIR%%/apps-pkg/serverinfo/l10n/zh_TW.json
9273
%%WWWDIR%%/apps/sharebymail/css/settings-admin.css
9273
%%WWWDIR%%/apps-pkg/serverinfo/lib/Controller/ApiController.php
9274
%%WWWDIR%%/apps/sharebymail/img/app.svg
9274
%%WWWDIR%%/apps-pkg/serverinfo/lib/Controller/PageController.php
9275
%%WWWDIR%%/apps/sharebymail/js/settings-admin.js
9275
%%WWWDIR%%/apps-pkg/serverinfo/lib/DatabaseStatistics.php
9276
%%WWWDIR%%/apps/sharebymail/l10n/.gitkeep
9276
%%WWWDIR%%/apps-pkg/serverinfo/lib/PhpStatistics.php
9277
%%WWWDIR%%/apps/sharebymail/l10n/ast.js
9277
%%WWWDIR%%/apps-pkg/serverinfo/lib/SessionStatistics.php
9278
%%WWWDIR%%/apps/sharebymail/l10n/ast.json
9278
%%WWWDIR%%/apps-pkg/serverinfo/lib/Settings/AdminSection.php
9279
%%WWWDIR%%/apps/sharebymail/l10n/ca.js
9279
%%WWWDIR%%/apps-pkg/serverinfo/lib/Settings/AdminSettings.php
9280
%%WWWDIR%%/apps/sharebymail/l10n/ca.json
9280
%%WWWDIR%%/apps-pkg/serverinfo/lib/ShareStatistics.php
9281
%%WWWDIR%%/apps/sharebymail/l10n/cs.js
9281
%%WWWDIR%%/apps-pkg/serverinfo/lib/StorageStatistics.php
9282
%%WWWDIR%%/apps/sharebymail/l10n/cs.json
9282
%%WWWDIR%%/apps-pkg/serverinfo/lib/SystemStatistics.php
9283
%%WWWDIR%%/apps/sharebymail/l10n/cs_CZ.js
9283
%%WWWDIR%%/apps-pkg/serverinfo/templates/settings-admin.php
9284
%%WWWDIR%%/apps/sharebymail/l10n/cs_CZ.json
9284
%%WWWDIR%%/apps-pkg/sharebymail/appinfo/app.php
9285
%%WWWDIR%%/apps/sharebymail/l10n/da.js
9285
%%WWWDIR%%/apps-pkg/sharebymail/appinfo/info.xml
9286
%%WWWDIR%%/apps/sharebymail/l10n/da.json
9286
%%WWWDIR%%/apps-pkg/sharebymail/appinfo/signature.json
9287
%%WWWDIR%%/apps/sharebymail/l10n/de.js
9287
%%WWWDIR%%/apps-pkg/sharebymail/composer/autoload.php
9288
%%WWWDIR%%/apps/sharebymail/l10n/de.json
9288
%%WWWDIR%%/apps-pkg/sharebymail/composer/composer.json
9289
%%WWWDIR%%/apps/sharebymail/l10n/de_DE.js
9289
%%WWWDIR%%/apps-pkg/sharebymail/composer/composer/ClassLoader.php
9290
%%WWWDIR%%/apps/sharebymail/l10n/de_DE.json
9290
%%WWWDIR%%/apps-pkg/sharebymail/composer/composer/LICENSE
9291
%%WWWDIR%%/apps/sharebymail/l10n/el.js
9291
%%WWWDIR%%/apps-pkg/sharebymail/composer/composer/autoload_classmap.php
9292
%%WWWDIR%%/apps/sharebymail/l10n/el.json
9292
%%WWWDIR%%/apps-pkg/sharebymail/composer/composer/autoload_namespaces.php
9293
%%WWWDIR%%/apps/sharebymail/l10n/en_GB.js
9293
%%WWWDIR%%/apps-pkg/sharebymail/composer/composer/autoload_psr4.php
9294
%%WWWDIR%%/apps/sharebymail/l10n/en_GB.json
9294
%%WWWDIR%%/apps-pkg/sharebymail/composer/composer/autoload_real.php
9295
%%WWWDIR%%/apps/sharebymail/l10n/es.js
9295
%%WWWDIR%%/apps-pkg/sharebymail/composer/composer/autoload_static.php
9296
%%WWWDIR%%/apps/sharebymail/l10n/es.json
9296
%%WWWDIR%%/apps-pkg/sharebymail/css/settings-admin.css
9297
%%WWWDIR%%/apps/sharebymail/l10n/es_419.js
9297
%%WWWDIR%%/apps-pkg/sharebymail/img/app.svg
9298
%%WWWDIR%%/apps/sharebymail/l10n/es_419.json
9298
%%WWWDIR%%/apps-pkg/sharebymail/js/settings-admin.js
9299
%%WWWDIR%%/apps/sharebymail/l10n/es_AR.js
9299
%%WWWDIR%%/apps-pkg/sharebymail/l10n/.gitkeep
9300
%%WWWDIR%%/apps/sharebymail/l10n/es_AR.json
9300
%%WWWDIR%%/apps-pkg/sharebymail/l10n/ast.js
9301
%%WWWDIR%%/apps/sharebymail/l10n/es_CL.js
9301
%%WWWDIR%%/apps-pkg/sharebymail/l10n/ast.json
9302
%%WWWDIR%%/apps/sharebymail/l10n/es_CL.json
9302
%%WWWDIR%%/apps-pkg/sharebymail/l10n/ca.js
9303
%%WWWDIR%%/apps/sharebymail/l10n/es_CO.js
9303
%%WWWDIR%%/apps-pkg/sharebymail/l10n/ca.json
9304
%%WWWDIR%%/apps/sharebymail/l10n/es_CO.json
9304
%%WWWDIR%%/apps-pkg/sharebymail/l10n/cs.js
9305
%%WWWDIR%%/apps/sharebymail/l10n/es_CR.js
9305
%%WWWDIR%%/apps-pkg/sharebymail/l10n/cs.json
9306
%%WWWDIR%%/apps/sharebymail/l10n/es_CR.json
9306
%%WWWDIR%%/apps-pkg/sharebymail/l10n/cs_CZ.js
9307
%%WWWDIR%%/apps/sharebymail/l10n/es_DO.js
9307
%%WWWDIR%%/apps-pkg/sharebymail/l10n/cs_CZ.json
9308
%%WWWDIR%%/apps/sharebymail/l10n/es_DO.json
9308
%%WWWDIR%%/apps-pkg/sharebymail/l10n/da.js
9309
%%WWWDIR%%/apps/sharebymail/l10n/es_EC.js
9309
%%WWWDIR%%/apps-pkg/sharebymail/l10n/da.json
9310
%%WWWDIR%%/apps/sharebymail/l10n/es_EC.json
9310
%%WWWDIR%%/apps-pkg/sharebymail/l10n/de.js
9311
%%WWWDIR%%/apps/sharebymail/l10n/es_GT.js
9311
%%WWWDIR%%/apps-pkg/sharebymail/l10n/de.json
9312
%%WWWDIR%%/apps/sharebymail/l10n/es_GT.json
9312
%%WWWDIR%%/apps-pkg/sharebymail/l10n/de_DE.js
9313
%%WWWDIR%%/apps/sharebymail/l10n/es_HN.js
9313
%%WWWDIR%%/apps-pkg/sharebymail/l10n/de_DE.json
9314
%%WWWDIR%%/apps/sharebymail/l10n/es_HN.json
9314
%%WWWDIR%%/apps-pkg/sharebymail/l10n/el.js
9315
%%WWWDIR%%/apps/sharebymail/l10n/es_MX.js
9315
%%WWWDIR%%/apps-pkg/sharebymail/l10n/el.json
9316
%%WWWDIR%%/apps/sharebymail/l10n/es_MX.json
9316
%%WWWDIR%%/apps-pkg/sharebymail/l10n/en_GB.js
9317
%%WWWDIR%%/apps/sharebymail/l10n/es_NI.js
9317
%%WWWDIR%%/apps-pkg/sharebymail/l10n/en_GB.json
9318
%%WWWDIR%%/apps/sharebymail/l10n/es_NI.json
9318
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es.js
9319
%%WWWDIR%%/apps/sharebymail/l10n/es_PA.js
9319
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es.json
9320
%%WWWDIR%%/apps/sharebymail/l10n/es_PA.json
9320
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_419.js
9321
%%WWWDIR%%/apps/sharebymail/l10n/es_PE.js
9321
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_419.json
9322
%%WWWDIR%%/apps/sharebymail/l10n/es_PE.json
9322
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_AR.js
9323
%%WWWDIR%%/apps/sharebymail/l10n/es_PR.js
9323
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_AR.json
9324
%%WWWDIR%%/apps/sharebymail/l10n/es_PR.json
9324
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_CL.js
9325
%%WWWDIR%%/apps/sharebymail/l10n/es_PY.js
9325
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_CL.json
9326
%%WWWDIR%%/apps/sharebymail/l10n/es_PY.json
9326
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_CO.js
9327
%%WWWDIR%%/apps/sharebymail/l10n/es_SV.js
9327
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_CO.json
9328
%%WWWDIR%%/apps/sharebymail/l10n/es_SV.json
9328
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_CR.js
9329
%%WWWDIR%%/apps/sharebymail/l10n/es_UY.js
9329
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_CR.json
9330
%%WWWDIR%%/apps/sharebymail/l10n/es_UY.json
9330
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_DO.js
9331
%%WWWDIR%%/apps/sharebymail/l10n/fi.js
9331
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_DO.json
9332
%%WWWDIR%%/apps/sharebymail/l10n/fi.json
9332
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_EC.js
9333
%%WWWDIR%%/apps/sharebymail/l10n/fr.js
9333
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_EC.json
9334
%%WWWDIR%%/apps/sharebymail/l10n/fr.json
9334
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_GT.js
9335
%%WWWDIR%%/apps/sharebymail/l10n/gl.js
9335
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_GT.json
9336
%%WWWDIR%%/apps/sharebymail/l10n/gl.json
9336
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_HN.js
9337
%%WWWDIR%%/apps/sharebymail/l10n/hu.js
9337
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_HN.json
9338
%%WWWDIR%%/apps/sharebymail/l10n/hu.json
9338
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_MX.js
9339
%%WWWDIR%%/apps/sharebymail/l10n/ia.js
9339
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_MX.json
9340
%%WWWDIR%%/apps/sharebymail/l10n/ia.json
9340
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_NI.js
9341
%%WWWDIR%%/apps/sharebymail/l10n/id.js
9341
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_NI.json
9342
%%WWWDIR%%/apps/sharebymail/l10n/id.json
9342
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PA.js
9343
%%WWWDIR%%/apps/sharebymail/l10n/is.js
9343
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PA.json
9344
%%WWWDIR%%/apps/sharebymail/l10n/is.json
9344
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PE.js
9345
%%WWWDIR%%/apps/sharebymail/l10n/it.js
9345
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PE.json
9346
%%WWWDIR%%/apps/sharebymail/l10n/it.json
9346
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PR.js
9347
%%WWWDIR%%/apps/sharebymail/l10n/ja.js
9347
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PR.json
9348
%%WWWDIR%%/apps/sharebymail/l10n/ja.json
9348
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PY.js
9349
%%WWWDIR%%/apps/sharebymail/l10n/ka_GE.js
9349
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PY.json
9350
%%WWWDIR%%/apps/sharebymail/l10n/ka_GE.json
9350
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_SV.js
9351
%%WWWDIR%%/apps/sharebymail/l10n/ko.js
9351
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_SV.json
9352
%%WWWDIR%%/apps/sharebymail/l10n/ko.json
9352
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_UY.js
9353
%%WWWDIR%%/apps/sharebymail/l10n/lt_LT.js
9353
%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_UY.json
9354
%%WWWDIR%%/apps/sharebymail/l10n/lt_LT.json
9354
%%WWWDIR%%/apps-pkg/sharebymail/l10n/et_EE.js
9355
%%WWWDIR%%/apps/sharebymail/l10n/nb.js
9355
%%WWWDIR%%/apps-pkg/sharebymail/l10n/et_EE.json
9356
%%WWWDIR%%/apps/sharebymail/l10n/nb.json
9356
%%WWWDIR%%/apps-pkg/sharebymail/l10n/fi.js
9357
%%WWWDIR%%/apps/sharebymail/l10n/nb_NO.js
9357
%%WWWDIR%%/apps-pkg/sharebymail/l10n/fi.json
9358
%%WWWDIR%%/apps/sharebymail/l10n/nb_NO.json
9358
%%WWWDIR%%/apps-pkg/sharebymail/l10n/fr.js
9359
%%WWWDIR%%/apps/sharebymail/l10n/nl.js
9359
%%WWWDIR%%/apps-pkg/sharebymail/l10n/fr.json
9360
%%WWWDIR%%/apps/sharebymail/l10n/nl.json
9360
%%WWWDIR%%/apps-pkg/sharebymail/l10n/gl.js
9361
%%WWWDIR%%/apps/sharebymail/l10n/pl.js
9361
%%WWWDIR%%/apps-pkg/sharebymail/l10n/gl.json
9362
%%WWWDIR%%/apps/sharebymail/l10n/pl.json
9362
%%WWWDIR%%/apps-pkg/sharebymail/l10n/hu.js
9363
%%WWWDIR%%/apps/sharebymail/l10n/pt_BR.js
9363
%%WWWDIR%%/apps-pkg/sharebymail/l10n/hu.json
9364
%%WWWDIR%%/apps/sharebymail/l10n/pt_BR.json
9364
%%WWWDIR%%/apps-pkg/sharebymail/l10n/ia.js
9365
%%WWWDIR%%/apps/sharebymail/l10n/ru.js
9365
%%WWWDIR%%/apps-pkg/sharebymail/l10n/ia.json
9366
%%WWWDIR%%/apps/sharebymail/l10n/ru.json
9366
%%WWWDIR%%/apps-pkg/sharebymail/l10n/id.js
9367
%%WWWDIR%%/apps/sharebymail/l10n/sk.js
9367
%%WWWDIR%%/apps-pkg/sharebymail/l10n/id.json
9368
%%WWWDIR%%/apps/sharebymail/l10n/sk.json
9368
%%WWWDIR%%/apps-pkg/sharebymail/l10n/is.js
9369
%%WWWDIR%%/apps/sharebymail/l10n/sk_SK.js
9369
%%WWWDIR%%/apps-pkg/sharebymail/l10n/is.json
9370
%%WWWDIR%%/apps/sharebymail/l10n/sk_SK.json
9370
%%WWWDIR%%/apps-pkg/sharebymail/l10n/it.js
9371
%%WWWDIR%%/apps/sharebymail/l10n/sq.js
9371
%%WWWDIR%%/apps-pkg/sharebymail/l10n/it.json
9372
%%WWWDIR%%/apps/sharebymail/l10n/sq.json
9372
%%WWWDIR%%/apps-pkg/sharebymail/l10n/ja.js
9373
%%WWWDIR%%/apps/sharebymail/l10n/sr.js
9373
%%WWWDIR%%/apps-pkg/sharebymail/l10n/ja.json
9374
%%WWWDIR%%/apps/sharebymail/l10n/sr.json
9374
%%WWWDIR%%/apps-pkg/sharebymail/l10n/ka_GE.js
9375
%%WWWDIR%%/apps/sharebymail/l10n/sv.js
9375
%%WWWDIR%%/apps-pkg/sharebymail/l10n/ka_GE.json
9376
%%WWWDIR%%/apps/sharebymail/l10n/sv.json
9376
%%WWWDIR%%/apps-pkg/sharebymail/l10n/ko.js
9377
%%WWWDIR%%/apps/sharebymail/l10n/tr.js
9377
%%WWWDIR%%/apps-pkg/sharebymail/l10n/ko.json
9378
%%WWWDIR%%/apps/sharebymail/l10n/tr.json
9378
%%WWWDIR%%/apps-pkg/sharebymail/l10n/lt_LT.js
9379
%%WWWDIR%%/apps/sharebymail/l10n/zh_CN.js
9379
%%WWWDIR%%/apps-pkg/sharebymail/l10n/lt_LT.json
9380
%%WWWDIR%%/apps/sharebymail/l10n/zh_CN.json
9380
%%WWWDIR%%/apps-pkg/sharebymail/l10n/nb.js
9381
%%WWWDIR%%/apps/sharebymail/lib/Activity.php
9381
%%WWWDIR%%/apps-pkg/sharebymail/l10n/nb.json
9382
%%WWWDIR%%/apps/sharebymail/lib/AppInfo/Application.php
9382
%%WWWDIR%%/apps-pkg/sharebymail/l10n/nb_NO.js
9383
%%WWWDIR%%/apps/sharebymail/lib/Capabilities.php
9383
%%WWWDIR%%/apps-pkg/sharebymail/l10n/nb_NO.json
9384
%%WWWDIR%%/apps/sharebymail/lib/Settings.php
9384
%%WWWDIR%%/apps-pkg/sharebymail/l10n/nl.js
9385
%%WWWDIR%%/apps/sharebymail/lib/Settings/Admin.php
9385
%%WWWDIR%%/apps-pkg/sharebymail/l10n/nl.json
9386
%%WWWDIR%%/apps/sharebymail/lib/Settings/SettingsManager.php
9386
%%WWWDIR%%/apps-pkg/sharebymail/l10n/pl.js
9387
%%WWWDIR%%/apps/sharebymail/lib/ShareByMailProvider.php
9387
%%WWWDIR%%/apps-pkg/sharebymail/l10n/pl.json
9388
%%WWWDIR%%/apps/sharebymail/templates/settings-admin.php
9388
%%WWWDIR%%/apps-pkg/sharebymail/l10n/pt_BR.js
9389
%%WWWDIR%%/apps/survey_client/COPYING
9389
%%WWWDIR%%/apps-pkg/sharebymail/l10n/pt_BR.json
9390
%%WWWDIR%%/apps/survey_client/ISSUE_TEMPLATE.md
9390
%%WWWDIR%%/apps-pkg/sharebymail/l10n/pt_PT.js
9391
%%WWWDIR%%/apps/survey_client/appinfo/app.php
9391
%%WWWDIR%%/apps-pkg/sharebymail/l10n/pt_PT.json
9392
%%WWWDIR%%/apps/survey_client/appinfo/info.xml
9392
%%WWWDIR%%/apps-pkg/sharebymail/l10n/ru.js
9393
%%WWWDIR%%/apps/survey_client/appinfo/install.php
9393
%%WWWDIR%%/apps-pkg/sharebymail/l10n/ru.json
9394
%%WWWDIR%%/apps/survey_client/appinfo/routes.php
9394
%%WWWDIR%%/apps-pkg/sharebymail/l10n/sk.js
9395
%%WWWDIR%%/apps/survey_client/appinfo/signature.json
9395
%%WWWDIR%%/apps-pkg/sharebymail/l10n/sk.json
9396
%%WWWDIR%%/apps/survey_client/appinfo/update.php
9396
%%WWWDIR%%/apps-pkg/sharebymail/l10n/sk_SK.js
9397
%%WWWDIR%%/apps/survey_client/css/admin.css
9397
%%WWWDIR%%/apps-pkg/sharebymail/l10n/sk_SK.json
9398
%%WWWDIR%%/apps/survey_client/img/app-dark.svg
9398
%%WWWDIR%%/apps-pkg/sharebymail/l10n/sq.js
9399
%%WWWDIR%%/apps/survey_client/img/app.svg
9399
%%WWWDIR%%/apps-pkg/sharebymail/l10n/sq.json
9400
%%WWWDIR%%/apps/survey_client/js/admin.js
9400
%%WWWDIR%%/apps-pkg/sharebymail/l10n/sr.js
9401
%%WWWDIR%%/apps/survey_client/l10n/.tx/config
9401
%%WWWDIR%%/apps-pkg/sharebymail/l10n/sr.json
9402
%%WWWDIR%%/apps/survey_client/l10n/ast.js
9402
%%WWWDIR%%/apps-pkg/sharebymail/l10n/sv.js
9403
%%WWWDIR%%/apps/survey_client/l10n/ast.json
9403
%%WWWDIR%%/apps-pkg/sharebymail/l10n/sv.json
9404
%%WWWDIR%%/apps/survey_client/l10n/ca.js
9404
%%WWWDIR%%/apps-pkg/sharebymail/l10n/tr.js
9405
%%WWWDIR%%/apps/survey_client/l10n/ca.json
9405
%%WWWDIR%%/apps-pkg/sharebymail/l10n/tr.json
9406
%%WWWDIR%%/apps/survey_client/l10n/cs.js
9406
%%WWWDIR%%/apps-pkg/sharebymail/l10n/zh_CN.js
9407
%%WWWDIR%%/apps/survey_client/l10n/cs.json
9407
%%WWWDIR%%/apps-pkg/sharebymail/l10n/zh_CN.json
9408
%%WWWDIR%%/apps/survey_client/l10n/da.js
9408
%%WWWDIR%%/apps-pkg/sharebymail/lib/Activity.php
9409
%%WWWDIR%%/apps/survey_client/l10n/da.json
9409
%%WWWDIR%%/apps-pkg/sharebymail/lib/AppInfo/Application.php
9410
%%WWWDIR%%/apps/survey_client/l10n/de.js
9410
%%WWWDIR%%/apps-pkg/sharebymail/lib/Capabilities.php
9411
%%WWWDIR%%/apps/survey_client/l10n/de.json
9411
%%WWWDIR%%/apps-pkg/sharebymail/lib/Settings.php
9412
%%WWWDIR%%/apps/survey_client/l10n/de_DE.js
9412
%%WWWDIR%%/apps-pkg/sharebymail/lib/Settings/Admin.php
9413
%%WWWDIR%%/apps/survey_client/l10n/de_DE.json
9413
%%WWWDIR%%/apps-pkg/sharebymail/lib/Settings/SettingsManager.php
9414
%%WWWDIR%%/apps/survey_client/l10n/el.js
9414
%%WWWDIR%%/apps-pkg/sharebymail/lib/ShareByMailProvider.php
9415
%%WWWDIR%%/apps/survey_client/l10n/el.json
9415
%%WWWDIR%%/apps-pkg/sharebymail/templates/settings-admin.php
9416
%%WWWDIR%%/apps/survey_client/l10n/en_GB.js
9416
%%WWWDIR%%/apps-pkg/survey_client/COPYING
9417
%%WWWDIR%%/apps/survey_client/l10n/en_GB.json
9417
%%WWWDIR%%/apps-pkg/survey_client/ISSUE_TEMPLATE.md
9418
%%WWWDIR%%/apps/survey_client/l10n/es.js
9418
%%WWWDIR%%/apps-pkg/survey_client/appinfo/app.php
9419
%%WWWDIR%%/apps/survey_client/l10n/es.json
9419
%%WWWDIR%%/apps-pkg/survey_client/appinfo/info.xml
9420
%%WWWDIR%%/apps/survey_client/l10n/es_419.js
9420
%%WWWDIR%%/apps-pkg/survey_client/appinfo/install.php
9421
%%WWWDIR%%/apps/survey_client/l10n/es_419.json
9421
%%WWWDIR%%/apps-pkg/survey_client/appinfo/routes.php
9422
%%WWWDIR%%/apps/survey_client/l10n/es_CL.js
9422
%%WWWDIR%%/apps-pkg/survey_client/appinfo/signature.json
9423
%%WWWDIR%%/apps/survey_client/l10n/es_CL.json
9423
%%WWWDIR%%/apps-pkg/survey_client/appinfo/update.php
9424
%%WWWDIR%%/apps/survey_client/l10n/es_CO.js
9424
%%WWWDIR%%/apps-pkg/survey_client/css/admin.css
9425
%%WWWDIR%%/apps/survey_client/l10n/es_CO.json
9425
%%WWWDIR%%/apps-pkg/survey_client/img/app-dark.svg
9426
%%WWWDIR%%/apps/survey_client/l10n/es_CR.js
9426
%%WWWDIR%%/apps-pkg/survey_client/img/app.svg
9427
%%WWWDIR%%/apps/survey_client/l10n/es_CR.json
9427
%%WWWDIR%%/apps-pkg/survey_client/js/admin.js
9428
%%WWWDIR%%/apps/survey_client/l10n/es_DO.js
9428
%%WWWDIR%%/apps-pkg/survey_client/l10n/.tx/config
9429
%%WWWDIR%%/apps/survey_client/l10n/es_DO.json
9429
%%WWWDIR%%/apps-pkg/survey_client/l10n/ast.js
9430
%%WWWDIR%%/apps/survey_client/l10n/es_EC.js
9430
%%WWWDIR%%/apps-pkg/survey_client/l10n/ast.json
9431
%%WWWDIR%%/apps/survey_client/l10n/es_EC.json
9431
%%WWWDIR%%/apps-pkg/survey_client/l10n/ca.js
9432
%%WWWDIR%%/apps/survey_client/l10n/es_GT.js
9432
%%WWWDIR%%/apps-pkg/survey_client/l10n/ca.json
9433
%%WWWDIR%%/apps/survey_client/l10n/es_GT.json
9433
%%WWWDIR%%/apps-pkg/survey_client/l10n/cs.js
9434
%%WWWDIR%%/apps/survey_client/l10n/es_HN.js
9434
%%WWWDIR%%/apps-pkg/survey_client/l10n/cs.json
9435
%%WWWDIR%%/apps/survey_client/l10n/es_HN.json
9435
%%WWWDIR%%/apps-pkg/survey_client/l10n/da.js
9436
%%WWWDIR%%/apps/survey_client/l10n/es_MX.js
9436
%%WWWDIR%%/apps-pkg/survey_client/l10n/da.json
9437
%%WWWDIR%%/apps/survey_client/l10n/es_MX.json
9437
%%WWWDIR%%/apps-pkg/survey_client/l10n/de.js
9438
%%WWWDIR%%/apps/survey_client/l10n/es_NI.js
9438
%%WWWDIR%%/apps-pkg/survey_client/l10n/de.json
9439
%%WWWDIR%%/apps/survey_client/l10n/es_NI.json
9439
%%WWWDIR%%/apps-pkg/survey_client/l10n/de_DE.js
9440
%%WWWDIR%%/apps/survey_client/l10n/es_PA.js
9440
%%WWWDIR%%/apps-pkg/survey_client/l10n/de_DE.json
9441
%%WWWDIR%%/apps/survey_client/l10n/es_PA.json
9441
%%WWWDIR%%/apps-pkg/survey_client/l10n/el.js
9442
%%WWWDIR%%/apps/survey_client/l10n/es_PE.js
9442
%%WWWDIR%%/apps-pkg/survey_client/l10n/el.json
9443
%%WWWDIR%%/apps/survey_client/l10n/es_PE.json
9443
%%WWWDIR%%/apps-pkg/survey_client/l10n/en_GB.js
9444
%%WWWDIR%%/apps/survey_client/l10n/es_PR.js
9444
%%WWWDIR%%/apps-pkg/survey_client/l10n/en_GB.json
9445
%%WWWDIR%%/apps/survey_client/l10n/es_PR.json
9445
%%WWWDIR%%/apps-pkg/survey_client/l10n/es.js
9446
%%WWWDIR%%/apps/survey_client/l10n/es_PY.js
9446
%%WWWDIR%%/apps-pkg/survey_client/l10n/es.json
9447
%%WWWDIR%%/apps/survey_client/l10n/es_PY.json
9447
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_419.js
9448
%%WWWDIR%%/apps/survey_client/l10n/es_SV.js
9448
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_419.json
9449
%%WWWDIR%%/apps/survey_client/l10n/es_SV.json
9449
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_CL.js
9450
%%WWWDIR%%/apps/survey_client/l10n/es_UY.js
9450
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_CL.json
9451
%%WWWDIR%%/apps/survey_client/l10n/es_UY.json
9451
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_CO.js
9452
%%WWWDIR%%/apps/survey_client/l10n/et_EE.js
9452
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_CO.json
9453
%%WWWDIR%%/apps/survey_client/l10n/et_EE.json
9453
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_CR.js
9454
%%WWWDIR%%/apps/survey_client/l10n/fi.js
9454
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_CR.json
9455
%%WWWDIR%%/apps/survey_client/l10n/fi.json
9455
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_DO.js
9456
%%WWWDIR%%/apps/survey_client/l10n/fr.js
9456
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_DO.json
9457
%%WWWDIR%%/apps/survey_client/l10n/fr.json
9457
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_EC.js
9458
%%WWWDIR%%/apps/survey_client/l10n/hu.js
9458
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_EC.json
9459
%%WWWDIR%%/apps/survey_client/l10n/hu.json
9459
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_GT.js
9460
%%WWWDIR%%/apps/survey_client/l10n/is.js
9460
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_GT.json
9461
%%WWWDIR%%/apps/survey_client/l10n/is.json
9461
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_HN.js
9462
%%WWWDIR%%/apps/survey_client/l10n/it.js
9462
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_HN.json
9463
%%WWWDIR%%/apps/survey_client/l10n/it.json
9463
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_MX.js
9464
%%WWWDIR%%/apps/survey_client/l10n/ja.js
9464
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_MX.json
9465
%%WWWDIR%%/apps/survey_client/l10n/ja.json
9465
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_NI.js
9466
%%WWWDIR%%/apps/survey_client/l10n/ka_GE.js
9466
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_NI.json
9467
%%WWWDIR%%/apps/survey_client/l10n/ka_GE.json
9467
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PA.js
9468
%%WWWDIR%%/apps/survey_client/l10n/ko.js
9468
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PA.json
9469
%%WWWDIR%%/apps/survey_client/l10n/ko.json
9469
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PE.js
9470
%%WWWDIR%%/apps/survey_client/l10n/lt_LT.js
9470
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PE.json
9471
%%WWWDIR%%/apps/survey_client/l10n/lt_LT.json
9471
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PR.js
9472
%%WWWDIR%%/apps/survey_client/l10n/lv.js
9472
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PR.json
9473
%%WWWDIR%%/apps/survey_client/l10n/lv.json
9473
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PY.js
9474
%%WWWDIR%%/apps/survey_client/l10n/mn.js
9474
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PY.json
9475
%%WWWDIR%%/apps/survey_client/l10n/mn.json
9475
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_SV.js
9476
%%WWWDIR%%/apps/survey_client/l10n/nb.js
9476
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_SV.json
9477
%%WWWDIR%%/apps/survey_client/l10n/nb.json
9477
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_UY.js
9478
%%WWWDIR%%/apps/survey_client/l10n/nl.js
9478
%%WWWDIR%%/apps-pkg/survey_client/l10n/es_UY.json
9479
%%WWWDIR%%/apps/survey_client/l10n/nl.json
9479
%%WWWDIR%%/apps-pkg/survey_client/l10n/et_EE.js
9480
%%WWWDIR%%/apps/survey_client/l10n/pl.js
9480
%%WWWDIR%%/apps-pkg/survey_client/l10n/et_EE.json
9481
%%WWWDIR%%/apps/survey_client/l10n/pl.json
9481
%%WWWDIR%%/apps-pkg/survey_client/l10n/fi.js
9482
%%WWWDIR%%/apps/survey_client/l10n/pt_BR.js
9482
%%WWWDIR%%/apps-pkg/survey_client/l10n/fi.json
9483
%%WWWDIR%%/apps/survey_client/l10n/pt_BR.json
9483
%%WWWDIR%%/apps-pkg/survey_client/l10n/fr.js
9484
%%WWWDIR%%/apps/survey_client/l10n/ru.js
9484
%%WWWDIR%%/apps-pkg/survey_client/l10n/fr.json
9485
%%WWWDIR%%/apps/survey_client/l10n/ru.json
9485
%%WWWDIR%%/apps-pkg/survey_client/l10n/hu.js
9486
%%WWWDIR%%/apps/survey_client/l10n/sk.js
9486
%%WWWDIR%%/apps-pkg/survey_client/l10n/hu.json
9487
%%WWWDIR%%/apps/survey_client/l10n/sk.json
9487
%%WWWDIR%%/apps-pkg/survey_client/l10n/is.js
9488
%%WWWDIR%%/apps/survey_client/l10n/sq.js
9488
%%WWWDIR%%/apps-pkg/survey_client/l10n/is.json
9489
%%WWWDIR%%/apps/survey_client/l10n/sq.json
9489
%%WWWDIR%%/apps-pkg/survey_client/l10n/it.js
9490
%%WWWDIR%%/apps/survey_client/l10n/sr.js
9490
%%WWWDIR%%/apps-pkg/survey_client/l10n/it.json
9491
%%WWWDIR%%/apps/survey_client/l10n/sr.json
9491
%%WWWDIR%%/apps-pkg/survey_client/l10n/ja.js
9492
%%WWWDIR%%/apps/survey_client/l10n/sv.js
9492
%%WWWDIR%%/apps-pkg/survey_client/l10n/ja.json
9493
%%WWWDIR%%/apps/survey_client/l10n/sv.json
9493
%%WWWDIR%%/apps-pkg/survey_client/l10n/ka_GE.js
9494
%%WWWDIR%%/apps/survey_client/l10n/th.js
9494
%%WWWDIR%%/apps-pkg/survey_client/l10n/ka_GE.json
9495
%%WWWDIR%%/apps/survey_client/l10n/th.json
9495
%%WWWDIR%%/apps-pkg/survey_client/l10n/ko.js
9496
%%WWWDIR%%/apps/survey_client/l10n/tr.js
9496
%%WWWDIR%%/apps-pkg/survey_client/l10n/ko.json
9497
%%WWWDIR%%/apps/survey_client/l10n/tr.json
9497
%%WWWDIR%%/apps-pkg/survey_client/l10n/lt_LT.js
9498
%%WWWDIR%%/apps/survey_client/l10n/zh_CN.js
9498
%%WWWDIR%%/apps-pkg/survey_client/l10n/lt_LT.json
9499
%%WWWDIR%%/apps/survey_client/l10n/zh_CN.json
9499
%%WWWDIR%%/apps-pkg/survey_client/l10n/lv.js
9500
%%WWWDIR%%/apps/survey_client/lib/AppInfo/Application.php
9500
%%WWWDIR%%/apps-pkg/survey_client/l10n/lv.json
9501
%%WWWDIR%%/apps/survey_client/lib/BackgroundJobs/AdminNotification.php
9501
%%WWWDIR%%/apps-pkg/survey_client/l10n/mn.js
9502
%%WWWDIR%%/apps/survey_client/lib/BackgroundJobs/MonthlyReport.php
9502
%%WWWDIR%%/apps-pkg/survey_client/l10n/mn.json
9503
%%WWWDIR%%/apps/survey_client/lib/Categories/Apps.php
9503
%%WWWDIR%%/apps-pkg/survey_client/l10n/nb.js
9504
%%WWWDIR%%/apps/survey_client/lib/Categories/Database.php
9504
%%WWWDIR%%/apps-pkg/survey_client/l10n/nb.json
9505
%%WWWDIR%%/apps/survey_client/lib/Categories/Encryption.php
9505
%%WWWDIR%%/apps-pkg/survey_client/l10n/nl.js
9506
%%WWWDIR%%/apps/survey_client/lib/Categories/FilesSharing.php
9506
%%WWWDIR%%/apps-pkg/survey_client/l10n/nl.json
9507
%%WWWDIR%%/apps/survey_client/lib/Categories/ICategory.php
9507
%%WWWDIR%%/apps-pkg/survey_client/l10n/pl.js
9508
%%WWWDIR%%/apps/survey_client/lib/Categories/Php.php
9508
%%WWWDIR%%/apps-pkg/survey_client/l10n/pl.json
9509
%%WWWDIR%%/apps/survey_client/lib/Categories/Server.php
9509
%%WWWDIR%%/apps-pkg/survey_client/l10n/pt_BR.js
9510
%%WWWDIR%%/apps/survey_client/lib/Categories/Stats.php
9510
%%WWWDIR%%/apps-pkg/survey_client/l10n/pt_BR.json
9511
%%WWWDIR%%/apps/survey_client/lib/Collector.php
9511
%%WWWDIR%%/apps-pkg/survey_client/l10n/pt_PT.js
9512
%%WWWDIR%%/apps/survey_client/lib/Controller/EndpointController.php
9512
%%WWWDIR%%/apps-pkg/survey_client/l10n/pt_PT.json
9513
%%WWWDIR%%/apps/survey_client/lib/Notifier.php
9513
%%WWWDIR%%/apps-pkg/survey_client/l10n/ru.js
9514
%%WWWDIR%%/apps/survey_client/lib/Settings/AdminSection.php
9514
%%WWWDIR%%/apps-pkg/survey_client/l10n/ru.json
9515
%%WWWDIR%%/apps/survey_client/lib/Settings/AdminSettings.php
9515
%%WWWDIR%%/apps-pkg/survey_client/l10n/sk.js
9516
%%WWWDIR%%/apps/survey_client/templates/admin.php
9516
%%WWWDIR%%/apps-pkg/survey_client/l10n/sk.json
9517
%%WWWDIR%%/apps/systemtags/appinfo/app.php
9517
%%WWWDIR%%/apps-pkg/survey_client/l10n/sq.js
9518
%%WWWDIR%%/apps/systemtags/appinfo/info.xml
9518
%%WWWDIR%%/apps-pkg/survey_client/l10n/sq.json
9519
%%WWWDIR%%/apps/systemtags/appinfo/routes.php
9519
%%WWWDIR%%/apps-pkg/survey_client/l10n/sr.js
9520
%%WWWDIR%%/apps/systemtags/appinfo/signature.json
9520
%%WWWDIR%%/apps-pkg/survey_client/l10n/sr.json
9521
%%WWWDIR%%/apps/systemtags/composer/autoload.php
9521
%%WWWDIR%%/apps-pkg/survey_client/l10n/sv.js
9522
%%WWWDIR%%/apps/systemtags/composer/composer.json
9522
%%WWWDIR%%/apps-pkg/survey_client/l10n/sv.json
9523
%%WWWDIR%%/apps/systemtags/composer/composer/ClassLoader.php
9523
%%WWWDIR%%/apps-pkg/survey_client/l10n/th.js
9524
%%WWWDIR%%/apps/systemtags/composer/composer/LICENSE
9524
%%WWWDIR%%/apps-pkg/survey_client/l10n/th.json
9525
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_classmap.php
9525
%%WWWDIR%%/apps-pkg/survey_client/l10n/tr.js
9526
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_namespaces.php
9526
%%WWWDIR%%/apps-pkg/survey_client/l10n/tr.json
9527
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_psr4.php
9527
%%WWWDIR%%/apps-pkg/survey_client/l10n/zh_CN.js
9528
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_real.php
9528
%%WWWDIR%%/apps-pkg/survey_client/l10n/zh_CN.json
9529
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_static.php
9529
%%WWWDIR%%/apps-pkg/survey_client/lib/AppInfo/Application.php
9530
%%WWWDIR%%/apps/systemtags/css/systemtagsfilelist.css
9530
%%WWWDIR%%/apps-pkg/survey_client/lib/BackgroundJobs/AdminNotification.php
9531
%%WWWDIR%%/apps/systemtags/img/app.svg
9531
%%WWWDIR%%/apps-pkg/survey_client/lib/BackgroundJobs/MonthlyReport.php
9532
%%WWWDIR%%/apps/systemtags/img/tag.svg
9532
%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/Apps.php
9533
%%WWWDIR%%/apps/systemtags/js/admin.js
9533
%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/Database.php
9534
%%WWWDIR%%/apps/systemtags/js/app.js
9534
%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/Encryption.php
9535
%%WWWDIR%%/apps/systemtags/js/filesplugin.js
9535
%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/FilesSharing.php
9536
%%WWWDIR%%/apps/systemtags/js/merged.json
9536
%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/ICategory.php
9537
%%WWWDIR%%/apps/systemtags/js/systemtagsfilelist.js
9537
%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/Php.php
9538
%%WWWDIR%%/apps/systemtags/js/systemtagsinfoview.js
9538
%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/Server.php
9539
%%WWWDIR%%/apps/systemtags/js/systemtagsinfoviewtoggleview.js
9539
%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/Stats.php
9540
%%WWWDIR%%/apps/systemtags/l10n/.gitkeep
9540
%%WWWDIR%%/apps-pkg/survey_client/lib/Collector.php
9541
%%WWWDIR%%/apps/systemtags/l10n/ar.js
9541
%%WWWDIR%%/apps-pkg/survey_client/lib/Controller/EndpointController.php
9542
%%WWWDIR%%/apps/systemtags/l10n/ar.json
9542
%%WWWDIR%%/apps-pkg/survey_client/lib/Notifier.php
9543
%%WWWDIR%%/apps/systemtags/l10n/ast.js
9543
%%WWWDIR%%/apps-pkg/survey_client/lib/Settings/AdminSection.php
9544
%%WWWDIR%%/apps/systemtags/l10n/ast.json
9544
%%WWWDIR%%/apps-pkg/survey_client/lib/Settings/AdminSettings.php
9545
%%WWWDIR%%/apps/systemtags/l10n/az.js
9545
%%WWWDIR%%/apps-pkg/survey_client/templates/admin.php
9546
%%WWWDIR%%/apps/systemtags/l10n/az.json
9546
%%WWWDIR%%/apps-pkg/systemtags/appinfo/app.php
9547
%%WWWDIR%%/apps/systemtags/l10n/bg.js
9547
%%WWWDIR%%/apps-pkg/systemtags/appinfo/info.xml
9548
%%WWWDIR%%/apps/systemtags/l10n/bg.json
9548
%%WWWDIR%%/apps-pkg/systemtags/appinfo/routes.php
9549
%%WWWDIR%%/apps/systemtags/l10n/bg_BG.js
9549
%%WWWDIR%%/apps-pkg/systemtags/appinfo/signature.json
9550
%%WWWDIR%%/apps/systemtags/l10n/bg_BG.json
9550
%%WWWDIR%%/apps-pkg/systemtags/composer/autoload.php
9551
%%WWWDIR%%/apps/systemtags/l10n/bn_BD.js
9551
%%WWWDIR%%/apps-pkg/systemtags/composer/composer.json
9552
%%WWWDIR%%/apps/systemtags/l10n/bn_BD.json
9552
%%WWWDIR%%/apps-pkg/systemtags/composer/composer/ClassLoader.php
9553
%%WWWDIR%%/apps/systemtags/l10n/bn_IN.js
9553
%%WWWDIR%%/apps-pkg/systemtags/composer/composer/LICENSE
9554
%%WWWDIR%%/apps/systemtags/l10n/bn_IN.json
9554
%%WWWDIR%%/apps-pkg/systemtags/composer/composer/autoload_classmap.php
9555
%%WWWDIR%%/apps/systemtags/l10n/bs.js
9555
%%WWWDIR%%/apps-pkg/systemtags/composer/composer/autoload_namespaces.php
9556
%%WWWDIR%%/apps/systemtags/l10n/bs.json
9556
%%WWWDIR%%/apps-pkg/systemtags/composer/composer/autoload_psr4.php
9557
%%WWWDIR%%/apps/systemtags/l10n/ca.js
9557
%%WWWDIR%%/apps-pkg/systemtags/composer/composer/autoload_real.php
9558
%%WWWDIR%%/apps/systemtags/l10n/ca.json
9558
%%WWWDIR%%/apps-pkg/systemtags/composer/composer/autoload_static.php
9559
%%WWWDIR%%/apps/systemtags/l10n/cs.js
9559
%%WWWDIR%%/apps-pkg/systemtags/css/systemtagsfilelist.css
9560
%%WWWDIR%%/apps/systemtags/l10n/cs.json
9560
%%WWWDIR%%/apps-pkg/systemtags/img/app.svg
9561
%%WWWDIR%%/apps/systemtags/l10n/cs_CZ.js
9561
%%WWWDIR%%/apps-pkg/systemtags/img/tag.svg
9562
%%WWWDIR%%/apps/systemtags/l10n/cs_CZ.json
9562
%%WWWDIR%%/apps-pkg/systemtags/js/admin.js
9563
%%WWWDIR%%/apps/systemtags/l10n/cy_GB.js
9563
%%WWWDIR%%/apps-pkg/systemtags/js/app.js
9564
%%WWWDIR%%/apps/systemtags/l10n/cy_GB.json
9564
%%WWWDIR%%/apps-pkg/systemtags/js/filesplugin.js
9565
%%WWWDIR%%/apps/systemtags/l10n/da.js
9565
%%WWWDIR%%/apps-pkg/systemtags/js/merged.json
9566
%%WWWDIR%%/apps/systemtags/l10n/da.json
9566
%%WWWDIR%%/apps-pkg/systemtags/js/systemtagsfilelist.js
9567
%%WWWDIR%%/apps/systemtags/l10n/de.js
9567
%%WWWDIR%%/apps-pkg/systemtags/js/systemtagsinfoview.js
9568
%%WWWDIR%%/apps/systemtags/l10n/de.json
9568
%%WWWDIR%%/apps-pkg/systemtags/js/systemtagsinfoviewtoggleview.js
9569
%%WWWDIR%%/apps/systemtags/l10n/de_AT.js
9569
%%WWWDIR%%/apps-pkg/systemtags/l10n/.gitkeep
9570
%%WWWDIR%%/apps/systemtags/l10n/de_AT.json
9570
%%WWWDIR%%/apps-pkg/systemtags/l10n/ar.js
9571
%%WWWDIR%%/apps/systemtags/l10n/de_DE.js
9571
%%WWWDIR%%/apps-pkg/systemtags/l10n/ar.json
9572
%%WWWDIR%%/apps/systemtags/l10n/de_DE.json
9572
%%WWWDIR%%/apps-pkg/systemtags/l10n/ast.js
9573
%%WWWDIR%%/apps/systemtags/l10n/el.js
9573
%%WWWDIR%%/apps-pkg/systemtags/l10n/ast.json
9574
%%WWWDIR%%/apps/systemtags/l10n/el.json
9574
%%WWWDIR%%/apps-pkg/systemtags/l10n/az.js
9575
%%WWWDIR%%/apps/systemtags/l10n/en_GB.js
9575
%%WWWDIR%%/apps-pkg/systemtags/l10n/az.json
9576
%%WWWDIR%%/apps/systemtags/l10n/en_GB.json
9576
%%WWWDIR%%/apps-pkg/systemtags/l10n/bg.js
9577
%%WWWDIR%%/apps/systemtags/l10n/eo.js
9577
%%WWWDIR%%/apps-pkg/systemtags/l10n/bg.json
9578
%%WWWDIR%%/apps/systemtags/l10n/eo.json
9578
%%WWWDIR%%/apps-pkg/systemtags/l10n/bg_BG.js
9579
%%WWWDIR%%/apps/systemtags/l10n/es.js
9579
%%WWWDIR%%/apps-pkg/systemtags/l10n/bg_BG.json
9580
%%WWWDIR%%/apps/systemtags/l10n/es.json
9580
%%WWWDIR%%/apps-pkg/systemtags/l10n/bn_BD.js
9581
%%WWWDIR%%/apps/systemtags/l10n/es_419.js
9581
%%WWWDIR%%/apps-pkg/systemtags/l10n/bn_BD.json
9582
%%WWWDIR%%/apps/systemtags/l10n/es_419.json
9582
%%WWWDIR%%/apps-pkg/systemtags/l10n/bn_IN.js
9583
%%WWWDIR%%/apps/systemtags/l10n/es_AR.js
9583
%%WWWDIR%%/apps-pkg/systemtags/l10n/bn_IN.json
9584
%%WWWDIR%%/apps/systemtags/l10n/es_AR.json
9584
%%WWWDIR%%/apps-pkg/systemtags/l10n/bs.js
9585
%%WWWDIR%%/apps/systemtags/l10n/es_CL.js
9585
%%WWWDIR%%/apps-pkg/systemtags/l10n/bs.json
9586
%%WWWDIR%%/apps/systemtags/l10n/es_CL.json
9586
%%WWWDIR%%/apps-pkg/systemtags/l10n/ca.js
9587
%%WWWDIR%%/apps/systemtags/l10n/es_CO.js
9587
%%WWWDIR%%/apps-pkg/systemtags/l10n/ca.json
9588
%%WWWDIR%%/apps/systemtags/l10n/es_CO.json
9588
%%WWWDIR%%/apps-pkg/systemtags/l10n/cs.js
9589
%%WWWDIR%%/apps/systemtags/l10n/es_CR.js
9589
%%WWWDIR%%/apps-pkg/systemtags/l10n/cs.json
9590
%%WWWDIR%%/apps/systemtags/l10n/es_CR.json
9590
%%WWWDIR%%/apps-pkg/systemtags/l10n/cs_CZ.js
9591
%%WWWDIR%%/apps/systemtags/l10n/es_DO.js
9591
%%WWWDIR%%/apps-pkg/systemtags/l10n/cs_CZ.json
9592
%%WWWDIR%%/apps/systemtags/l10n/es_DO.json
9592
%%WWWDIR%%/apps-pkg/systemtags/l10n/cy_GB.js
9593
%%WWWDIR%%/apps/systemtags/l10n/es_EC.js
9593
%%WWWDIR%%/apps-pkg/systemtags/l10n/cy_GB.json
9594
%%WWWDIR%%/apps/systemtags/l10n/es_EC.json
9594
%%WWWDIR%%/apps-pkg/systemtags/l10n/da.js
9595
%%WWWDIR%%/apps/systemtags/l10n/es_GT.js
9595
%%WWWDIR%%/apps-pkg/systemtags/l10n/da.json
9596
%%WWWDIR%%/apps/systemtags/l10n/es_GT.json
9596
%%WWWDIR%%/apps-pkg/systemtags/l10n/de.js
9597
%%WWWDIR%%/apps/systemtags/l10n/es_HN.js
9597
%%WWWDIR%%/apps-pkg/systemtags/l10n/de.json
9598
%%WWWDIR%%/apps/systemtags/l10n/es_HN.json
9598
%%WWWDIR%%/apps-pkg/systemtags/l10n/de_AT.js
9599
%%WWWDIR%%/apps/systemtags/l10n/es_MX.js
9599
%%WWWDIR%%/apps-pkg/systemtags/l10n/de_AT.json
9600
%%WWWDIR%%/apps/systemtags/l10n/es_MX.json
9600
%%WWWDIR%%/apps-pkg/systemtags/l10n/de_DE.js
9601
%%WWWDIR%%/apps/systemtags/l10n/es_NI.js
9601
%%WWWDIR%%/apps-pkg/systemtags/l10n/de_DE.json
9602
%%WWWDIR%%/apps/systemtags/l10n/es_NI.json
9602
%%WWWDIR%%/apps-pkg/systemtags/l10n/el.js
9603
%%WWWDIR%%/apps/systemtags/l10n/es_PA.js
9603
%%WWWDIR%%/apps-pkg/systemtags/l10n/el.json
9604
%%WWWDIR%%/apps/systemtags/l10n/es_PA.json
9604
%%WWWDIR%%/apps-pkg/systemtags/l10n/en_GB.js
9605
%%WWWDIR%%/apps/systemtags/l10n/es_PE.js
9605
%%WWWDIR%%/apps-pkg/systemtags/l10n/en_GB.json
9606
%%WWWDIR%%/apps/systemtags/l10n/es_PE.json
9606
%%WWWDIR%%/apps-pkg/systemtags/l10n/eo.js
9607
%%WWWDIR%%/apps/systemtags/l10n/es_PR.js
9607
%%WWWDIR%%/apps-pkg/systemtags/l10n/eo.json
9608
%%WWWDIR%%/apps/systemtags/l10n/es_PR.json
9608
%%WWWDIR%%/apps-pkg/systemtags/l10n/es.js
9609
%%WWWDIR%%/apps/systemtags/l10n/es_PY.js
9609
%%WWWDIR%%/apps-pkg/systemtags/l10n/es.json
9610
%%WWWDIR%%/apps/systemtags/l10n/es_PY.json
9610
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_419.js
9611
%%WWWDIR%%/apps/systemtags/l10n/es_SV.js
9611
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_419.json
9612
%%WWWDIR%%/apps/systemtags/l10n/es_SV.json
9612
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_AR.js
9613
%%WWWDIR%%/apps/systemtags/l10n/es_UY.js
9613
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_AR.json
9614
%%WWWDIR%%/apps/systemtags/l10n/es_UY.json
9614
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_CL.js
9615
%%WWWDIR%%/apps/systemtags/l10n/et_EE.js
9615
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_CL.json
9616
%%WWWDIR%%/apps/systemtags/l10n/et_EE.json
9616
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_CO.js
9617
%%WWWDIR%%/apps/systemtags/l10n/eu.js
9617
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_CO.json
9618
%%WWWDIR%%/apps/systemtags/l10n/eu.json
9618
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_CR.js
9619
%%WWWDIR%%/apps/systemtags/l10n/fa.js
9619
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_CR.json
9620
%%WWWDIR%%/apps/systemtags/l10n/fa.json
9620
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_DO.js
9621
%%WWWDIR%%/apps/systemtags/l10n/fi.js
9621
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_DO.json
9622
%%WWWDIR%%/apps/systemtags/l10n/fi.json
9622
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_EC.js
9623
%%WWWDIR%%/apps/systemtags/l10n/fi_FI.js
9623
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_EC.json
9624
%%WWWDIR%%/apps/systemtags/l10n/fi_FI.json
9624
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_GT.js
9625
%%WWWDIR%%/apps/systemtags/l10n/fr.js
9625
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_GT.json
9626
%%WWWDIR%%/apps/systemtags/l10n/fr.json
9626
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_HN.js
9627
%%WWWDIR%%/apps/systemtags/l10n/gl.js
9627
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_HN.json
9628
%%WWWDIR%%/apps/systemtags/l10n/gl.json
9628
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_MX.js
9629
%%WWWDIR%%/apps/systemtags/l10n/he.js
9629
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_MX.json
9630
%%WWWDIR%%/apps/systemtags/l10n/he.json
9630
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_NI.js
9631
%%WWWDIR%%/apps/systemtags/l10n/hr.js
9631
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_NI.json
9632
%%WWWDIR%%/apps/systemtags/l10n/hr.json
9632
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PA.js
9633
%%WWWDIR%%/apps/systemtags/l10n/hu.js
9633
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PA.json
9634
%%WWWDIR%%/apps/systemtags/l10n/hu.json
9634
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PE.js
9635
%%WWWDIR%%/apps/systemtags/l10n/hu_HU.js
9635
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PE.json
9636
%%WWWDIR%%/apps/systemtags/l10n/hu_HU.json
9636
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PR.js
9637
%%WWWDIR%%/apps/systemtags/l10n/hy.js
9637
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PR.json
9638
%%WWWDIR%%/apps/systemtags/l10n/hy.json
9638
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PY.js
9639
%%WWWDIR%%/apps/systemtags/l10n/ia.js
9639
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PY.json
9640
%%WWWDIR%%/apps/systemtags/l10n/ia.json
9640
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_SV.js
9641
%%WWWDIR%%/apps/systemtags/l10n/id.js
9641
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_SV.json
9642
%%WWWDIR%%/apps/systemtags/l10n/id.json
9642
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_UY.js
9643
%%WWWDIR%%/apps/systemtags/l10n/is.js
9643
%%WWWDIR%%/apps-pkg/systemtags/l10n/es_UY.json
9644
%%WWWDIR%%/apps/systemtags/l10n/is.json
9644
%%WWWDIR%%/apps-pkg/systemtags/l10n/et_EE.js
9645
%%WWWDIR%%/apps/systemtags/l10n/it.js
9645
%%WWWDIR%%/apps-pkg/systemtags/l10n/et_EE.json
9646
%%WWWDIR%%/apps/systemtags/l10n/it.json
9646
%%WWWDIR%%/apps-pkg/systemtags/l10n/eu.js
9647
%%WWWDIR%%/apps/systemtags/l10n/ja.js
9647
%%WWWDIR%%/apps-pkg/systemtags/l10n/eu.json
9648
%%WWWDIR%%/apps/systemtags/l10n/ja.json
9648
%%WWWDIR%%/apps-pkg/systemtags/l10n/fa.js
9649
%%WWWDIR%%/apps/systemtags/l10n/ka_GE.js
9649
%%WWWDIR%%/apps-pkg/systemtags/l10n/fa.json
9650
%%WWWDIR%%/apps/systemtags/l10n/ka_GE.json
9650
%%WWWDIR%%/apps-pkg/systemtags/l10n/fi.js
9651
%%WWWDIR%%/apps/systemtags/l10n/km.js
9651
%%WWWDIR%%/apps-pkg/systemtags/l10n/fi.json
9652
%%WWWDIR%%/apps/systemtags/l10n/km.json
9652
%%WWWDIR%%/apps-pkg/systemtags/l10n/fi_FI.js
9653
%%WWWDIR%%/apps/systemtags/l10n/kn.js
9653
%%WWWDIR%%/apps-pkg/systemtags/l10n/fi_FI.json
9654
%%WWWDIR%%/apps/systemtags/l10n/kn.json
9654
%%WWWDIR%%/apps-pkg/systemtags/l10n/fr.js
9655
%%WWWDIR%%/apps/systemtags/l10n/ko.js
9655
%%WWWDIR%%/apps-pkg/systemtags/l10n/fr.json
9656
%%WWWDIR%%/apps/systemtags/l10n/ko.json
9656
%%WWWDIR%%/apps-pkg/systemtags/l10n/gl.js
9657
%%WWWDIR%%/apps/systemtags/l10n/ku_IQ.js
9657
%%WWWDIR%%/apps-pkg/systemtags/l10n/gl.json
9658
%%WWWDIR%%/apps/systemtags/l10n/ku_IQ.json
9658
%%WWWDIR%%/apps-pkg/systemtags/l10n/he.js
9659
%%WWWDIR%%/apps/systemtags/l10n/lb.js
9659
%%WWWDIR%%/apps-pkg/systemtags/l10n/he.json
9660
%%WWWDIR%%/apps/systemtags/l10n/lb.json
9660
%%WWWDIR%%/apps-pkg/systemtags/l10n/hr.js
9661
%%WWWDIR%%/apps/systemtags/l10n/lt_LT.js
9661
%%WWWDIR%%/apps-pkg/systemtags/l10n/hr.json
9662
%%WWWDIR%%/apps/systemtags/l10n/lt_LT.json
9662
%%WWWDIR%%/apps-pkg/systemtags/l10n/hu.js
9663
%%WWWDIR%%/apps/systemtags/l10n/lv.js
9663
%%WWWDIR%%/apps-pkg/systemtags/l10n/hu.json
9664
%%WWWDIR%%/apps/systemtags/l10n/lv.json
9664
%%WWWDIR%%/apps-pkg/systemtags/l10n/hu_HU.js
9665
%%WWWDIR%%/apps/systemtags/l10n/mk.js
9665
%%WWWDIR%%/apps-pkg/systemtags/l10n/hu_HU.json
9666
%%WWWDIR%%/apps/systemtags/l10n/mk.json
9666
%%WWWDIR%%/apps-pkg/systemtags/l10n/hy.js
9667
%%WWWDIR%%/apps/systemtags/l10n/ms_MY.js
9667
%%WWWDIR%%/apps-pkg/systemtags/l10n/hy.json
9668
%%WWWDIR%%/apps/systemtags/l10n/ms_MY.json
9668
%%WWWDIR%%/apps-pkg/systemtags/l10n/ia.js
9669
%%WWWDIR%%/apps/systemtags/l10n/nb.js
9669
%%WWWDIR%%/apps-pkg/systemtags/l10n/ia.json
9670
%%WWWDIR%%/apps/systemtags/l10n/nb.json
9670
%%WWWDIR%%/apps-pkg/systemtags/l10n/id.js
9671
%%WWWDIR%%/apps/systemtags/l10n/nb_NO.js
9671
%%WWWDIR%%/apps-pkg/systemtags/l10n/id.json
9672
%%WWWDIR%%/apps/systemtags/l10n/nb_NO.json
9672
%%WWWDIR%%/apps-pkg/systemtags/l10n/is.js
9673
%%WWWDIR%%/apps/systemtags/l10n/nds.js
9673
%%WWWDIR%%/apps-pkg/systemtags/l10n/is.json
9674
%%WWWDIR%%/apps/systemtags/l10n/nds.json
9674
%%WWWDIR%%/apps-pkg/systemtags/l10n/it.js
9675
%%WWWDIR%%/apps/systemtags/l10n/nl.js
9675
%%WWWDIR%%/apps-pkg/systemtags/l10n/it.json
9676
%%WWWDIR%%/apps/systemtags/l10n/nl.json
9676
%%WWWDIR%%/apps-pkg/systemtags/l10n/ja.js
9677
%%WWWDIR%%/apps/systemtags/l10n/nn_NO.js
9677
%%WWWDIR%%/apps-pkg/systemtags/l10n/ja.json
9678
%%WWWDIR%%/apps/systemtags/l10n/nn_NO.json
9678
%%WWWDIR%%/apps-pkg/systemtags/l10n/ka_GE.js
9679
%%WWWDIR%%/apps/systemtags/l10n/oc.js
9679
%%WWWDIR%%/apps-pkg/systemtags/l10n/ka_GE.json
9680
%%WWWDIR%%/apps/systemtags/l10n/oc.json
9680
%%WWWDIR%%/apps-pkg/systemtags/l10n/km.js
9681
%%WWWDIR%%/apps/systemtags/l10n/pl.js
9681
%%WWWDIR%%/apps-pkg/systemtags/l10n/km.json
9682
%%WWWDIR%%/apps/systemtags/l10n/pl.json
9682
%%WWWDIR%%/apps-pkg/systemtags/l10n/kn.js
9683
%%WWWDIR%%/apps/systemtags/l10n/pt_BR.js
9683
%%WWWDIR%%/apps-pkg/systemtags/l10n/kn.json
9684
%%WWWDIR%%/apps/systemtags/l10n/pt_BR.json
9684
%%WWWDIR%%/apps-pkg/systemtags/l10n/ko.js
9685
%%WWWDIR%%/apps/systemtags/l10n/pt_PT.js
9685
%%WWWDIR%%/apps-pkg/systemtags/l10n/ko.json
9686
%%WWWDIR%%/apps/systemtags/l10n/pt_PT.json
9686
%%WWWDIR%%/apps-pkg/systemtags/l10n/ku_IQ.js
9687
%%WWWDIR%%/apps/systemtags/l10n/ro.js
9687
%%WWWDIR%%/apps-pkg/systemtags/l10n/ku_IQ.json
9688
%%WWWDIR%%/apps/systemtags/l10n/ro.json
9688
%%WWWDIR%%/apps-pkg/systemtags/l10n/lb.js
9689
%%WWWDIR%%/apps/systemtags/l10n/ru.js
9689
%%WWWDIR%%/apps-pkg/systemtags/l10n/lb.json
9690
%%WWWDIR%%/apps/systemtags/l10n/ru.json
9690
%%WWWDIR%%/apps-pkg/systemtags/l10n/lt_LT.js
9691
%%WWWDIR%%/apps/systemtags/l10n/si_LK.js
9691
%%WWWDIR%%/apps-pkg/systemtags/l10n/lt_LT.json
9692
%%WWWDIR%%/apps/systemtags/l10n/si_LK.json
9692
%%WWWDIR%%/apps-pkg/systemtags/l10n/lv.js
9693
%%WWWDIR%%/apps/systemtags/l10n/sk_SK.js
9693
%%WWWDIR%%/apps-pkg/systemtags/l10n/lv.json
9694
%%WWWDIR%%/apps/systemtags/l10n/sk_SK.json
9694
%%WWWDIR%%/apps-pkg/systemtags/l10n/mk.js
9695
%%WWWDIR%%/apps/systemtags/l10n/sl.js
9695
%%WWWDIR%%/apps-pkg/systemtags/l10n/mk.json
9696
%%WWWDIR%%/apps/systemtags/l10n/sl.json
9696
%%WWWDIR%%/apps-pkg/systemtags/l10n/ms_MY.js
9697
%%WWWDIR%%/apps/systemtags/l10n/sq.js
9697
%%WWWDIR%%/apps-pkg/systemtags/l10n/ms_MY.json
9698
%%WWWDIR%%/apps/systemtags/l10n/sq.json
9698
%%WWWDIR%%/apps-pkg/systemtags/l10n/nb.js
9699
%%WWWDIR%%/apps/systemtags/l10n/sr.js
9699
%%WWWDIR%%/apps-pkg/systemtags/l10n/nb.json
9700
%%WWWDIR%%/apps/systemtags/l10n/sr.json
9700
%%WWWDIR%%/apps-pkg/systemtags/l10n/nb_NO.js
9701
%%WWWDIR%%/apps/systemtags/l10n/sr@latin.js
9701
%%WWWDIR%%/apps-pkg/systemtags/l10n/nb_NO.json
9702
%%WWWDIR%%/apps/systemtags/l10n/sr@latin.json
9702
%%WWWDIR%%/apps-pkg/systemtags/l10n/nds.js
9703
%%WWWDIR%%/apps/systemtags/l10n/sv.js
9703
%%WWWDIR%%/apps-pkg/systemtags/l10n/nds.json
9704
%%WWWDIR%%/apps/systemtags/l10n/sv.json
9704
%%WWWDIR%%/apps-pkg/systemtags/l10n/nl.js
9705
%%WWWDIR%%/apps/systemtags/l10n/ta_LK.js
9705
%%WWWDIR%%/apps-pkg/systemtags/l10n/nl.json
9706
%%WWWDIR%%/apps/systemtags/l10n/ta_LK.json
9706
%%WWWDIR%%/apps-pkg/systemtags/l10n/nn_NO.js
9707
%%WWWDIR%%/apps/systemtags/l10n/te.js
9707
%%WWWDIR%%/apps-pkg/systemtags/l10n/nn_NO.json
9708
%%WWWDIR%%/apps/systemtags/l10n/te.json
9708
%%WWWDIR%%/apps-pkg/systemtags/l10n/oc.js
9709
%%WWWDIR%%/apps/systemtags/l10n/th_TH.js
9709
%%WWWDIR%%/apps-pkg/systemtags/l10n/oc.json
9710
%%WWWDIR%%/apps/systemtags/l10n/th_TH.json
9710
%%WWWDIR%%/apps-pkg/systemtags/l10n/pl.js
9711
%%WWWDIR%%/apps/systemtags/l10n/tr.js
9711
%%WWWDIR%%/apps-pkg/systemtags/l10n/pl.json
9712
%%WWWDIR%%/apps/systemtags/l10n/tr.json
9712
%%WWWDIR%%/apps-pkg/systemtags/l10n/pt_BR.js
9713
%%WWWDIR%%/apps/systemtags/l10n/ug.js
9713
%%WWWDIR%%/apps-pkg/systemtags/l10n/pt_BR.json
9714
%%WWWDIR%%/apps/systemtags/l10n/ug.json
9714
%%WWWDIR%%/apps-pkg/systemtags/l10n/pt_PT.js
9715
%%WWWDIR%%/apps/systemtags/l10n/uk.js
9715
%%WWWDIR%%/apps-pkg/systemtags/l10n/pt_PT.json
9716
%%WWWDIR%%/apps/systemtags/l10n/uk.json
9716
%%WWWDIR%%/apps-pkg/systemtags/l10n/ro.js
9717
%%WWWDIR%%/apps/systemtags/l10n/ur_PK.js
9717
%%WWWDIR%%/apps-pkg/systemtags/l10n/ro.json
9718
%%WWWDIR%%/apps/systemtags/l10n/ur_PK.json
9718
%%WWWDIR%%/apps-pkg/systemtags/l10n/ru.js
9719
%%WWWDIR%%/apps/systemtags/l10n/vi.js
9719
%%WWWDIR%%/apps-pkg/systemtags/l10n/ru.json
9720
%%WWWDIR%%/apps/systemtags/l10n/vi.json
9720
%%WWWDIR%%/apps-pkg/systemtags/l10n/si_LK.js
9721
%%WWWDIR%%/apps/systemtags/l10n/zh_CN.js
9721
%%WWWDIR%%/apps-pkg/systemtags/l10n/si_LK.json
9722
%%WWWDIR%%/apps/systemtags/l10n/zh_CN.json
9722
%%WWWDIR%%/apps-pkg/systemtags/l10n/sk.js
9723
%%WWWDIR%%/apps/systemtags/l10n/zh_HK.js
9723
%%WWWDIR%%/apps-pkg/systemtags/l10n/sk.json
9724
%%WWWDIR%%/apps/systemtags/l10n/zh_HK.json
9724
%%WWWDIR%%/apps-pkg/systemtags/l10n/sk_SK.js
9725
%%WWWDIR%%/apps/systemtags/l10n/zh_TW.js
9725
%%WWWDIR%%/apps-pkg/systemtags/l10n/sk_SK.json
9726
%%WWWDIR%%/apps/systemtags/l10n/zh_TW.json
9726
%%WWWDIR%%/apps-pkg/systemtags/l10n/sl.js
9727
%%WWWDIR%%/apps/systemtags/lib/Activity/Listener.php
9727
%%WWWDIR%%/apps-pkg/systemtags/l10n/sl.json
9728
%%WWWDIR%%/apps/systemtags/lib/Activity/Provider.php
9728
%%WWWDIR%%/apps-pkg/systemtags/l10n/sq.js
9729
%%WWWDIR%%/apps/systemtags/lib/Activity/Setting.php
9729
%%WWWDIR%%/apps-pkg/systemtags/l10n/sq.json
9730
%%WWWDIR%%/apps/systemtags/lib/Controller/LastUsedController.php
9730
%%WWWDIR%%/apps-pkg/systemtags/l10n/sr.js
9731
%%WWWDIR%%/apps/systemtags/lib/Settings/Admin.php
9731
%%WWWDIR%%/apps-pkg/systemtags/l10n/sr.json
9732
%%WWWDIR%%/apps/systemtags/list.php
9732
%%WWWDIR%%/apps-pkg/systemtags/l10n/sr@latin.js
9733
%%WWWDIR%%/apps/systemtags/templates/admin.php
9733
%%WWWDIR%%/apps-pkg/systemtags/l10n/sr@latin.json
9734
%%WWWDIR%%/apps/systemtags/templates/list.php
9734
%%WWWDIR%%/apps-pkg/systemtags/l10n/sv.js
9735
%%WWWDIR%%/apps/theming/appinfo/app.php
9735
%%WWWDIR%%/apps-pkg/systemtags/l10n/sv.json
9736
%%WWWDIR%%/apps/theming/appinfo/info.xml
9736
%%WWWDIR%%/apps-pkg/systemtags/l10n/ta_LK.js
9737
%%WWWDIR%%/apps/theming/appinfo/routes.php
9737
%%WWWDIR%%/apps-pkg/systemtags/l10n/ta_LK.json
9738
%%WWWDIR%%/apps/theming/appinfo/signature.json
9738
%%WWWDIR%%/apps-pkg/systemtags/l10n/te.js
9739
%%WWWDIR%%/apps/theming/css/settings-admin.css
9739
%%WWWDIR%%/apps-pkg/systemtags/l10n/te.json
9740
%%WWWDIR%%/apps/theming/css/theming.scss
9740
%%WWWDIR%%/apps-pkg/systemtags/l10n/th_TH.js
9741
%%WWWDIR%%/apps/theming/img/app-dark.svg
9741
%%WWWDIR%%/apps-pkg/systemtags/l10n/th_TH.json
9742
%%WWWDIR%%/apps/theming/img/app.svg
9742
%%WWWDIR%%/apps-pkg/systemtags/l10n/tr.js
9743
%%WWWDIR%%/apps/theming/js/3rdparty/jscolor/LICENSE.txt
9743
%%WWWDIR%%/apps-pkg/systemtags/l10n/tr.json
9744
%%WWWDIR%%/apps/theming/js/3rdparty/jscolor/jscolor.js
9744
%%WWWDIR%%/apps-pkg/systemtags/l10n/ug.js
9745
%%WWWDIR%%/apps/theming/js/3rdparty/jscolor/jscolor.min.js
9745
%%WWWDIR%%/apps-pkg/systemtags/l10n/ug.json
9746
%%WWWDIR%%/apps/theming/js/settings-admin.js
9746
%%WWWDIR%%/apps-pkg/systemtags/l10n/uk.js
9747
%%WWWDIR%%/apps/theming/l10n/.gitkeep
9747
%%WWWDIR%%/apps-pkg/systemtags/l10n/uk.json
9748
%%WWWDIR%%/apps/theming/l10n/af.js
9748
%%WWWDIR%%/apps-pkg/systemtags/l10n/ur_PK.js
9749
%%WWWDIR%%/apps/theming/l10n/af.json
9749
%%WWWDIR%%/apps-pkg/systemtags/l10n/ur_PK.json
9750
%%WWWDIR%%/apps/theming/l10n/ar.js
9750
%%WWWDIR%%/apps-pkg/systemtags/l10n/vi.js
9751
%%WWWDIR%%/apps/theming/l10n/ar.json
9751
%%WWWDIR%%/apps-pkg/systemtags/l10n/vi.json
9752
%%WWWDIR%%/apps/theming/l10n/ast.js
9752
%%WWWDIR%%/apps-pkg/systemtags/l10n/zh_CN.js
9753
%%WWWDIR%%/apps/theming/l10n/ast.json
9753
%%WWWDIR%%/apps-pkg/systemtags/l10n/zh_CN.json
9754
%%WWWDIR%%/apps/theming/l10n/bg.js
9754
%%WWWDIR%%/apps-pkg/systemtags/l10n/zh_HK.js
9755
%%WWWDIR%%/apps/theming/l10n/bg.json
9755
%%WWWDIR%%/apps-pkg/systemtags/l10n/zh_HK.json
9756
%%WWWDIR%%/apps/theming/l10n/ca.js
9756
%%WWWDIR%%/apps-pkg/systemtags/l10n/zh_TW.js
9757
%%WWWDIR%%/apps/theming/l10n/ca.json
9757
%%WWWDIR%%/apps-pkg/systemtags/l10n/zh_TW.json
9758
%%WWWDIR%%/apps/theming/l10n/cs.js
9758
%%WWWDIR%%/apps-pkg/systemtags/lib/Activity/Listener.php
9759
%%WWWDIR%%/apps/theming/l10n/cs.json
9759
%%WWWDIR%%/apps-pkg/systemtags/lib/Activity/Provider.php
9760
%%WWWDIR%%/apps/theming/l10n/da.js
9760
%%WWWDIR%%/apps-pkg/systemtags/lib/Activity/Setting.php
9761
%%WWWDIR%%/apps/theming/l10n/da.json
9761
%%WWWDIR%%/apps-pkg/systemtags/lib/Controller/LastUsedController.php
9762
%%WWWDIR%%/apps/theming/l10n/de.js
9762
%%WWWDIR%%/apps-pkg/systemtags/lib/Settings/Admin.php
9763
%%WWWDIR%%/apps/theming/l10n/de.json
9763
%%WWWDIR%%/apps-pkg/systemtags/list.php
9764
%%WWWDIR%%/apps/theming/l10n/de_DE.js
9764
%%WWWDIR%%/apps-pkg/systemtags/templates/admin.php
9765
%%WWWDIR%%/apps/theming/l10n/de_DE.json
9765
%%WWWDIR%%/apps-pkg/systemtags/templates/list.php
9766
%%WWWDIR%%/apps/theming/l10n/el.js
9766
%%WWWDIR%%/apps-pkg/theming/appinfo/app.php
9767
%%WWWDIR%%/apps/theming/l10n/el.json
9767
%%WWWDIR%%/apps-pkg/theming/appinfo/info.xml
9768
%%WWWDIR%%/apps/theming/l10n/en_GB.js
9768
%%WWWDIR%%/apps-pkg/theming/appinfo/routes.php
9769
%%WWWDIR%%/apps/theming/l10n/en_GB.json
9769
%%WWWDIR%%/apps-pkg/theming/appinfo/signature.json
9770
%%WWWDIR%%/apps/theming/l10n/es.js
9770
%%WWWDIR%%/apps-pkg/theming/css/settings-admin.css
9771
%%WWWDIR%%/apps/theming/l10n/es.json
9771
%%WWWDIR%%/apps-pkg/theming/css/theming.scss
9772
%%WWWDIR%%/apps/theming/l10n/es_419.js
9772
%%WWWDIR%%/apps-pkg/theming/img/app-dark.svg
9773
%%WWWDIR%%/apps/theming/l10n/es_419.json
9773
%%WWWDIR%%/apps-pkg/theming/img/app.svg
9774
%%WWWDIR%%/apps/theming/l10n/es_AR.js
9774
%%WWWDIR%%/apps-pkg/theming/js/3rdparty/jscolor/LICENSE.txt
9775
%%WWWDIR%%/apps/theming/l10n/es_AR.json
9775
%%WWWDIR%%/apps-pkg/theming/js/3rdparty/jscolor/jscolor.js
9776
%%WWWDIR%%/apps/theming/l10n/es_CL.js
9776
%%WWWDIR%%/apps-pkg/theming/js/3rdparty/jscolor/jscolor.min.js
9777
%%WWWDIR%%/apps/theming/l10n/es_CL.json
9777
%%WWWDIR%%/apps-pkg/theming/js/settings-admin.js
9778
%%WWWDIR%%/apps/theming/l10n/es_CO.js
9778
%%WWWDIR%%/apps-pkg/theming/l10n/.gitkeep
9779
%%WWWDIR%%/apps/theming/l10n/es_CO.json
9779
%%WWWDIR%%/apps-pkg/theming/l10n/af.js
9780
%%WWWDIR%%/apps/theming/l10n/es_CR.js
9780
%%WWWDIR%%/apps-pkg/theming/l10n/af.json
9781
%%WWWDIR%%/apps/theming/l10n/es_CR.json
9781
%%WWWDIR%%/apps-pkg/theming/l10n/ar.js
9782
%%WWWDIR%%/apps/theming/l10n/es_DO.js
9782
%%WWWDIR%%/apps-pkg/theming/l10n/ar.json
9783
%%WWWDIR%%/apps/theming/l10n/es_DO.json
9783
%%WWWDIR%%/apps-pkg/theming/l10n/ast.js
9784
%%WWWDIR%%/apps/theming/l10n/es_EC.js
9784
%%WWWDIR%%/apps-pkg/theming/l10n/ast.json
9785
%%WWWDIR%%/apps/theming/l10n/es_EC.json
9785
%%WWWDIR%%/apps-pkg/theming/l10n/bg.js
9786
%%WWWDIR%%/apps/theming/l10n/es_GT.js
9786
%%WWWDIR%%/apps-pkg/theming/l10n/bg.json
9787
%%WWWDIR%%/apps/theming/l10n/es_GT.json
9787
%%WWWDIR%%/apps-pkg/theming/l10n/ca.js
9788
%%WWWDIR%%/apps/theming/l10n/es_HN.js
9788
%%WWWDIR%%/apps-pkg/theming/l10n/ca.json
9789
%%WWWDIR%%/apps/theming/l10n/es_HN.json
9789
%%WWWDIR%%/apps-pkg/theming/l10n/cs.js
9790
%%WWWDIR%%/apps/theming/l10n/es_MX.js
9790
%%WWWDIR%%/apps-pkg/theming/l10n/cs.json
9791
%%WWWDIR%%/apps/theming/l10n/es_MX.json
9791
%%WWWDIR%%/apps-pkg/theming/l10n/da.js
9792
%%WWWDIR%%/apps/theming/l10n/es_NI.js
9792
%%WWWDIR%%/apps-pkg/theming/l10n/da.json
9793
%%WWWDIR%%/apps/theming/l10n/es_NI.json
9793
%%WWWDIR%%/apps-pkg/theming/l10n/de.js
9794
%%WWWDIR%%/apps/theming/l10n/es_PA.js
9794
%%WWWDIR%%/apps-pkg/theming/l10n/de.json
9795
%%WWWDIR%%/apps/theming/l10n/es_PA.json
9795
%%WWWDIR%%/apps-pkg/theming/l10n/de_DE.js
9796
%%WWWDIR%%/apps/theming/l10n/es_PE.js
9796
%%WWWDIR%%/apps-pkg/theming/l10n/de_DE.json
9797
%%WWWDIR%%/apps/theming/l10n/es_PE.json
9797
%%WWWDIR%%/apps-pkg/theming/l10n/el.js
9798
%%WWWDIR%%/apps/theming/l10n/es_PR.js
9798
%%WWWDIR%%/apps-pkg/theming/l10n/el.json
9799
%%WWWDIR%%/apps/theming/l10n/es_PR.json
9799
%%WWWDIR%%/apps-pkg/theming/l10n/en_GB.js
9800
%%WWWDIR%%/apps/theming/l10n/es_PY.js
9800
%%WWWDIR%%/apps-pkg/theming/l10n/en_GB.json
9801
%%WWWDIR%%/apps/theming/l10n/es_PY.json
9801
%%WWWDIR%%/apps-pkg/theming/l10n/es.js
9802
%%WWWDIR%%/apps/theming/l10n/es_SV.js
9802
%%WWWDIR%%/apps-pkg/theming/l10n/es.json
9803
%%WWWDIR%%/apps/theming/l10n/es_SV.json
9803
%%WWWDIR%%/apps-pkg/theming/l10n/es_419.js
9804
%%WWWDIR%%/apps/theming/l10n/es_UY.js
9804
%%WWWDIR%%/apps-pkg/theming/l10n/es_419.json
9805
%%WWWDIR%%/apps/theming/l10n/es_UY.json
9805
%%WWWDIR%%/apps-pkg/theming/l10n/es_AR.js
9806
%%WWWDIR%%/apps/theming/l10n/et_EE.js
9806
%%WWWDIR%%/apps-pkg/theming/l10n/es_AR.json
9807
%%WWWDIR%%/apps/theming/l10n/et_EE.json
9807
%%WWWDIR%%/apps-pkg/theming/l10n/es_CL.js
9808
%%WWWDIR%%/apps/theming/l10n/fi.js
9808
%%WWWDIR%%/apps-pkg/theming/l10n/es_CL.json
9809
%%WWWDIR%%/apps/theming/l10n/fi.json
9809
%%WWWDIR%%/apps-pkg/theming/l10n/es_CO.js
9810
%%WWWDIR%%/apps/theming/l10n/fr.js
9810
%%WWWDIR%%/apps-pkg/theming/l10n/es_CO.json
9811
%%WWWDIR%%/apps/theming/l10n/fr.json
9811
%%WWWDIR%%/apps-pkg/theming/l10n/es_CR.js
9812
%%WWWDIR%%/apps/theming/l10n/gl.js
9812
%%WWWDIR%%/apps-pkg/theming/l10n/es_CR.json
9813
%%WWWDIR%%/apps/theming/l10n/gl.json
9813
%%WWWDIR%%/apps-pkg/theming/l10n/es_DO.js
9814
%%WWWDIR%%/apps/theming/l10n/hu.js
9814
%%WWWDIR%%/apps-pkg/theming/l10n/es_DO.json
9815
%%WWWDIR%%/apps/theming/l10n/hu.json
9815
%%WWWDIR%%/apps-pkg/theming/l10n/es_EC.js
9816
%%WWWDIR%%/apps/theming/l10n/id.js
9816
%%WWWDIR%%/apps-pkg/theming/l10n/es_EC.json
9817
%%WWWDIR%%/apps/theming/l10n/id.json
9817
%%WWWDIR%%/apps-pkg/theming/l10n/es_GT.js
9818
%%WWWDIR%%/apps/theming/l10n/is.js
9818
%%WWWDIR%%/apps-pkg/theming/l10n/es_GT.json
9819
%%WWWDIR%%/apps/theming/l10n/is.json
9819
%%WWWDIR%%/apps-pkg/theming/l10n/es_HN.js
9820
%%WWWDIR%%/apps/theming/l10n/it.js
9820
%%WWWDIR%%/apps-pkg/theming/l10n/es_HN.json
9821
%%WWWDIR%%/apps/theming/l10n/it.json
9821
%%WWWDIR%%/apps-pkg/theming/l10n/es_MX.js
9822
%%WWWDIR%%/apps/theming/l10n/ja.js
9822
%%WWWDIR%%/apps-pkg/theming/l10n/es_MX.json
9823
%%WWWDIR%%/apps/theming/l10n/ja.json
9823
%%WWWDIR%%/apps-pkg/theming/l10n/es_NI.js
9824
%%WWWDIR%%/apps/theming/l10n/ka_GE.js
9824
%%WWWDIR%%/apps-pkg/theming/l10n/es_NI.json
9825
%%WWWDIR%%/apps/theming/l10n/ka_GE.json
9825
%%WWWDIR%%/apps-pkg/theming/l10n/es_PA.js
9826
%%WWWDIR%%/apps/theming/l10n/ko.js
9826
%%WWWDIR%%/apps-pkg/theming/l10n/es_PA.json
9827
%%WWWDIR%%/apps/theming/l10n/ko.json
9827
%%WWWDIR%%/apps-pkg/theming/l10n/es_PE.js
9828
%%WWWDIR%%/apps/theming/l10n/lt_LT.js
9828
%%WWWDIR%%/apps-pkg/theming/l10n/es_PE.json
9829
%%WWWDIR%%/apps/theming/l10n/lt_LT.json
9829
%%WWWDIR%%/apps-pkg/theming/l10n/es_PR.js
9830
%%WWWDIR%%/apps/theming/l10n/lv.js
9830
%%WWWDIR%%/apps-pkg/theming/l10n/es_PR.json
9831
%%WWWDIR%%/apps/theming/l10n/lv.json
9831
%%WWWDIR%%/apps-pkg/theming/l10n/es_PY.js
9832
%%WWWDIR%%/apps/theming/l10n/mn.js
9832
%%WWWDIR%%/apps-pkg/theming/l10n/es_PY.json
9833
%%WWWDIR%%/apps/theming/l10n/mn.json
9833
%%WWWDIR%%/apps-pkg/theming/l10n/es_SV.js
9834
%%WWWDIR%%/apps/theming/l10n/nb.js
9834
%%WWWDIR%%/apps-pkg/theming/l10n/es_SV.json
9835
%%WWWDIR%%/apps/theming/l10n/nb.json
9835
%%WWWDIR%%/apps-pkg/theming/l10n/es_UY.js
9836
%%WWWDIR%%/apps/theming/l10n/nl.js
9836
%%WWWDIR%%/apps-pkg/theming/l10n/es_UY.json
9837
%%WWWDIR%%/apps/theming/l10n/nl.json
9837
%%WWWDIR%%/apps-pkg/theming/l10n/et_EE.js
9838
%%WWWDIR%%/apps/theming/l10n/pl.js
9838
%%WWWDIR%%/apps-pkg/theming/l10n/et_EE.json
9839
%%WWWDIR%%/apps/theming/l10n/pl.json
9839
%%WWWDIR%%/apps-pkg/theming/l10n/fi.js
9840
%%WWWDIR%%/apps/theming/l10n/pt_BR.js
9840
%%WWWDIR%%/apps-pkg/theming/l10n/fi.json
9841
%%WWWDIR%%/apps/theming/l10n/pt_BR.json
9841
%%WWWDIR%%/apps-pkg/theming/l10n/fr.js
9842
%%WWWDIR%%/apps/theming/l10n/ru.js
9842
%%WWWDIR%%/apps-pkg/theming/l10n/fr.json
9843
%%WWWDIR%%/apps/theming/l10n/ru.json
9843
%%WWWDIR%%/apps-pkg/theming/l10n/gl.js
9844
%%WWWDIR%%/apps/theming/l10n/sk.js
9844
%%WWWDIR%%/apps-pkg/theming/l10n/gl.json
9845
%%WWWDIR%%/apps/theming/l10n/sk.json
9845
%%WWWDIR%%/apps-pkg/theming/l10n/hu.js
9846
%%WWWDIR%%/apps/theming/l10n/sl.js
9846
%%WWWDIR%%/apps-pkg/theming/l10n/hu.json
9847
%%WWWDIR%%/apps/theming/l10n/sl.json
9847
%%WWWDIR%%/apps-pkg/theming/l10n/id.js
9848
%%WWWDIR%%/apps/theming/l10n/sq.js
9848
%%WWWDIR%%/apps-pkg/theming/l10n/id.json
9849
%%WWWDIR%%/apps/theming/l10n/sq.json
9849
%%WWWDIR%%/apps-pkg/theming/l10n/is.js
9850
%%WWWDIR%%/apps/theming/l10n/sr.js
9850
%%WWWDIR%%/apps-pkg/theming/l10n/is.json
9851
%%WWWDIR%%/apps/theming/l10n/sr.json
9851
%%WWWDIR%%/apps-pkg/theming/l10n/it.js
9852
%%WWWDIR%%/apps/theming/l10n/sv.js
9852
%%WWWDIR%%/apps-pkg/theming/l10n/it.json
9853
%%WWWDIR%%/apps/theming/l10n/sv.json
9853
%%WWWDIR%%/apps-pkg/theming/l10n/ja.js
9854
%%WWWDIR%%/apps/theming/l10n/tr.js
9854
%%WWWDIR%%/apps-pkg/theming/l10n/ja.json
9855
%%WWWDIR%%/apps/theming/l10n/tr.json
9855
%%WWWDIR%%/apps-pkg/theming/l10n/ka_GE.js
9856
%%WWWDIR%%/apps/theming/l10n/vi.js
9856
%%WWWDIR%%/apps-pkg/theming/l10n/ka_GE.json
9857
%%WWWDIR%%/apps/theming/l10n/vi.json
9857
%%WWWDIR%%/apps-pkg/theming/l10n/ko.js
9858
%%WWWDIR%%/apps/theming/l10n/zh_CN.js
9858
%%WWWDIR%%/apps-pkg/theming/l10n/ko.json
9859
%%WWWDIR%%/apps/theming/l10n/zh_CN.json
9859
%%WWWDIR%%/apps-pkg/theming/l10n/lt_LT.js
9860
%%WWWDIR%%/apps/theming/l10n/zh_TW.js
9860
%%WWWDIR%%/apps-pkg/theming/l10n/lt_LT.json
9861
%%WWWDIR%%/apps/theming/l10n/zh_TW.json
9861
%%WWWDIR%%/apps-pkg/theming/l10n/lv.js
9862
%%WWWDIR%%/apps/theming/lib/Capabilities.php
9862
%%WWWDIR%%/apps-pkg/theming/l10n/lv.json
9863
%%WWWDIR%%/apps/theming/lib/Controller/IconController.php
9863
%%WWWDIR%%/apps-pkg/theming/l10n/mn.js
9864
%%WWWDIR%%/apps/theming/lib/Controller/ThemingController.php
9864
%%WWWDIR%%/apps-pkg/theming/l10n/mn.json
9865
%%WWWDIR%%/apps/theming/lib/IconBuilder.php
9865
%%WWWDIR%%/apps-pkg/theming/l10n/nb.js
9866
%%WWWDIR%%/apps/theming/lib/ImageManager.php
9866
%%WWWDIR%%/apps-pkg/theming/l10n/nb.json
9867
%%WWWDIR%%/apps/theming/lib/Migration/ThemingImages.php
9867
%%WWWDIR%%/apps-pkg/theming/l10n/nl.js
9868
%%WWWDIR%%/apps/theming/lib/Settings/Admin.php
9868
%%WWWDIR%%/apps-pkg/theming/l10n/nl.json
9869
%%WWWDIR%%/apps/theming/lib/Settings/Section.php
9869
%%WWWDIR%%/apps-pkg/theming/l10n/pl.js
9870
%%WWWDIR%%/apps/theming/lib/ThemingDefaults.php
9870
%%WWWDIR%%/apps-pkg/theming/l10n/pl.json
9871
%%WWWDIR%%/apps/theming/lib/Util.php
9871
%%WWWDIR%%/apps-pkg/theming/l10n/pt_BR.js
9872
%%WWWDIR%%/apps/theming/templates/settings-admin.php
9872
%%WWWDIR%%/apps-pkg/theming/l10n/pt_BR.json
9873
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/app.php
9873
%%WWWDIR%%/apps-pkg/theming/l10n/pt_PT.js
9874
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/info.xml
9874
%%WWWDIR%%/apps-pkg/theming/l10n/pt_PT.json
9875
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/routes.php
9875
%%WWWDIR%%/apps-pkg/theming/l10n/ru.js
9876
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/signature.json
9876
%%WWWDIR%%/apps-pkg/theming/l10n/ru.json
9877
%%WWWDIR%%/apps/twofactor_backupcodes/composer/autoload.php
9877
%%WWWDIR%%/apps-pkg/theming/l10n/sk.js
9878
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer.json
9878
%%WWWDIR%%/apps-pkg/theming/l10n/sk.json
9879
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/ClassLoader.php
9879
%%WWWDIR%%/apps-pkg/theming/l10n/sl.js
9880
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/LICENSE
9880
%%WWWDIR%%/apps-pkg/theming/l10n/sl.json
9881
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_classmap.php
9881
%%WWWDIR%%/apps-pkg/theming/l10n/sq.js
9882
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_namespaces.php
9882
%%WWWDIR%%/apps-pkg/theming/l10n/sq.json
9883
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_psr4.php
9883
%%WWWDIR%%/apps-pkg/theming/l10n/sr.js
9884
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_real.php
9884
%%WWWDIR%%/apps-pkg/theming/l10n/sr.json
9885
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_static.php
9885
%%WWWDIR%%/apps-pkg/theming/l10n/sv.js
9886
%%WWWDIR%%/apps/twofactor_backupcodes/css/style.css
9886
%%WWWDIR%%/apps-pkg/theming/l10n/sv.json
9887
%%WWWDIR%%/apps/twofactor_backupcodes/js/settings.js
9887
%%WWWDIR%%/apps-pkg/theming/l10n/tr.js
9888
%%WWWDIR%%/apps/twofactor_backupcodes/js/settingsview.js
9888
%%WWWDIR%%/apps-pkg/theming/l10n/tr.json
9889
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/.gitkeep
9889
%%WWWDIR%%/apps-pkg/theming/l10n/vi.js
9890
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/af.js
9890
%%WWWDIR%%/apps-pkg/theming/l10n/vi.json
9891
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/af.json
9891
%%WWWDIR%%/apps-pkg/theming/l10n/zh_CN.js
9892
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ca.js
9892
%%WWWDIR%%/apps-pkg/theming/l10n/zh_CN.json
9893
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ca.json
9893
%%WWWDIR%%/apps-pkg/theming/l10n/zh_TW.js
9894
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/cs.js
9894
%%WWWDIR%%/apps-pkg/theming/l10n/zh_TW.json
9895
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/cs.json
9895
%%WWWDIR%%/apps-pkg/theming/lib/Capabilities.php
9896
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/cs_CZ.js
9896
%%WWWDIR%%/apps-pkg/theming/lib/Controller/IconController.php
9897
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/cs_CZ.json
9897
%%WWWDIR%%/apps-pkg/theming/lib/Controller/ThemingController.php
9898
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/da.js
9898
%%WWWDIR%%/apps-pkg/theming/lib/IconBuilder.php
9899
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/da.json
9899
%%WWWDIR%%/apps-pkg/theming/lib/ImageManager.php
9900
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/de.js
9900
%%WWWDIR%%/apps-pkg/theming/lib/Migration/ThemingImages.php
9901
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/de.json
9901
%%WWWDIR%%/apps-pkg/theming/lib/Settings/Admin.php
9902
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/de_DE.js
9902
%%WWWDIR%%/apps-pkg/theming/lib/Settings/Section.php
9903
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/de_DE.json
9903
%%WWWDIR%%/apps-pkg/theming/lib/ThemingDefaults.php
9904
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/el.js
9904
%%WWWDIR%%/apps-pkg/theming/lib/Util.php
9905
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/el.json
9905
%%WWWDIR%%/apps-pkg/theming/templates/settings-admin.php
9906
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/en_GB.js
9906
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/appinfo/app.php
9907
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/en_GB.json
9907
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/appinfo/info.xml
9908
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es.js
9908
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/appinfo/routes.php
9909
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es.json
9909
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/appinfo/signature.json
9910
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_419.js
9910
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/autoload.php
9911
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_419.json
9911
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer.json
9912
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_AR.js
9912
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer/ClassLoader.php
9913
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_AR.json
9913
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer/LICENSE
9914
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_CL.js
9914
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer/autoload_classmap.php
9915
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_CL.json
9915
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer/autoload_namespaces.php
9916
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_CO.js
9916
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer/autoload_psr4.php
9917
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_CO.json
9917
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer/autoload_real.php
9918
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_CR.js
9918
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer/autoload_static.php
9919
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_CR.json
9919
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/css/style.css
9920
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_DO.js
9920
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/js/settings.js
9921
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_DO.json
9921
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/js/settingsview.js
9922
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_EC.js
9922
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/.gitkeep
9923
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_EC.json
9923
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/af.js
9924
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_GT.js
9924
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/af.json
9925
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_GT.json
9925
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ast.js
9926
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_HN.js
9926
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ast.json
9927
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_HN.json
9927
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ca.js
9928
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_MX.js
9928
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ca.json
9929
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_MX.json
9929
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/cs.js
9930
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_NI.js
9930
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/cs.json
9931
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_NI.json
9931
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/cs_CZ.js
9932
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PA.js
9932
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/cs_CZ.json
9933
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PA.json
9933
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/da.js
9934
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PE.js
9934
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/da.json
9935
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PE.json
9935
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/de.js
9936
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PR.js
9936
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/de.json
9937
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PR.json
9937
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/de_DE.js
9938
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PY.js
9938
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/de_DE.json
9939
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PY.json
9939
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/el.js
9940
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_SV.js
9940
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/el.json
9941
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_SV.json
9941
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/en_GB.js
9942
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_UY.js
9942
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/en_GB.json
9943
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_UY.json
9943
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es.js
9944
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/fi.js
9944
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es.json
9945
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/fi.json
9945
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_419.js
9946
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/fr.js
9946
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_419.json
9947
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/fr.json
9947
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_AR.js
9948
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/gl.js
9948
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_AR.json
9949
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/gl.json
9949
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_CL.js
9950
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/hu.js
9950
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_CL.json
9951
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/hu.json
9951
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_CO.js
9952
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/hu_HU.js
9952
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_CO.json
9953
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/hu_HU.json
9953
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_CR.js
9954
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/is.js
9954
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_CR.json
9955
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/is.json
9955
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_DO.js
9956
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/it.js
9956
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_DO.json
9957
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/it.json
9957
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_EC.js
9958
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ja.js
9958
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_EC.json
9959
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ja.json
9959
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_GT.js
9960
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ka_GE.js
9960
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_GT.json
9961
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ka_GE.json
9961
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_HN.js
9962
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ko.js
9962
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_HN.json
9963
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ko.json
9963
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_MX.js
9964
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/lv.js
9964
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_MX.json
9965
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/lv.json
9965
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_NI.js
9966
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/mn.js
9966
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_NI.json
9967
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/mn.json
9967
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PA.js
9968
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/nb.js
9968
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PA.json
9969
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/nb.json
9969
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PE.js
9970
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/nb_NO.js
9970
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PE.json
9971
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/nb_NO.json
9971
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PR.js
9972
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/nl.js
9972
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PR.json
9973
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/nl.json
9973
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PY.js
9974
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/pl.js
9974
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PY.json
9975
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/pl.json
9975
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_SV.js
9976
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/pt_BR.js
9976
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_SV.json
9977
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/pt_BR.json
9977
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_UY.js
9978
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ru.js
9978
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_UY.json
9979
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ru.json
9979
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/fi.js
9980
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sk.js
9980
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/fi.json
9981
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sk.json
9981
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/fr.js
9982
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sq.js
9982
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/fr.json
9983
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sq.json
9983
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/gl.js
9984
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sr.js
9984
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/gl.json
9985
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sr.json
9985
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/hu.js
9986
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sv.js
9986
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/hu.json
9987
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sv.json
9987
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/hu_HU.js
9988
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/tr.js
9988
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/hu_HU.json
9989
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/tr.json
9989
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/is.js
9990
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/zh_CN.js
9990
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/is.json
9991
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/zh_CN.json
9991
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/it.js
9992
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/zh_TW.js
9992
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/it.json
9993
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/zh_TW.json
9993
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ja.js
9994
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Activity/Provider.php
9994
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ja.json
9995
%%WWWDIR%%/apps/twofactor_backupcodes/lib/AppInfo/Application.php
9995
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ka_GE.js
9996
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Controller/SettingsController.php
9996
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ka_GE.json
9997
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Db/BackupCode.php
9997
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ko.js
9998
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Db/BackupCodeMapper.php
9998
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ko.json
9999
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php
9999
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/lv.js
10000
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php
10000
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/lv.json
10001
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php
10001
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/mn.js
10002
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php
10002
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/mn.json
10003
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Provider/BackupCodesProvider.php
10003
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/nb.js
10004
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php
10004
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/nb.json
10005
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Settings/Personal.php
10005
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/nb_NO.js
10006
%%WWWDIR%%/apps/twofactor_backupcodes/templates/challenge.php
10006
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/nb_NO.json
10007
%%WWWDIR%%/apps/twofactor_backupcodes/templates/personal.php
10007
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/nl.js
10008
%%WWWDIR%%/apps/updatenotification/appinfo/app.php
10008
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/nl.json
10009
%%WWWDIR%%/apps/updatenotification/appinfo/info.xml
10009
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/pl.js
10010
%%WWWDIR%%/apps/updatenotification/appinfo/routes.php
10010
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/pl.json
10011
%%WWWDIR%%/apps/updatenotification/appinfo/signature.json
10011
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/pt_BR.js
10012
%%WWWDIR%%/apps/updatenotification/composer/autoload.php
10012
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/pt_BR.json
10013
%%WWWDIR%%/apps/updatenotification/composer/composer.json
10013
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ru.js
10014
%%WWWDIR%%/apps/updatenotification/composer/composer/ClassLoader.php
10014
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ru.json
10015
%%WWWDIR%%/apps/updatenotification/composer/composer/LICENSE
10015
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sk.js
10016
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_classmap.php
10016
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sk.json
10017
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_namespaces.php
10017
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sl.js
10018
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_psr4.php
10018
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sl.json
10019
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_real.php
10019
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sq.js
10020
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_static.php
10020
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sq.json
10021
%%WWWDIR%%/apps/updatenotification/css/admin.css
10021
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sr.js
10022
%%WWWDIR%%/apps/updatenotification/img/app.svg
10022
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sr.json
10023
%%WWWDIR%%/apps/updatenotification/img/notification.svg
10023
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sv.js
10024
%%WWWDIR%%/apps/updatenotification/js/admin.js
10024
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sv.json
10025
%%WWWDIR%%/apps/updatenotification/js/notification.js
10025
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/tr.js
10026
%%WWWDIR%%/apps/updatenotification/l10n/.gitkeep
10026
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/tr.json
10027
%%WWWDIR%%/apps/updatenotification/l10n/af.js
10027
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/zh_CN.js
10028
%%WWWDIR%%/apps/updatenotification/l10n/af.json
10028
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/zh_CN.json
10029
%%WWWDIR%%/apps/updatenotification/l10n/ar.js
10029
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/zh_TW.js
10030
%%WWWDIR%%/apps/updatenotification/l10n/ar.json
10030
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/zh_TW.json
10031
%%WWWDIR%%/apps/updatenotification/l10n/ast.js
10031
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Activity/Provider.php
10032
%%WWWDIR%%/apps/updatenotification/l10n/ast.json
10032
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/AppInfo/Application.php
10033
%%WWWDIR%%/apps/updatenotification/l10n/az.js
10033
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Controller/SettingsController.php
10034
%%WWWDIR%%/apps/updatenotification/l10n/az.json
10034
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Db/BackupCode.php
10035
%%WWWDIR%%/apps/updatenotification/l10n/bg.js
10035
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Db/BackupCodeMapper.php
10036
%%WWWDIR%%/apps/updatenotification/l10n/bg.json
10036
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php
10037
%%WWWDIR%%/apps/updatenotification/l10n/bg_BG.js
10037
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php
10038
%%WWWDIR%%/apps/updatenotification/l10n/bg_BG.json
10038
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php
10039
%%WWWDIR%%/apps/updatenotification/l10n/bn_BD.js
10039
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php
10040
%%WWWDIR%%/apps/updatenotification/l10n/bn_BD.json
10040
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Provider/BackupCodesProvider.php
10041
%%WWWDIR%%/apps/updatenotification/l10n/bs.js
10041
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Service/BackupCodeStorage.php
10042
%%WWWDIR%%/apps/updatenotification/l10n/bs.json
10042
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Settings/Personal.php
10043
%%WWWDIR%%/apps/updatenotification/l10n/ca.js
10043
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/templates/challenge.php
10044
%%WWWDIR%%/apps/updatenotification/l10n/ca.json
10044
%%WWWDIR%%/apps-pkg/twofactor_backupcodes/templates/personal.php
10045
%%WWWDIR%%/apps/updatenotification/l10n/cs.js
10045
%%WWWDIR%%/apps-pkg/updatenotification/appinfo/app.php
10046
%%WWWDIR%%/apps/updatenotification/l10n/cs.json
10046
%%WWWDIR%%/apps-pkg/updatenotification/appinfo/info.xml
10047
%%WWWDIR%%/apps/updatenotification/l10n/cs_CZ.js
10047
%%WWWDIR%%/apps-pkg/updatenotification/appinfo/routes.php
10048
%%WWWDIR%%/apps/updatenotification/l10n/cs_CZ.json
10048
%%WWWDIR%%/apps-pkg/updatenotification/appinfo/signature.json
10049
%%WWWDIR%%/apps/updatenotification/l10n/da.js
10049
%%WWWDIR%%/apps-pkg/updatenotification/composer/autoload.php
10050
%%WWWDIR%%/apps/updatenotification/l10n/da.json
10050
%%WWWDIR%%/apps-pkg/updatenotification/composer/composer.json
10051
%%WWWDIR%%/apps/updatenotification/l10n/de.js
10051
%%WWWDIR%%/apps-pkg/updatenotification/composer/composer/ClassLoader.php
10052
%%WWWDIR%%/apps/updatenotification/l10n/de.json
10052
%%WWWDIR%%/apps-pkg/updatenotification/composer/composer/LICENSE
10053
%%WWWDIR%%/apps/updatenotification/l10n/de_DE.js
10053
%%WWWDIR%%/apps-pkg/updatenotification/composer/composer/autoload_classmap.php
10054
%%WWWDIR%%/apps/updatenotification/l10n/de_DE.json
10054
%%WWWDIR%%/apps-pkg/updatenotification/composer/composer/autoload_namespaces.php
10055
%%WWWDIR%%/apps/updatenotification/l10n/el.js
10055
%%WWWDIR%%/apps-pkg/updatenotification/composer/composer/autoload_psr4.php
10056
%%WWWDIR%%/apps/updatenotification/l10n/el.json
10056
%%WWWDIR%%/apps-pkg/updatenotification/composer/composer/autoload_real.php
10057
%%WWWDIR%%/apps/updatenotification/l10n/en_GB.js
10057
%%WWWDIR%%/apps-pkg/updatenotification/composer/composer/autoload_static.php
10058
%%WWWDIR%%/apps/updatenotification/l10n/en_GB.json
10058
%%WWWDIR%%/apps-pkg/updatenotification/css/admin.css
10059
%%WWWDIR%%/apps/updatenotification/l10n/eo.js
10059
%%WWWDIR%%/apps-pkg/updatenotification/img/app.svg
10060
%%WWWDIR%%/apps/updatenotification/l10n/eo.json
10060
%%WWWDIR%%/apps-pkg/updatenotification/img/notification.svg
10061
%%WWWDIR%%/apps/updatenotification/l10n/es.js
10061
%%WWWDIR%%/apps-pkg/updatenotification/js/admin.js
10062
%%WWWDIR%%/apps/updatenotification/l10n/es.json
10062
%%WWWDIR%%/apps-pkg/updatenotification/js/notification.js
10063
%%WWWDIR%%/apps/updatenotification/l10n/es_419.js
10063
%%WWWDIR%%/apps-pkg/updatenotification/l10n/.gitkeep
10064
%%WWWDIR%%/apps/updatenotification/l10n/es_419.json
10064
%%WWWDIR%%/apps-pkg/updatenotification/l10n/af.js
10065
%%WWWDIR%%/apps/updatenotification/l10n/es_AR.js
10065
%%WWWDIR%%/apps-pkg/updatenotification/l10n/af.json
10066
%%WWWDIR%%/apps/updatenotification/l10n/es_AR.json
10066
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ar.js
10067
%%WWWDIR%%/apps/updatenotification/l10n/es_CL.js
10067
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ar.json
10068
%%WWWDIR%%/apps/updatenotification/l10n/es_CL.json
10068
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ast.js
10069
%%WWWDIR%%/apps/updatenotification/l10n/es_CO.js
10069
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ast.json
10070
%%WWWDIR%%/apps/updatenotification/l10n/es_CO.json
10070
%%WWWDIR%%/apps-pkg/updatenotification/l10n/az.js
10071
%%WWWDIR%%/apps/updatenotification/l10n/es_CR.js
10071
%%WWWDIR%%/apps-pkg/updatenotification/l10n/az.json
10072
%%WWWDIR%%/apps/updatenotification/l10n/es_CR.json
10072
%%WWWDIR%%/apps-pkg/updatenotification/l10n/bg.js
10073
%%WWWDIR%%/apps/updatenotification/l10n/es_DO.js
10073
%%WWWDIR%%/apps-pkg/updatenotification/l10n/bg.json
10074
%%WWWDIR%%/apps/updatenotification/l10n/es_DO.json
10074
%%WWWDIR%%/apps-pkg/updatenotification/l10n/bg_BG.js
10075
%%WWWDIR%%/apps/updatenotification/l10n/es_EC.js
10075
%%WWWDIR%%/apps-pkg/updatenotification/l10n/bg_BG.json
10076
%%WWWDIR%%/apps/updatenotification/l10n/es_EC.json
10076
%%WWWDIR%%/apps-pkg/updatenotification/l10n/bn_BD.js
10077
%%WWWDIR%%/apps/updatenotification/l10n/es_GT.js
10077
%%WWWDIR%%/apps-pkg/updatenotification/l10n/bn_BD.json
10078
%%WWWDIR%%/apps/updatenotification/l10n/es_GT.json
10078
%%WWWDIR%%/apps-pkg/updatenotification/l10n/bs.js
10079
%%WWWDIR%%/apps/updatenotification/l10n/es_HN.js
10079
%%WWWDIR%%/apps-pkg/updatenotification/l10n/bs.json
10080
%%WWWDIR%%/apps/updatenotification/l10n/es_HN.json
10080
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ca.js
10081
%%WWWDIR%%/apps/updatenotification/l10n/es_MX.js
10081
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ca.json
10082
%%WWWDIR%%/apps/updatenotification/l10n/es_MX.json
10082
%%WWWDIR%%/apps-pkg/updatenotification/l10n/cs.js
10083
%%WWWDIR%%/apps/updatenotification/l10n/es_NI.js
10083
%%WWWDIR%%/apps-pkg/updatenotification/l10n/cs.json
10084
%%WWWDIR%%/apps/updatenotification/l10n/es_NI.json
10084
%%WWWDIR%%/apps-pkg/updatenotification/l10n/cs_CZ.js
10085
%%WWWDIR%%/apps/updatenotification/l10n/es_PA.js
10085
%%WWWDIR%%/apps-pkg/updatenotification/l10n/cs_CZ.json
10086
%%WWWDIR%%/apps/updatenotification/l10n/es_PA.json
10086
%%WWWDIR%%/apps-pkg/updatenotification/l10n/da.js
10087
%%WWWDIR%%/apps/updatenotification/l10n/es_PE.js
10087
%%WWWDIR%%/apps-pkg/updatenotification/l10n/da.json
10088
%%WWWDIR%%/apps/updatenotification/l10n/es_PE.json
10088
%%WWWDIR%%/apps-pkg/updatenotification/l10n/de.js
10089
%%WWWDIR%%/apps/updatenotification/l10n/es_PR.js
10089
%%WWWDIR%%/apps-pkg/updatenotification/l10n/de.json
10090
%%WWWDIR%%/apps/updatenotification/l10n/es_PR.json
10090
%%WWWDIR%%/apps-pkg/updatenotification/l10n/de_DE.js
10091
%%WWWDIR%%/apps/updatenotification/l10n/es_PY.js
10091
%%WWWDIR%%/apps-pkg/updatenotification/l10n/de_DE.json
10092
%%WWWDIR%%/apps/updatenotification/l10n/es_PY.json
10092
%%WWWDIR%%/apps-pkg/updatenotification/l10n/el.js
10093
%%WWWDIR%%/apps/updatenotification/l10n/es_SV.js
10093
%%WWWDIR%%/apps-pkg/updatenotification/l10n/el.json
10094
%%WWWDIR%%/apps/updatenotification/l10n/es_SV.json
10094
%%WWWDIR%%/apps-pkg/updatenotification/l10n/en_GB.js
10095
%%WWWDIR%%/apps/updatenotification/l10n/es_UY.js
10095
%%WWWDIR%%/apps-pkg/updatenotification/l10n/en_GB.json
10096
%%WWWDIR%%/apps/updatenotification/l10n/es_UY.json
10096
%%WWWDIR%%/apps-pkg/updatenotification/l10n/eo.js
10097
%%WWWDIR%%/apps/updatenotification/l10n/et_EE.js
10097
%%WWWDIR%%/apps-pkg/updatenotification/l10n/eo.json
10098
%%WWWDIR%%/apps/updatenotification/l10n/et_EE.json
10098
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es.js
10099
%%WWWDIR%%/apps/updatenotification/l10n/eu.js
10099
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es.json
10100
%%WWWDIR%%/apps/updatenotification/l10n/eu.json
10100
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_419.js
10101
%%WWWDIR%%/apps/updatenotification/l10n/fa.js
10101
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_419.json
10102
%%WWWDIR%%/apps/updatenotification/l10n/fa.json
10102
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_AR.js
10103
%%WWWDIR%%/apps/updatenotification/l10n/fi.js
10103
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_AR.json
10104
%%WWWDIR%%/apps/updatenotification/l10n/fi.json
10104
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_CL.js
10105
%%WWWDIR%%/apps/updatenotification/l10n/fi_FI.js
10105
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_CL.json
10106
%%WWWDIR%%/apps/updatenotification/l10n/fi_FI.json
10106
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_CO.js
10107
%%WWWDIR%%/apps/updatenotification/l10n/fr.js
10107
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_CO.json
10108
%%WWWDIR%%/apps/updatenotification/l10n/fr.json
10108
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_CR.js
10109
%%WWWDIR%%/apps/updatenotification/l10n/gl.js
10109
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_CR.json
10110
%%WWWDIR%%/apps/updatenotification/l10n/gl.json
10110
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_DO.js
10111
%%WWWDIR%%/apps/updatenotification/l10n/he.js
10111
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_DO.json
10112
%%WWWDIR%%/apps/updatenotification/l10n/he.json
10112
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_EC.js
10113
%%WWWDIR%%/apps/updatenotification/l10n/hr.js
10113
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_EC.json
10114
%%WWWDIR%%/apps/updatenotification/l10n/hr.json
10114
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_GT.js
10115
%%WWWDIR%%/apps/updatenotification/l10n/hu.js
10115
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_GT.json
10116
%%WWWDIR%%/apps/updatenotification/l10n/hu.json
10116
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_HN.js
10117
%%WWWDIR%%/apps/updatenotification/l10n/hu_HU.js
10117
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_HN.json
10118
%%WWWDIR%%/apps/updatenotification/l10n/hu_HU.json
10118
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_MX.js
10119
%%WWWDIR%%/apps/updatenotification/l10n/ia.js
10119
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_MX.json
10120
%%WWWDIR%%/apps/updatenotification/l10n/ia.json
10120
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_NI.js
10121
%%WWWDIR%%/apps/updatenotification/l10n/id.js
10121
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_NI.json
10122
%%WWWDIR%%/apps/updatenotification/l10n/id.json
10122
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PA.js
10123
%%WWWDIR%%/apps/updatenotification/l10n/is.js
10123
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PA.json
10124
%%WWWDIR%%/apps/updatenotification/l10n/is.json
10124
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PE.js
10125
%%WWWDIR%%/apps/updatenotification/l10n/it.js
10125
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PE.json
10126
%%WWWDIR%%/apps/updatenotification/l10n/it.json
10126
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PR.js
10127
%%WWWDIR%%/apps/updatenotification/l10n/ja.js
10127
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PR.json
10128
%%WWWDIR%%/apps/updatenotification/l10n/ja.json
10128
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PY.js
10129
%%WWWDIR%%/apps/updatenotification/l10n/ka_GE.js
10129
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PY.json
10130
%%WWWDIR%%/apps/updatenotification/l10n/ka_GE.json
10130
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_SV.js
10131
%%WWWDIR%%/apps/updatenotification/l10n/ko.js
10131
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_SV.json
10132
%%WWWDIR%%/apps/updatenotification/l10n/ko.json
10132
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_UY.js
10133
%%WWWDIR%%/apps/updatenotification/l10n/lb.js
10133
%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_UY.json
10134
%%WWWDIR%%/apps/updatenotification/l10n/lb.json
10134
%%WWWDIR%%/apps-pkg/updatenotification/l10n/et_EE.js
10135
%%WWWDIR%%/apps/updatenotification/l10n/lt_LT.js
10135
%%WWWDIR%%/apps-pkg/updatenotification/l10n/et_EE.json
10136
%%WWWDIR%%/apps/updatenotification/l10n/lt_LT.json
10136
%%WWWDIR%%/apps-pkg/updatenotification/l10n/eu.js
10137
%%WWWDIR%%/apps/updatenotification/l10n/lv.js
10137
%%WWWDIR%%/apps-pkg/updatenotification/l10n/eu.json
10138
%%WWWDIR%%/apps/updatenotification/l10n/lv.json
10138
%%WWWDIR%%/apps-pkg/updatenotification/l10n/fa.js
10139
%%WWWDIR%%/apps/updatenotification/l10n/mk.js
10139
%%WWWDIR%%/apps-pkg/updatenotification/l10n/fa.json
10140
%%WWWDIR%%/apps/updatenotification/l10n/mk.json
10140
%%WWWDIR%%/apps-pkg/updatenotification/l10n/fi.js
10141
%%WWWDIR%%/apps/updatenotification/l10n/nb.js
10141
%%WWWDIR%%/apps-pkg/updatenotification/l10n/fi.json
10142
%%WWWDIR%%/apps/updatenotification/l10n/nb.json
10142
%%WWWDIR%%/apps-pkg/updatenotification/l10n/fi_FI.js
10143
%%WWWDIR%%/apps/updatenotification/l10n/nb_NO.js
10143
%%WWWDIR%%/apps-pkg/updatenotification/l10n/fi_FI.json
10144
%%WWWDIR%%/apps/updatenotification/l10n/nb_NO.json
10144
%%WWWDIR%%/apps-pkg/updatenotification/l10n/fr.js
10145
%%WWWDIR%%/apps/updatenotification/l10n/nl.js
10145
%%WWWDIR%%/apps-pkg/updatenotification/l10n/fr.json
10146
%%WWWDIR%%/apps/updatenotification/l10n/nl.json
10146
%%WWWDIR%%/apps-pkg/updatenotification/l10n/gl.js
10147
%%WWWDIR%%/apps/updatenotification/l10n/oc.js
10147
%%WWWDIR%%/apps-pkg/updatenotification/l10n/gl.json
10148
%%WWWDIR%%/apps/updatenotification/l10n/oc.json
10148
%%WWWDIR%%/apps-pkg/updatenotification/l10n/he.js
10149
%%WWWDIR%%/apps/updatenotification/l10n/pl.js
10149
%%WWWDIR%%/apps-pkg/updatenotification/l10n/he.json
10150
%%WWWDIR%%/apps/updatenotification/l10n/pl.json
10150
%%WWWDIR%%/apps-pkg/updatenotification/l10n/hr.js
10151
%%WWWDIR%%/apps/updatenotification/l10n/pt_BR.js
10151
%%WWWDIR%%/apps-pkg/updatenotification/l10n/hr.json
10152
%%WWWDIR%%/apps/updatenotification/l10n/pt_BR.json
10152
%%WWWDIR%%/apps-pkg/updatenotification/l10n/hu.js
10153
%%WWWDIR%%/apps/updatenotification/l10n/pt_PT.js
10153
%%WWWDIR%%/apps-pkg/updatenotification/l10n/hu.json
10154
%%WWWDIR%%/apps/updatenotification/l10n/pt_PT.json
10154
%%WWWDIR%%/apps-pkg/updatenotification/l10n/hu_HU.js
10155
%%WWWDIR%%/apps/updatenotification/l10n/ro.js
10155
%%WWWDIR%%/apps-pkg/updatenotification/l10n/hu_HU.json
10156
%%WWWDIR%%/apps/updatenotification/l10n/ro.json
10156
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ia.js
10157
%%WWWDIR%%/apps/updatenotification/l10n/ru.js
10157
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ia.json
10158
%%WWWDIR%%/apps/updatenotification/l10n/ru.json
10158
%%WWWDIR%%/apps-pkg/updatenotification/l10n/id.js
10159
%%WWWDIR%%/apps/updatenotification/l10n/sk.js
10159
%%WWWDIR%%/apps-pkg/updatenotification/l10n/id.json
10160
%%WWWDIR%%/apps/updatenotification/l10n/sk.json
10160
%%WWWDIR%%/apps-pkg/updatenotification/l10n/is.js
10161
%%WWWDIR%%/apps/updatenotification/l10n/sk_SK.js
10161
%%WWWDIR%%/apps-pkg/updatenotification/l10n/is.json
10162
%%WWWDIR%%/apps/updatenotification/l10n/sk_SK.json
10162
%%WWWDIR%%/apps-pkg/updatenotification/l10n/it.js
10163
%%WWWDIR%%/apps/updatenotification/l10n/sl.js
10163
%%WWWDIR%%/apps-pkg/updatenotification/l10n/it.json
10164
%%WWWDIR%%/apps/updatenotification/l10n/sl.json
10164
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ja.js
10165
%%WWWDIR%%/apps/updatenotification/l10n/sq.js
10165
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ja.json
10166
%%WWWDIR%%/apps/updatenotification/l10n/sq.json
10166
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ka_GE.js
10167
%%WWWDIR%%/apps/updatenotification/l10n/sr.js
10167
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ka_GE.json
10168
%%WWWDIR%%/apps/updatenotification/l10n/sr.json
10168
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ko.js
10169
%%WWWDIR%%/apps/updatenotification/l10n/sv.js
10169
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ko.json
10170
%%WWWDIR%%/apps/updatenotification/l10n/sv.json
10170
%%WWWDIR%%/apps-pkg/updatenotification/l10n/lb.js
10171
%%WWWDIR%%/apps/updatenotification/l10n/th_TH.js
10171
%%WWWDIR%%/apps-pkg/updatenotification/l10n/lb.json
10172
%%WWWDIR%%/apps/updatenotification/l10n/th_TH.json
10172
%%WWWDIR%%/apps-pkg/updatenotification/l10n/lt_LT.js
10173
%%WWWDIR%%/apps/updatenotification/l10n/tr.js
10173
%%WWWDIR%%/apps-pkg/updatenotification/l10n/lt_LT.json
10174
%%WWWDIR%%/apps/updatenotification/l10n/tr.json
10174
%%WWWDIR%%/apps-pkg/updatenotification/l10n/lv.js
10175
%%WWWDIR%%/apps/updatenotification/l10n/uk.js
10175
%%WWWDIR%%/apps-pkg/updatenotification/l10n/lv.json
10176
%%WWWDIR%%/apps/updatenotification/l10n/uk.json
10176
%%WWWDIR%%/apps-pkg/updatenotification/l10n/mk.js
10177
%%WWWDIR%%/apps/updatenotification/l10n/vi.js
10177
%%WWWDIR%%/apps-pkg/updatenotification/l10n/mk.json
10178
%%WWWDIR%%/apps/updatenotification/l10n/vi.json
10178
%%WWWDIR%%/apps-pkg/updatenotification/l10n/nb.js
10179
%%WWWDIR%%/apps/updatenotification/l10n/zh_CN.js
10179
%%WWWDIR%%/apps-pkg/updatenotification/l10n/nb.json
10180
%%WWWDIR%%/apps/updatenotification/l10n/zh_CN.json
10180
%%WWWDIR%%/apps-pkg/updatenotification/l10n/nb_NO.js
10181
%%WWWDIR%%/apps/updatenotification/l10n/zh_TW.js
10181
%%WWWDIR%%/apps-pkg/updatenotification/l10n/nb_NO.json
10182
%%WWWDIR%%/apps/updatenotification/l10n/zh_TW.json
10182
%%WWWDIR%%/apps-pkg/updatenotification/l10n/nl.js
10183
%%WWWDIR%%/apps/updatenotification/lib/AppInfo/Application.php
10183
%%WWWDIR%%/apps-pkg/updatenotification/l10n/nl.json
10184
%%WWWDIR%%/apps/updatenotification/lib/Controller/AdminController.php
10184
%%WWWDIR%%/apps-pkg/updatenotification/l10n/oc.js
10185
%%WWWDIR%%/apps/updatenotification/lib/Notification/BackgroundJob.php
10185
%%WWWDIR%%/apps-pkg/updatenotification/l10n/oc.json
10186
%%WWWDIR%%/apps/updatenotification/lib/Notification/Notifier.php
10186
%%WWWDIR%%/apps-pkg/updatenotification/l10n/pl.js
10187
%%WWWDIR%%/apps/updatenotification/lib/ResetTokenBackgroundJob.php
10187
%%WWWDIR%%/apps-pkg/updatenotification/l10n/pl.json
10188
%%WWWDIR%%/apps/updatenotification/lib/UpdateChecker.php
10188
%%WWWDIR%%/apps-pkg/updatenotification/l10n/pt_BR.js
10189
%%WWWDIR%%/apps/updatenotification/templates/admin.php
10189
%%WWWDIR%%/apps-pkg/updatenotification/l10n/pt_BR.json
10190
%%WWWDIR%%/apps/user_external/appinfo/app.php
10190
%%WWWDIR%%/apps-pkg/updatenotification/l10n/pt_PT.js
10191
%%WWWDIR%%/apps/user_external/appinfo/database.xml
10191
%%WWWDIR%%/apps-pkg/updatenotification/l10n/pt_PT.json
10192
%%WWWDIR%%/apps/user_external/appinfo/info.xml
10192
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ro.js
10193
%%WWWDIR%%/apps/user_external/appinfo/signature.json
10193
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ro.json
10194
%%WWWDIR%%/apps/user_external/img/app.svg
10194
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ru.js
10195
%%WWWDIR%%/apps/user_external/lib/base.php
10195
%%WWWDIR%%/apps-pkg/updatenotification/l10n/ru.json
10196
%%WWWDIR%%/apps/user_external/lib/ftp.php
10196
%%WWWDIR%%/apps-pkg/updatenotification/l10n/sk.js
10197
%%WWWDIR%%/apps/user_external/lib/imap.php
10197
%%WWWDIR%%/apps-pkg/updatenotification/l10n/sk.json
10198
%%WWWDIR%%/apps/user_external/lib/smb.php
10198
%%WWWDIR%%/apps-pkg/updatenotification/l10n/sk_SK.js
10199
%%WWWDIR%%/apps/user_external/lib/webdavauth.php
10199
%%WWWDIR%%/apps-pkg/updatenotification/l10n/sk_SK.json
10200
%%WWWDIR%%/apps/user_ldap/ajax/clearMappings.php
10200
%%WWWDIR%%/apps-pkg/updatenotification/l10n/sl.js
10201
%%WWWDIR%%/apps/user_ldap/ajax/deleteConfiguration.php
10201
%%WWWDIR%%/apps-pkg/updatenotification/l10n/sl.json
10202
%%WWWDIR%%/apps/user_ldap/ajax/getConfiguration.php
10202
%%WWWDIR%%/apps-pkg/updatenotification/l10n/sq.js
10203
%%WWWDIR%%/apps/user_ldap/ajax/getNewServerConfigPrefix.php
10203
%%WWWDIR%%/apps-pkg/updatenotification/l10n/sq.json
10204
%%WWWDIR%%/apps/user_ldap/ajax/setConfiguration.php
10204
%%WWWDIR%%/apps-pkg/updatenotification/l10n/sr.js
10205
%%WWWDIR%%/apps/user_ldap/ajax/testConfiguration.php
10205
%%WWWDIR%%/apps-pkg/updatenotification/l10n/sr.json
10206
%%WWWDIR%%/apps/user_ldap/ajax/wizard.php
10206
%%WWWDIR%%/apps-pkg/updatenotification/l10n/sv.js
10207
%%WWWDIR%%/apps/user_ldap/appinfo/app.php
10207
%%WWWDIR%%/apps-pkg/updatenotification/l10n/sv.json
10208
%%WWWDIR%%/apps/user_ldap/appinfo/database.xml
10208
%%WWWDIR%%/apps-pkg/updatenotification/l10n/th_TH.js
10209
%%WWWDIR%%/apps/user_ldap/appinfo/info.xml
10209
%%WWWDIR%%/apps-pkg/updatenotification/l10n/th_TH.json
10210
%%WWWDIR%%/apps/user_ldap/appinfo/install.php
10210
%%WWWDIR%%/apps-pkg/updatenotification/l10n/tr.js
10211
%%WWWDIR%%/apps/user_ldap/appinfo/register_command.php
10211
%%WWWDIR%%/apps-pkg/updatenotification/l10n/tr.json
10212
%%WWWDIR%%/apps/user_ldap/appinfo/routes.php
10212
%%WWWDIR%%/apps-pkg/updatenotification/l10n/uk.js
10213
%%WWWDIR%%/apps/user_ldap/appinfo/signature.json
10213
%%WWWDIR%%/apps-pkg/updatenotification/l10n/uk.json
10214
%%WWWDIR%%/apps/user_ldap/appinfo/update.php
10214
%%WWWDIR%%/apps-pkg/updatenotification/l10n/vi.js
10215
%%WWWDIR%%/apps/user_ldap/composer/autoload.php
10215
%%WWWDIR%%/apps-pkg/updatenotification/l10n/vi.json
10216
%%WWWDIR%%/apps/user_ldap/composer/composer.json
10216
%%WWWDIR%%/apps-pkg/updatenotification/l10n/zh_CN.js
10217
%%WWWDIR%%/apps/user_ldap/composer/composer/ClassLoader.php
10217
%%WWWDIR%%/apps-pkg/updatenotification/l10n/zh_CN.json
10218
%%WWWDIR%%/apps/user_ldap/composer/composer/LICENSE
10218
%%WWWDIR%%/apps-pkg/updatenotification/l10n/zh_TW.js
10219
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_classmap.php
10219
%%WWWDIR%%/apps-pkg/updatenotification/l10n/zh_TW.json
10220
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_namespaces.php
10220
%%WWWDIR%%/apps-pkg/updatenotification/lib/AppInfo/Application.php
10221
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_psr4.php
10221
%%WWWDIR%%/apps-pkg/updatenotification/lib/Controller/AdminController.php
10222
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_real.php
10222
%%WWWDIR%%/apps-pkg/updatenotification/lib/Notification/BackgroundJob.php
10223
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_static.php
10223
%%WWWDIR%%/apps-pkg/updatenotification/lib/Notification/Notifier.php
10224
%%WWWDIR%%/apps/user_ldap/css/renewPassword.css
10224
%%WWWDIR%%/apps-pkg/updatenotification/lib/ResetTokenBackgroundJob.php
10225
%%WWWDIR%%/apps/user_ldap/css/settings.css
10225
%%WWWDIR%%/apps-pkg/updatenotification/lib/UpdateChecker.php
10226
%%WWWDIR%%/apps/user_ldap/img/app-dark.svg
10226
%%WWWDIR%%/apps-pkg/updatenotification/templates/admin.php
10227
%%WWWDIR%%/apps/user_ldap/img/app.svg
10227
%%WWWDIR%%/apps-pkg/user_external/appinfo/app.php
10228
%%WWWDIR%%/apps/user_ldap/img/copy.png
10228
%%WWWDIR%%/apps-pkg/user_external/appinfo/database.xml
10229
%%WWWDIR%%/apps/user_ldap/img/copy.svg
10229
%%WWWDIR%%/apps-pkg/user_external/appinfo/info.xml
10230
%%WWWDIR%%/apps/user_ldap/js/renewPassword.js
10230
%%WWWDIR%%/apps-pkg/user_external/appinfo/signature.json
10231
%%WWWDIR%%/apps/user_ldap/js/wizard/configModel.js
10231
%%WWWDIR%%/apps-pkg/user_external/img/app.svg
10232
%%WWWDIR%%/apps/user_ldap/js/wizard/controller.js
10232
%%WWWDIR%%/apps-pkg/user_external/lib/base.php
10233
%%WWWDIR%%/apps/user_ldap/js/wizard/view.js
10233
%%WWWDIR%%/apps-pkg/user_external/lib/ftp.php
10234
%%WWWDIR%%/apps/user_ldap/js/wizard/wizard.js
10234
%%WWWDIR%%/apps-pkg/user_external/lib/imap.php
10235
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorAvailableAttributes.js
10235
%%WWWDIR%%/apps-pkg/user_external/lib/smb.php
10236
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorBaseDN.js
10236
%%WWWDIR%%/apps-pkg/user_external/lib/webdavauth.php
10237
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorClearGroupMappings.js
10237
%%WWWDIR%%/apps-pkg/user_ldap/ajax/clearMappings.php
10238
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorClearUserMappings.js
10238
%%WWWDIR%%/apps-pkg/user_ldap/ajax/deleteConfiguration.php
10239
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorEmailAttribute.js
10239
%%WWWDIR%%/apps-pkg/user_ldap/ajax/getConfiguration.php
10240
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorFeatureAbstract.js
10240
%%WWWDIR%%/apps-pkg/user_ldap/ajax/getNewServerConfigPrefix.php
10241
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorFilterGroup.js
10241
%%WWWDIR%%/apps-pkg/user_ldap/ajax/setConfiguration.php
10242
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorFilterLogin.js
10242
%%WWWDIR%%/apps-pkg/user_ldap/ajax/testConfiguration.php
10243
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorFilterUser.js
10243
%%WWWDIR%%/apps-pkg/user_ldap/ajax/wizard.php
10244
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorGeneric.js
10244
%%WWWDIR%%/apps-pkg/user_ldap/appinfo/app.php
10245
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorGroupCount.js
10245
%%WWWDIR%%/apps-pkg/user_ldap/appinfo/database.xml
10246
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorGroupObjectClasses.js
10246
%%WWWDIR%%/apps-pkg/user_ldap/appinfo/info.xml
10247
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorGroupsForGroups.js
10247
%%WWWDIR%%/apps-pkg/user_ldap/appinfo/install.php
10248
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorGroupsForUsers.js
10248
%%WWWDIR%%/apps-pkg/user_ldap/appinfo/register_command.php
10249
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorPort.js
10249
%%WWWDIR%%/apps-pkg/user_ldap/appinfo/routes.php
10250
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorQueue.js
10250
%%WWWDIR%%/apps-pkg/user_ldap/appinfo/signature.json
10251
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorSimpleRequestAbstract.js
10251
%%WWWDIR%%/apps-pkg/user_ldap/appinfo/update.php
10252
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorTestAbstract.js
10252
%%WWWDIR%%/apps-pkg/user_ldap/composer/autoload.php
10253
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorTestBaseDN.js
10253
%%WWWDIR%%/apps-pkg/user_ldap/composer/composer.json
10254
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorTestConfiguration.js
10254
%%WWWDIR%%/apps-pkg/user_ldap/composer/composer/ClassLoader.php
10255
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorTestLoginName.js
10255
%%WWWDIR%%/apps-pkg/user_ldap/composer/composer/LICENSE
10256
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorUserCount.js
10256
%%WWWDIR%%/apps-pkg/user_ldap/composer/composer/autoload_classmap.php
10257
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorUserDisplayNameAttribute.js
10257
%%WWWDIR%%/apps-pkg/user_ldap/composer/composer/autoload_namespaces.php
10258
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorUserGroupAssociation.js
10258
%%WWWDIR%%/apps-pkg/user_ldap/composer/composer/autoload_psr4.php
10259
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorUserObjectClasses.js
10259
%%WWWDIR%%/apps-pkg/user_ldap/composer/composer/autoload_real.php
10260
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardFilterOnType.js
10260
%%WWWDIR%%/apps-pkg/user_ldap/composer/composer/autoload_static.php
10261
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardFilterOnTypeFactory.js
10261
%%WWWDIR%%/apps-pkg/user_ldap/css/renewPassword.css
10262
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardObject.js
10262
%%WWWDIR%%/apps-pkg/user_ldap/css/settings.css
10263
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabAbstractFilter.js
10263
%%WWWDIR%%/apps-pkg/user_ldap/img/app-dark.svg
10264
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabAdvanced.js
10264
%%WWWDIR%%/apps-pkg/user_ldap/img/app.svg
10265
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabElementary.js
10265
%%WWWDIR%%/apps-pkg/user_ldap/img/copy.png
10266
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabExpert.js
10266
%%WWWDIR%%/apps-pkg/user_ldap/img/copy.svg
10267
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabGeneric.js
10267
%%WWWDIR%%/apps-pkg/user_ldap/js/renewPassword.js
10268
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabGroupFilter.js
10268
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/configModel.js
10269
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabLoginFilter.js
10269
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/controller.js
10270
%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabUserFilter.js
10270
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/view.js
10271
%%WWWDIR%%/apps/user_ldap/l10n/.gitkeep
10271
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizard.js
10272
%%WWWDIR%%/apps/user_ldap/l10n/ach.js
10272
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorAvailableAttributes.js
10273
%%WWWDIR%%/apps/user_ldap/l10n/ach.json
10273
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorBaseDN.js
10274
%%WWWDIR%%/apps/user_ldap/l10n/ady.js
10274
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorClearGroupMappings.js
10275
%%WWWDIR%%/apps/user_ldap/l10n/ady.json
10275
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorClearUserMappings.js
10276
%%WWWDIR%%/apps/user_ldap/l10n/af_ZA.js
10276
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorEmailAttribute.js
10277
%%WWWDIR%%/apps/user_ldap/l10n/af_ZA.json
10277
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorFeatureAbstract.js
10278
%%WWWDIR%%/apps/user_ldap/l10n/ak.js
10278
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorFilterGroup.js
10279
%%WWWDIR%%/apps/user_ldap/l10n/ak.json
10279
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorFilterLogin.js
10280
%%WWWDIR%%/apps/user_ldap/l10n/am_ET.js
10280
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorFilterUser.js
10281
%%WWWDIR%%/apps/user_ldap/l10n/am_ET.json
10281
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorGeneric.js
10282
%%WWWDIR%%/apps/user_ldap/l10n/ar.js
10282
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorGroupCount.js
10283
%%WWWDIR%%/apps/user_ldap/l10n/ar.json
10283
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorGroupObjectClasses.js
10284
%%WWWDIR%%/apps/user_ldap/l10n/ast.js
10284
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorGroupsForGroups.js
10285
%%WWWDIR%%/apps/user_ldap/l10n/ast.json
10285
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorGroupsForUsers.js
10286
%%WWWDIR%%/apps/user_ldap/l10n/az.js
10286
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorPort.js
10287
%%WWWDIR%%/apps/user_ldap/l10n/az.json
10287
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorQueue.js
10288
%%WWWDIR%%/apps/user_ldap/l10n/be.js
10288
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorSimpleRequestAbstract.js
10289
%%WWWDIR%%/apps/user_ldap/l10n/be.json
10289
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorTestAbstract.js
10290
%%WWWDIR%%/apps/user_ldap/l10n/bg_BG.js
10290
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorTestBaseDN.js
10291
%%WWWDIR%%/apps/user_ldap/l10n/bg_BG.json
10291
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorTestConfiguration.js
10292
%%WWWDIR%%/apps/user_ldap/l10n/bn_BD.js
10292
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorTestLoginName.js
10293
%%WWWDIR%%/apps/user_ldap/l10n/bn_BD.json
10293
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorUserCount.js
10294
%%WWWDIR%%/apps/user_ldap/l10n/bn_IN.js
10294
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorUserDisplayNameAttribute.js
10295
%%WWWDIR%%/apps/user_ldap/l10n/bn_IN.json
10295
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorUserGroupAssociation.js
10296
%%WWWDIR%%/apps/user_ldap/l10n/bs.js
10296
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorUserObjectClasses.js
10297
%%WWWDIR%%/apps/user_ldap/l10n/bs.json
10297
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardFilterOnType.js
10298
%%WWWDIR%%/apps/user_ldap/l10n/ca.js
10298
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardFilterOnTypeFactory.js
10299
%%WWWDIR%%/apps/user_ldap/l10n/ca.json
10299
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardObject.js
10300
%%WWWDIR%%/apps/user_ldap/l10n/cs.js
10300
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabAbstractFilter.js
10301
%%WWWDIR%%/apps/user_ldap/l10n/cs.json
10301
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabAdvanced.js
10302
%%WWWDIR%%/apps/user_ldap/l10n/cs_CZ.js
10302
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabElementary.js
10303
%%WWWDIR%%/apps/user_ldap/l10n/cs_CZ.json
10303
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabExpert.js
10304
%%WWWDIR%%/apps/user_ldap/l10n/cy_GB.js
10304
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabGeneric.js
10305
%%WWWDIR%%/apps/user_ldap/l10n/cy_GB.json
10305
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabGroupFilter.js
10306
%%WWWDIR%%/apps/user_ldap/l10n/da.js
10306
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabLoginFilter.js
10307
%%WWWDIR%%/apps/user_ldap/l10n/da.json
10307
%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabUserFilter.js
10308
%%WWWDIR%%/apps/user_ldap/l10n/de.js
10308
%%WWWDIR%%/apps-pkg/user_ldap/l10n/.gitkeep
10309
%%WWWDIR%%/apps/user_ldap/l10n/de.json
10309
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ach.js
10310
%%WWWDIR%%/apps/user_ldap/l10n/de_AT.js
10310
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ach.json
10311
%%WWWDIR%%/apps/user_ldap/l10n/de_AT.json
10311
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ady.js
10312
%%WWWDIR%%/apps/user_ldap/l10n/de_DE.js
10312
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ady.json
10313
%%WWWDIR%%/apps/user_ldap/l10n/de_DE.json
10313
%%WWWDIR%%/apps-pkg/user_ldap/l10n/af_ZA.js
10314
%%WWWDIR%%/apps/user_ldap/l10n/el.js
10314
%%WWWDIR%%/apps-pkg/user_ldap/l10n/af_ZA.json
10315
%%WWWDIR%%/apps/user_ldap/l10n/el.json
10315
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ak.js
10316
%%WWWDIR%%/apps/user_ldap/l10n/en_GB.js
10316
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ak.json
10317
%%WWWDIR%%/apps/user_ldap/l10n/en_GB.json
10317
%%WWWDIR%%/apps-pkg/user_ldap/l10n/am_ET.js
10318
%%WWWDIR%%/apps/user_ldap/l10n/eo.js
10318
%%WWWDIR%%/apps-pkg/user_ldap/l10n/am_ET.json
10319
%%WWWDIR%%/apps/user_ldap/l10n/eo.json
10319
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ar.js
10320
%%WWWDIR%%/apps/user_ldap/l10n/es.js
10320
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ar.json
10321
%%WWWDIR%%/apps/user_ldap/l10n/es.json
10321
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ast.js
10322
%%WWWDIR%%/apps/user_ldap/l10n/es_419.js
10322
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ast.json
10323
%%WWWDIR%%/apps/user_ldap/l10n/es_419.json
10323
%%WWWDIR%%/apps-pkg/user_ldap/l10n/az.js
10324
%%WWWDIR%%/apps/user_ldap/l10n/es_AR.js
10324
%%WWWDIR%%/apps-pkg/user_ldap/l10n/az.json
10325
%%WWWDIR%%/apps/user_ldap/l10n/es_AR.json
10325
%%WWWDIR%%/apps-pkg/user_ldap/l10n/be.js
10326
%%WWWDIR%%/apps/user_ldap/l10n/es_CL.js
10326
%%WWWDIR%%/apps-pkg/user_ldap/l10n/be.json
10327
%%WWWDIR%%/apps/user_ldap/l10n/es_CL.json
10327
%%WWWDIR%%/apps-pkg/user_ldap/l10n/bg.js
10328
%%WWWDIR%%/apps/user_ldap/l10n/es_CO.js
10328
%%WWWDIR%%/apps-pkg/user_ldap/l10n/bg.json
10329
%%WWWDIR%%/apps/user_ldap/l10n/es_CO.json
10329
%%WWWDIR%%/apps-pkg/user_ldap/l10n/bg_BG.js
10330
%%WWWDIR%%/apps/user_ldap/l10n/es_CR.js
10330
%%WWWDIR%%/apps-pkg/user_ldap/l10n/bg_BG.json
10331
%%WWWDIR%%/apps/user_ldap/l10n/es_CR.json
10331
%%WWWDIR%%/apps-pkg/user_ldap/l10n/bn_BD.js
10332
%%WWWDIR%%/apps/user_ldap/l10n/es_DO.js
10332
%%WWWDIR%%/apps-pkg/user_ldap/l10n/bn_BD.json
10333
%%WWWDIR%%/apps/user_ldap/l10n/es_DO.json
10333
%%WWWDIR%%/apps-pkg/user_ldap/l10n/bn_IN.js
10334
%%WWWDIR%%/apps/user_ldap/l10n/es_EC.js
10334
%%WWWDIR%%/apps-pkg/user_ldap/l10n/bn_IN.json
10335
%%WWWDIR%%/apps/user_ldap/l10n/es_EC.json
10335
%%WWWDIR%%/apps-pkg/user_ldap/l10n/bs.js
10336
%%WWWDIR%%/apps/user_ldap/l10n/es_GT.js
10336
%%WWWDIR%%/apps-pkg/user_ldap/l10n/bs.json
10337
%%WWWDIR%%/apps/user_ldap/l10n/es_GT.json
10337
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ca.js
10338
%%WWWDIR%%/apps/user_ldap/l10n/es_HN.js
10338
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ca.json
10339
%%WWWDIR%%/apps/user_ldap/l10n/es_HN.json
10339
%%WWWDIR%%/apps-pkg/user_ldap/l10n/cs.js
10340
%%WWWDIR%%/apps/user_ldap/l10n/es_MX.js
10340
%%WWWDIR%%/apps-pkg/user_ldap/l10n/cs.json
10341
%%WWWDIR%%/apps/user_ldap/l10n/es_MX.json
10341
%%WWWDIR%%/apps-pkg/user_ldap/l10n/cs_CZ.js
10342
%%WWWDIR%%/apps/user_ldap/l10n/es_NI.js
10342
%%WWWDIR%%/apps-pkg/user_ldap/l10n/cs_CZ.json
10343
%%WWWDIR%%/apps/user_ldap/l10n/es_NI.json
10343
%%WWWDIR%%/apps-pkg/user_ldap/l10n/cy_GB.js
10344
%%WWWDIR%%/apps/user_ldap/l10n/es_PA.js
10344
%%WWWDIR%%/apps-pkg/user_ldap/l10n/cy_GB.json
10345
%%WWWDIR%%/apps/user_ldap/l10n/es_PA.json
10345
%%WWWDIR%%/apps-pkg/user_ldap/l10n/da.js
10346
%%WWWDIR%%/apps/user_ldap/l10n/es_PE.js
10346
%%WWWDIR%%/apps-pkg/user_ldap/l10n/da.json
10347
%%WWWDIR%%/apps/user_ldap/l10n/es_PE.json
10347
%%WWWDIR%%/apps-pkg/user_ldap/l10n/de.js
10348
%%WWWDIR%%/apps/user_ldap/l10n/es_PR.js
10348
%%WWWDIR%%/apps-pkg/user_ldap/l10n/de.json
10349
%%WWWDIR%%/apps/user_ldap/l10n/es_PR.json
10349
%%WWWDIR%%/apps-pkg/user_ldap/l10n/de_AT.js
10350
%%WWWDIR%%/apps/user_ldap/l10n/es_PY.js
10350
%%WWWDIR%%/apps-pkg/user_ldap/l10n/de_AT.json
10351
%%WWWDIR%%/apps/user_ldap/l10n/es_PY.json
10351
%%WWWDIR%%/apps-pkg/user_ldap/l10n/de_DE.js
10352
%%WWWDIR%%/apps/user_ldap/l10n/es_SV.js
10352
%%WWWDIR%%/apps-pkg/user_ldap/l10n/de_DE.json
10353
%%WWWDIR%%/apps/user_ldap/l10n/es_SV.json
10353
%%WWWDIR%%/apps-pkg/user_ldap/l10n/el.js
10354
%%WWWDIR%%/apps/user_ldap/l10n/es_UY.js
10354
%%WWWDIR%%/apps-pkg/user_ldap/l10n/el.json
10355
%%WWWDIR%%/apps/user_ldap/l10n/es_UY.json
10355
%%WWWDIR%%/apps-pkg/user_ldap/l10n/en_GB.js
10356
%%WWWDIR%%/apps/user_ldap/l10n/et_EE.js
10356
%%WWWDIR%%/apps-pkg/user_ldap/l10n/en_GB.json
10357
%%WWWDIR%%/apps/user_ldap/l10n/et_EE.json
10357
%%WWWDIR%%/apps-pkg/user_ldap/l10n/eo.js
10358
%%WWWDIR%%/apps/user_ldap/l10n/eu.js
10358
%%WWWDIR%%/apps-pkg/user_ldap/l10n/eo.json
10359
%%WWWDIR%%/apps/user_ldap/l10n/eu.json
10359
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es.js
10360
%%WWWDIR%%/apps/user_ldap/l10n/fa.js
10360
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es.json
10361
%%WWWDIR%%/apps/user_ldap/l10n/fa.json
10361
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_419.js
10362
%%WWWDIR%%/apps/user_ldap/l10n/fi_FI.js
10362
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_419.json
10363
%%WWWDIR%%/apps/user_ldap/l10n/fi_FI.json
10363
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_AR.js
10364
%%WWWDIR%%/apps/user_ldap/l10n/fil.js
10364
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_AR.json
10365
%%WWWDIR%%/apps/user_ldap/l10n/fil.json
10365
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_CL.js
10366
%%WWWDIR%%/apps/user_ldap/l10n/fr.js
10366
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_CL.json
10367
%%WWWDIR%%/apps/user_ldap/l10n/fr.json
10367
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_CO.js
10368
%%WWWDIR%%/apps/user_ldap/l10n/fy_NL.js
10368
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_CO.json
10369
%%WWWDIR%%/apps/user_ldap/l10n/fy_NL.json
10369
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_CR.js
10370
%%WWWDIR%%/apps/user_ldap/l10n/gl.js
10370
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_CR.json
10371
%%WWWDIR%%/apps/user_ldap/l10n/gl.json
10371
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_DO.js
10372
%%WWWDIR%%/apps/user_ldap/l10n/gu.js
10372
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_DO.json
10373
%%WWWDIR%%/apps/user_ldap/l10n/gu.json
10373
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_EC.js
10374
%%WWWDIR%%/apps/user_ldap/l10n/he.js
10374
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_EC.json
10375
%%WWWDIR%%/apps/user_ldap/l10n/he.json
10375
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_GT.js
10376
%%WWWDIR%%/apps/user_ldap/l10n/hi.js
10376
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_GT.json
10377
%%WWWDIR%%/apps/user_ldap/l10n/hi.json
10377
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_HN.js
10378
%%WWWDIR%%/apps/user_ldap/l10n/hr.js
10378
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_HN.json
10379
%%WWWDIR%%/apps/user_ldap/l10n/hr.json
10379
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_MX.js
10380
%%WWWDIR%%/apps/user_ldap/l10n/hu.js
10380
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_MX.json
10381
%%WWWDIR%%/apps/user_ldap/l10n/hu.json
10381
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_NI.js
10382
%%WWWDIR%%/apps/user_ldap/l10n/hu_HU.js
10382
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_NI.json
10383
%%WWWDIR%%/apps/user_ldap/l10n/hu_HU.json
10383
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PA.js
10384
%%WWWDIR%%/apps/user_ldap/l10n/hy.js
10384
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PA.json
10385
%%WWWDIR%%/apps/user_ldap/l10n/hy.json
10385
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PE.js
10386
%%WWWDIR%%/apps/user_ldap/l10n/ia.js
10386
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PE.json
10387
%%WWWDIR%%/apps/user_ldap/l10n/ia.json
10387
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PR.js
10388
%%WWWDIR%%/apps/user_ldap/l10n/id.js
10388
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PR.json
10389
%%WWWDIR%%/apps/user_ldap/l10n/id.json
10389
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PY.js
10390
%%WWWDIR%%/apps/user_ldap/l10n/io.js
10390
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PY.json
10391
%%WWWDIR%%/apps/user_ldap/l10n/io.json
10391
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_SV.js
10392
%%WWWDIR%%/apps/user_ldap/l10n/is.js
10392
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_SV.json
10393
%%WWWDIR%%/apps/user_ldap/l10n/is.json
10393
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_UY.js
10394
%%WWWDIR%%/apps/user_ldap/l10n/it.js
10394
%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_UY.json
10395
%%WWWDIR%%/apps/user_ldap/l10n/it.json
10395
%%WWWDIR%%/apps-pkg/user_ldap/l10n/et_EE.js
10396
%%WWWDIR%%/apps/user_ldap/l10n/ja.js
10396
%%WWWDIR%%/apps-pkg/user_ldap/l10n/et_EE.json
10397
%%WWWDIR%%/apps/user_ldap/l10n/ja.json
10397
%%WWWDIR%%/apps-pkg/user_ldap/l10n/eu.js
10398
%%WWWDIR%%/apps/user_ldap/l10n/jv.js
10398
%%WWWDIR%%/apps-pkg/user_ldap/l10n/eu.json
10399
%%WWWDIR%%/apps/user_ldap/l10n/jv.json
10399
%%WWWDIR%%/apps-pkg/user_ldap/l10n/fa.js
10400
%%WWWDIR%%/apps/user_ldap/l10n/ka_GE.js
10400
%%WWWDIR%%/apps-pkg/user_ldap/l10n/fa.json
10401
%%WWWDIR%%/apps/user_ldap/l10n/ka_GE.json
10401
%%WWWDIR%%/apps-pkg/user_ldap/l10n/fi_FI.js
10402
%%WWWDIR%%/apps/user_ldap/l10n/km.js
10402
%%WWWDIR%%/apps-pkg/user_ldap/l10n/fi_FI.json
10403
%%WWWDIR%%/apps/user_ldap/l10n/km.json
10403
%%WWWDIR%%/apps-pkg/user_ldap/l10n/fil.js
10404
%%WWWDIR%%/apps/user_ldap/l10n/kn.js
10404
%%WWWDIR%%/apps-pkg/user_ldap/l10n/fil.json
10405
%%WWWDIR%%/apps/user_ldap/l10n/kn.json
10405
%%WWWDIR%%/apps-pkg/user_ldap/l10n/fr.js
10406
%%WWWDIR%%/apps/user_ldap/l10n/ko.js
10406
%%WWWDIR%%/apps-pkg/user_ldap/l10n/fr.json
10407
%%WWWDIR%%/apps/user_ldap/l10n/ko.json
10407
%%WWWDIR%%/apps-pkg/user_ldap/l10n/fy_NL.js
10408
%%WWWDIR%%/apps/user_ldap/l10n/ku_IQ.js
10408
%%WWWDIR%%/apps-pkg/user_ldap/l10n/fy_NL.json
10409
%%WWWDIR%%/apps/user_ldap/l10n/ku_IQ.json
10409
%%WWWDIR%%/apps-pkg/user_ldap/l10n/gl.js
10410
%%WWWDIR%%/apps/user_ldap/l10n/lb.js
10410
%%WWWDIR%%/apps-pkg/user_ldap/l10n/gl.json
10411
%%WWWDIR%%/apps/user_ldap/l10n/lb.json
10411
%%WWWDIR%%/apps-pkg/user_ldap/l10n/gu.js
10412
%%WWWDIR%%/apps/user_ldap/l10n/lo.js
10412
%%WWWDIR%%/apps-pkg/user_ldap/l10n/gu.json
10413
%%WWWDIR%%/apps/user_ldap/l10n/lo.json
10413
%%WWWDIR%%/apps-pkg/user_ldap/l10n/he.js
10414
%%WWWDIR%%/apps/user_ldap/l10n/lt_LT.js
10414
%%WWWDIR%%/apps-pkg/user_ldap/l10n/he.json
10415
%%WWWDIR%%/apps/user_ldap/l10n/lt_LT.json
10415
%%WWWDIR%%/apps-pkg/user_ldap/l10n/hi.js
10416
%%WWWDIR%%/apps/user_ldap/l10n/lv.js
10416
%%WWWDIR%%/apps-pkg/user_ldap/l10n/hi.json
10417
%%WWWDIR%%/apps/user_ldap/l10n/lv.json
10417
%%WWWDIR%%/apps-pkg/user_ldap/l10n/hr.js
10418
%%WWWDIR%%/apps/user_ldap/l10n/mg.js
10418
%%WWWDIR%%/apps-pkg/user_ldap/l10n/hr.json
10419
%%WWWDIR%%/apps/user_ldap/l10n/mg.json
10419
%%WWWDIR%%/apps-pkg/user_ldap/l10n/hu.js
10420
%%WWWDIR%%/apps/user_ldap/l10n/mk.js
10420
%%WWWDIR%%/apps-pkg/user_ldap/l10n/hu.json
10421
%%WWWDIR%%/apps/user_ldap/l10n/mk.json
10421
%%WWWDIR%%/apps-pkg/user_ldap/l10n/hu_HU.js
10422
%%WWWDIR%%/apps/user_ldap/l10n/ml.js
10422
%%WWWDIR%%/apps-pkg/user_ldap/l10n/hu_HU.json
10423
%%WWWDIR%%/apps/user_ldap/l10n/ml.json
10423
%%WWWDIR%%/apps-pkg/user_ldap/l10n/hy.js
10424
%%WWWDIR%%/apps/user_ldap/l10n/ml_IN.js
10424
%%WWWDIR%%/apps-pkg/user_ldap/l10n/hy.json
10425
%%WWWDIR%%/apps/user_ldap/l10n/ml_IN.json
10425
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ia.js
10426
%%WWWDIR%%/apps/user_ldap/l10n/mn.js
10426
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ia.json
10427
%%WWWDIR%%/apps/user_ldap/l10n/mn.json
10427
%%WWWDIR%%/apps-pkg/user_ldap/l10n/id.js
10428
%%WWWDIR%%/apps/user_ldap/l10n/mr.js
10428
%%WWWDIR%%/apps-pkg/user_ldap/l10n/id.json
10429
%%WWWDIR%%/apps/user_ldap/l10n/mr.json
10429
%%WWWDIR%%/apps-pkg/user_ldap/l10n/io.js
10430
%%WWWDIR%%/apps/user_ldap/l10n/ms_MY.js
10430
%%WWWDIR%%/apps-pkg/user_ldap/l10n/io.json
10431
%%WWWDIR%%/apps/user_ldap/l10n/ms_MY.json
10431
%%WWWDIR%%/apps-pkg/user_ldap/l10n/is.js
10432
%%WWWDIR%%/apps/user_ldap/l10n/mt_MT.js
10432
%%WWWDIR%%/apps-pkg/user_ldap/l10n/is.json
10433
%%WWWDIR%%/apps/user_ldap/l10n/mt_MT.json
10433
%%WWWDIR%%/apps-pkg/user_ldap/l10n/it.js
10434
%%WWWDIR%%/apps/user_ldap/l10n/my_MM.js
10434
%%WWWDIR%%/apps-pkg/user_ldap/l10n/it.json
10435
%%WWWDIR%%/apps/user_ldap/l10n/my_MM.json
10435
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ja.js
10436
%%WWWDIR%%/apps/user_ldap/l10n/nb.js
10436
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ja.json
10437
%%WWWDIR%%/apps/user_ldap/l10n/nb.json
10437
%%WWWDIR%%/apps-pkg/user_ldap/l10n/jv.js
10438
%%WWWDIR%%/apps/user_ldap/l10n/nb_NO.js
10438
%%WWWDIR%%/apps-pkg/user_ldap/l10n/jv.json
10439
%%WWWDIR%%/apps/user_ldap/l10n/nb_NO.json
10439
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ka_GE.js
10440
%%WWWDIR%%/apps/user_ldap/l10n/nds.js
10440
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ka_GE.json
10441
%%WWWDIR%%/apps/user_ldap/l10n/nds.json
10441
%%WWWDIR%%/apps-pkg/user_ldap/l10n/km.js
10442
%%WWWDIR%%/apps/user_ldap/l10n/nl.js
10442
%%WWWDIR%%/apps-pkg/user_ldap/l10n/km.json
10443
%%WWWDIR%%/apps/user_ldap/l10n/nl.json
10443
%%WWWDIR%%/apps-pkg/user_ldap/l10n/kn.js
10444
%%WWWDIR%%/apps/user_ldap/l10n/nn_NO.js
10444
%%WWWDIR%%/apps-pkg/user_ldap/l10n/kn.json
10445
%%WWWDIR%%/apps/user_ldap/l10n/nn_NO.json
10445
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ko.js
10446
%%WWWDIR%%/apps/user_ldap/l10n/nqo.js
10446
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ko.json
10447
%%WWWDIR%%/apps/user_ldap/l10n/nqo.json
10447
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ku_IQ.js
10448
%%WWWDIR%%/apps/user_ldap/l10n/oc.js
10448
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ku_IQ.json
10449
%%WWWDIR%%/apps/user_ldap/l10n/oc.json
10449
%%WWWDIR%%/apps-pkg/user_ldap/l10n/lb.js
10450
%%WWWDIR%%/apps/user_ldap/l10n/pa.js
10450
%%WWWDIR%%/apps-pkg/user_ldap/l10n/lb.json
10451
%%WWWDIR%%/apps/user_ldap/l10n/pa.json
10451
%%WWWDIR%%/apps-pkg/user_ldap/l10n/lo.js
10452
%%WWWDIR%%/apps/user_ldap/l10n/pl.js
10452
%%WWWDIR%%/apps-pkg/user_ldap/l10n/lo.json
10453
%%WWWDIR%%/apps/user_ldap/l10n/pl.json
10453
%%WWWDIR%%/apps-pkg/user_ldap/l10n/lt_LT.js
10454
%%WWWDIR%%/apps/user_ldap/l10n/pt_BR.js
10454
%%WWWDIR%%/apps-pkg/user_ldap/l10n/lt_LT.json
10455
%%WWWDIR%%/apps/user_ldap/l10n/pt_BR.json
10455
%%WWWDIR%%/apps-pkg/user_ldap/l10n/lv.js
10456
%%WWWDIR%%/apps/user_ldap/l10n/pt_PT.js
10456
%%WWWDIR%%/apps-pkg/user_ldap/l10n/lv.json
10457
%%WWWDIR%%/apps/user_ldap/l10n/pt_PT.json
10457
%%WWWDIR%%/apps-pkg/user_ldap/l10n/mg.js
10458
%%WWWDIR%%/apps/user_ldap/l10n/ro.js
10458
%%WWWDIR%%/apps-pkg/user_ldap/l10n/mg.json
10459
%%WWWDIR%%/apps/user_ldap/l10n/ro.json
10459
%%WWWDIR%%/apps-pkg/user_ldap/l10n/mk.js
10460
%%WWWDIR%%/apps/user_ldap/l10n/ru.js
10460
%%WWWDIR%%/apps-pkg/user_ldap/l10n/mk.json
10461
%%WWWDIR%%/apps/user_ldap/l10n/ru.json
10461
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ml.js
10462
%%WWWDIR%%/apps/user_ldap/l10n/si_LK.js
10462
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ml.json
10463
%%WWWDIR%%/apps/user_ldap/l10n/si_LK.json
10463
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ml_IN.js
10464
%%WWWDIR%%/apps/user_ldap/l10n/sk.js
10464
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ml_IN.json
10465
%%WWWDIR%%/apps/user_ldap/l10n/sk.json
10465
%%WWWDIR%%/apps-pkg/user_ldap/l10n/mn.js
10466
%%WWWDIR%%/apps/user_ldap/l10n/sk_SK.js
10466
%%WWWDIR%%/apps-pkg/user_ldap/l10n/mn.json
10467
%%WWWDIR%%/apps/user_ldap/l10n/sk_SK.json
10467
%%WWWDIR%%/apps-pkg/user_ldap/l10n/mr.js
10468
%%WWWDIR%%/apps/user_ldap/l10n/sl.js
10468
%%WWWDIR%%/apps-pkg/user_ldap/l10n/mr.json
10469
%%WWWDIR%%/apps/user_ldap/l10n/sl.json
10469
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ms_MY.js
10470
%%WWWDIR%%/apps/user_ldap/l10n/sq.js
10470
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ms_MY.json
10471
%%WWWDIR%%/apps/user_ldap/l10n/sq.json
10471
%%WWWDIR%%/apps-pkg/user_ldap/l10n/mt_MT.js
10472
%%WWWDIR%%/apps/user_ldap/l10n/sr.js
10472
%%WWWDIR%%/apps-pkg/user_ldap/l10n/mt_MT.json
10473
%%WWWDIR%%/apps/user_ldap/l10n/sr.json
10473
%%WWWDIR%%/apps-pkg/user_ldap/l10n/my_MM.js
10474
%%WWWDIR%%/apps/user_ldap/l10n/sr@latin.js
10474
%%WWWDIR%%/apps-pkg/user_ldap/l10n/my_MM.json
10475
%%WWWDIR%%/apps/user_ldap/l10n/sr@latin.json
10475
%%WWWDIR%%/apps-pkg/user_ldap/l10n/nb.js
10476
%%WWWDIR%%/apps/user_ldap/l10n/su.js
10476
%%WWWDIR%%/apps-pkg/user_ldap/l10n/nb.json
10477
%%WWWDIR%%/apps/user_ldap/l10n/su.json
10477
%%WWWDIR%%/apps-pkg/user_ldap/l10n/nb_NO.js
10478
%%WWWDIR%%/apps/user_ldap/l10n/sv.js
10478
%%WWWDIR%%/apps-pkg/user_ldap/l10n/nb_NO.json
10479
%%WWWDIR%%/apps/user_ldap/l10n/sv.json
10479
%%WWWDIR%%/apps-pkg/user_ldap/l10n/nds.js
10480
%%WWWDIR%%/apps/user_ldap/l10n/sw_KE.js
10480
%%WWWDIR%%/apps-pkg/user_ldap/l10n/nds.json
10481
%%WWWDIR%%/apps/user_ldap/l10n/sw_KE.json
10481
%%WWWDIR%%/apps-pkg/user_ldap/l10n/nl.js
10482
%%WWWDIR%%/apps/user_ldap/l10n/ta_IN.js
10482
%%WWWDIR%%/apps-pkg/user_ldap/l10n/nl.json
10483
%%WWWDIR%%/apps/user_ldap/l10n/ta_IN.json
10483
%%WWWDIR%%/apps-pkg/user_ldap/l10n/nn_NO.js
10484
%%WWWDIR%%/apps/user_ldap/l10n/ta_LK.js
10484
%%WWWDIR%%/apps-pkg/user_ldap/l10n/nn_NO.json
10485
%%WWWDIR%%/apps/user_ldap/l10n/ta_LK.json
10485
%%WWWDIR%%/apps-pkg/user_ldap/l10n/nqo.js
10486
%%WWWDIR%%/apps/user_ldap/l10n/te.js
10486
%%WWWDIR%%/apps-pkg/user_ldap/l10n/nqo.json
10487
%%WWWDIR%%/apps/user_ldap/l10n/te.json
10487
%%WWWDIR%%/apps-pkg/user_ldap/l10n/oc.js
10488
%%WWWDIR%%/apps/user_ldap/l10n/tg_TJ.js
10488
%%WWWDIR%%/apps-pkg/user_ldap/l10n/oc.json
10489
%%WWWDIR%%/apps/user_ldap/l10n/tg_TJ.json
10489
%%WWWDIR%%/apps-pkg/user_ldap/l10n/pa.js
10490
%%WWWDIR%%/apps/user_ldap/l10n/th.js
10490
%%WWWDIR%%/apps-pkg/user_ldap/l10n/pa.json
10491
%%WWWDIR%%/apps/user_ldap/l10n/th.json
10491
%%WWWDIR%%/apps-pkg/user_ldap/l10n/pl.js
10492
%%WWWDIR%%/apps/user_ldap/l10n/th_TH.js
10492
%%WWWDIR%%/apps-pkg/user_ldap/l10n/pl.json
10493
%%WWWDIR%%/apps/user_ldap/l10n/th_TH.json
10493
%%WWWDIR%%/apps-pkg/user_ldap/l10n/pt_BR.js
10494
%%WWWDIR%%/apps/user_ldap/l10n/tl_PH.js
10494
%%WWWDIR%%/apps-pkg/user_ldap/l10n/pt_BR.json
10495
%%WWWDIR%%/apps/user_ldap/l10n/tl_PH.json
10495
%%WWWDIR%%/apps-pkg/user_ldap/l10n/pt_PT.js
10496
%%WWWDIR%%/apps/user_ldap/l10n/tr.js
10496
%%WWWDIR%%/apps-pkg/user_ldap/l10n/pt_PT.json
10497
%%WWWDIR%%/apps/user_ldap/l10n/tr.json
10497
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ro.js
10498
%%WWWDIR%%/apps/user_ldap/l10n/tzm.js
10498
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ro.json
10499
%%WWWDIR%%/apps/user_ldap/l10n/tzm.json
10499
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ru.js
10500
%%WWWDIR%%/apps/user_ldap/l10n/ug.js
10500
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ru.json
10501
%%WWWDIR%%/apps/user_ldap/l10n/ug.json
10501
%%WWWDIR%%/apps-pkg/user_ldap/l10n/si_LK.js
10502
%%WWWDIR%%/apps/user_ldap/l10n/uk.js
10502
%%WWWDIR%%/apps-pkg/user_ldap/l10n/si_LK.json
10503
%%WWWDIR%%/apps/user_ldap/l10n/uk.json
10503
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sk.js
10504
%%WWWDIR%%/apps/user_ldap/l10n/ur_PK.js
10504
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sk.json
10505
%%WWWDIR%%/apps/user_ldap/l10n/ur_PK.json
10505
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sk_SK.js
10506
%%WWWDIR%%/apps/user_ldap/l10n/vi.js
10506
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sk_SK.json
10507
%%WWWDIR%%/apps/user_ldap/l10n/vi.json
10507
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sl.js
10508
%%WWWDIR%%/apps/user_ldap/l10n/zh_CN.js
10508
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sl.json
10509
%%WWWDIR%%/apps/user_ldap/l10n/zh_CN.json
10509
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sq.js
10510
%%WWWDIR%%/apps/user_ldap/l10n/zh_HK.js
10510
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sq.json
10511
%%WWWDIR%%/apps/user_ldap/l10n/zh_HK.json
10511
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sr.js
10512
%%WWWDIR%%/apps/user_ldap/l10n/zh_TW.js
10512
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sr.json
10513
%%WWWDIR%%/apps/user_ldap/l10n/zh_TW.json
10513
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sr@latin.js
10514
%%WWWDIR%%/apps/user_ldap/lib/Access.php
10514
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sr@latin.json
10515
%%WWWDIR%%/apps/user_ldap/lib/AccessFactory.php
10515
%%WWWDIR%%/apps-pkg/user_ldap/l10n/su.js
10516
%%WWWDIR%%/apps/user_ldap/lib/AppInfo/Application.php
10516
%%WWWDIR%%/apps-pkg/user_ldap/l10n/su.json
10517
%%WWWDIR%%/apps/user_ldap/lib/BackendUtility.php
10517
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sv.js
10518
%%WWWDIR%%/apps/user_ldap/lib/Command/CheckUser.php
10518
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sv.json
10519
%%WWWDIR%%/apps/user_ldap/lib/Command/CreateEmptyConfig.php
10519
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sw_KE.js
10520
%%WWWDIR%%/apps/user_ldap/lib/Command/DeleteConfig.php
10520
%%WWWDIR%%/apps-pkg/user_ldap/l10n/sw_KE.json
10521
%%WWWDIR%%/apps/user_ldap/lib/Command/Search.php
10521
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ta_IN.js
10522
%%WWWDIR%%/apps/user_ldap/lib/Command/SetConfig.php
10522
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ta_IN.json
10523
%%WWWDIR%%/apps/user_ldap/lib/Command/ShowConfig.php
10523
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ta_LK.js
10524
%%WWWDIR%%/apps/user_ldap/lib/Command/ShowRemnants.php
10524
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ta_LK.json
10525
%%WWWDIR%%/apps/user_ldap/lib/Command/TestConfig.php
10525
%%WWWDIR%%/apps-pkg/user_ldap/l10n/te.js
10526
%%WWWDIR%%/apps/user_ldap/lib/Configuration.php
10526
%%WWWDIR%%/apps-pkg/user_ldap/l10n/te.json
10527
%%WWWDIR%%/apps/user_ldap/lib/Connection.php
10527
%%WWWDIR%%/apps-pkg/user_ldap/l10n/tg_TJ.js
10528
%%WWWDIR%%/apps/user_ldap/lib/ConnectionFactory.php
10528
%%WWWDIR%%/apps-pkg/user_ldap/l10n/tg_TJ.json
10529
%%WWWDIR%%/apps/user_ldap/lib/Controller/ConfigAPIController.php
10529
%%WWWDIR%%/apps-pkg/user_ldap/l10n/th.js
10530
%%WWWDIR%%/apps/user_ldap/lib/Controller/RenewPasswordController.php
10530
%%WWWDIR%%/apps-pkg/user_ldap/l10n/th.json
10531
%%WWWDIR%%/apps/user_ldap/lib/Exceptions/ConstraintViolationException.php
10531
%%WWWDIR%%/apps-pkg/user_ldap/l10n/th_TH.js
10532
%%WWWDIR%%/apps/user_ldap/lib/Exceptions/NotOnLDAP.php
10532
%%WWWDIR%%/apps-pkg/user_ldap/l10n/th_TH.json
10533
%%WWWDIR%%/apps/user_ldap/lib/FilesystemHelper.php
10533
%%WWWDIR%%/apps-pkg/user_ldap/l10n/tl_PH.js
10534
%%WWWDIR%%/apps/user_ldap/lib/GroupPluginManager.php
10534
%%WWWDIR%%/apps-pkg/user_ldap/l10n/tl_PH.json
10535
%%WWWDIR%%/apps/user_ldap/lib/Group_LDAP.php
10535
%%WWWDIR%%/apps-pkg/user_ldap/l10n/tr.js
10536
%%WWWDIR%%/apps/user_ldap/lib/Group_Proxy.php
10536
%%WWWDIR%%/apps-pkg/user_ldap/l10n/tr.json
10537
%%WWWDIR%%/apps/user_ldap/lib/Helper.php
10537
%%WWWDIR%%/apps-pkg/user_ldap/l10n/tzm.js
10538
%%WWWDIR%%/apps/user_ldap/lib/IGroupLDAP.php
10538
%%WWWDIR%%/apps-pkg/user_ldap/l10n/tzm.json
10539
%%WWWDIR%%/apps/user_ldap/lib/ILDAPGroupPlugin.php
10539
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ug.js
10540
%%WWWDIR%%/apps/user_ldap/lib/ILDAPUserPlugin.php
10540
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ug.json
10541
%%WWWDIR%%/apps/user_ldap/lib/ILDAPWrapper.php
10541
%%WWWDIR%%/apps-pkg/user_ldap/l10n/uk.js
10542
%%WWWDIR%%/apps/user_ldap/lib/IUserLDAP.php
10542
%%WWWDIR%%/apps-pkg/user_ldap/l10n/uk.json
10543
%%WWWDIR%%/apps/user_ldap/lib/Jobs/CleanUp.php
10543
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ur_PK.js
10544
%%WWWDIR%%/apps/user_ldap/lib/Jobs/Sync.php
10544
%%WWWDIR%%/apps-pkg/user_ldap/l10n/ur_PK.json
10545
%%WWWDIR%%/apps/user_ldap/lib/Jobs/UpdateGroups.php
10545
%%WWWDIR%%/apps-pkg/user_ldap/l10n/vi.js
10546
%%WWWDIR%%/apps/user_ldap/lib/LDAP.php
10546
%%WWWDIR%%/apps-pkg/user_ldap/l10n/vi.json
10547
%%WWWDIR%%/apps/user_ldap/lib/LDAPProvider.php
10547
%%WWWDIR%%/apps-pkg/user_ldap/l10n/zh_CN.js
10548
%%WWWDIR%%/apps/user_ldap/lib/LDAPProviderFactory.php
10548
%%WWWDIR%%/apps-pkg/user_ldap/l10n/zh_CN.json
10549
%%WWWDIR%%/apps/user_ldap/lib/LDAPUtility.php
10549
%%WWWDIR%%/apps-pkg/user_ldap/l10n/zh_HK.js
10550
%%WWWDIR%%/apps/user_ldap/lib/LogWrapper.php
10550
%%WWWDIR%%/apps-pkg/user_ldap/l10n/zh_HK.json
10551
%%WWWDIR%%/apps/user_ldap/lib/Mapping/AbstractMapping.php
10551
%%WWWDIR%%/apps-pkg/user_ldap/l10n/zh_TW.js
10552
%%WWWDIR%%/apps/user_ldap/lib/Mapping/GroupMapping.php
10552
%%WWWDIR%%/apps-pkg/user_ldap/l10n/zh_TW.json
10553
%%WWWDIR%%/apps/user_ldap/lib/Mapping/UserMapping.php
10553
%%WWWDIR%%/apps-pkg/user_ldap/lib/Access.php
10554
%%WWWDIR%%/apps/user_ldap/lib/Migration/UUIDFix.php
10554
%%WWWDIR%%/apps-pkg/user_ldap/lib/AccessFactory.php
10555
%%WWWDIR%%/apps/user_ldap/lib/Migration/UUIDFixGroup.php
10555
%%WWWDIR%%/apps-pkg/user_ldap/lib/AppInfo/Application.php
10556
%%WWWDIR%%/apps/user_ldap/lib/Migration/UUIDFixInsert.php
10556
%%WWWDIR%%/apps-pkg/user_ldap/lib/BackendUtility.php
10557
%%WWWDIR%%/apps/user_ldap/lib/Migration/UUIDFixUser.php
10557
%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/CheckUser.php
10558
%%WWWDIR%%/apps/user_ldap/lib/Notification/Notifier.php
10558
%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/CreateEmptyConfig.php
10559
%%WWWDIR%%/apps/user_ldap/lib/Proxy.php
10559
%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/DeleteConfig.php
10560
%%WWWDIR%%/apps/user_ldap/lib/Settings/Admin.php
10560
%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/Search.php
10561
%%WWWDIR%%/apps/user_ldap/lib/Settings/Section.php
10561
%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/SetConfig.php
10562
%%WWWDIR%%/apps/user_ldap/lib/User/DeletedUsersIndex.php
10562
%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/ShowConfig.php
10563
%%WWWDIR%%/apps/user_ldap/lib/User/IUserTools.php
10563
%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/ShowRemnants.php
10564
%%WWWDIR%%/apps/user_ldap/lib/User/Manager.php
10564
%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/TestConfig.php
10565
%%WWWDIR%%/apps/user_ldap/lib/User/OfflineUser.php
10565
%%WWWDIR%%/apps-pkg/user_ldap/lib/Configuration.php
10566
%%WWWDIR%%/apps/user_ldap/lib/User/User.php
10566
%%WWWDIR%%/apps-pkg/user_ldap/lib/Connection.php
10567
%%WWWDIR%%/apps/user_ldap/lib/UserPluginManager.php
10567
%%WWWDIR%%/apps-pkg/user_ldap/lib/ConnectionFactory.php
10568
%%WWWDIR%%/apps/user_ldap/lib/User_LDAP.php
10568
%%WWWDIR%%/apps-pkg/user_ldap/lib/Controller/ConfigAPIController.php
10569
%%WWWDIR%%/apps/user_ldap/lib/User_Proxy.php
10569
%%WWWDIR%%/apps-pkg/user_ldap/lib/Controller/RenewPasswordController.php
10570
%%WWWDIR%%/apps/user_ldap/lib/Wizard.php
10570
%%WWWDIR%%/apps-pkg/user_ldap/lib/Exceptions/ConstraintViolationException.php
10571
%%WWWDIR%%/apps/user_ldap/lib/WizardResult.php
10571
%%WWWDIR%%/apps-pkg/user_ldap/lib/Exceptions/NotOnLDAP.php
10572
%%WWWDIR%%/apps/user_ldap/templates/part.settingcontrols.php
10572
%%WWWDIR%%/apps-pkg/user_ldap/lib/FilesystemHelper.php
10573
%%WWWDIR%%/apps/user_ldap/templates/part.wizard-groupfilter.php
10573
%%WWWDIR%%/apps-pkg/user_ldap/lib/GroupPluginManager.php
10574
%%WWWDIR%%/apps/user_ldap/templates/part.wizard-loginfilter.php
10574
%%WWWDIR%%/apps-pkg/user_ldap/lib/Group_LDAP.php
10575
%%WWWDIR%%/apps/user_ldap/templates/part.wizard-server.php
10575
%%WWWDIR%%/apps-pkg/user_ldap/lib/Group_Proxy.php
10576
%%WWWDIR%%/apps/user_ldap/templates/part.wizard-userfilter.php
10576
%%WWWDIR%%/apps-pkg/user_ldap/lib/Helper.php
10577
%%WWWDIR%%/apps/user_ldap/templates/part.wizardcontrols.php
10577
%%WWWDIR%%/apps-pkg/user_ldap/lib/IGroupLDAP.php
10578
%%WWWDIR%%/apps/user_ldap/templates/renewpassword.php
10578
%%WWWDIR%%/apps-pkg/user_ldap/lib/ILDAPGroupPlugin.php
10579
%%WWWDIR%%/apps/user_ldap/templates/settings.php
10579
%%WWWDIR%%/apps-pkg/user_ldap/lib/ILDAPUserPlugin.php
10580
%%WWWDIR%%/apps/user_ldap/vendor/ui-multiselect/MIT-LICENSE
10580
%%WWWDIR%%/apps-pkg/user_ldap/lib/ILDAPWrapper.php
10581
%%WWWDIR%%/apps/user_ldap/vendor/ui-multiselect/jquery.multiselect.css
10581
%%WWWDIR%%/apps-pkg/user_ldap/lib/IUserLDAP.php
10582
%%WWWDIR%%/apps/user_ldap/vendor/ui-multiselect/src/jquery.multiselect.js
10582
%%WWWDIR%%/apps-pkg/user_ldap/lib/Jobs/CleanUp.php
10583
%%WWWDIR%%/apps/workflowengine/appinfo/app.php
10583
%%WWWDIR%%/apps-pkg/user_ldap/lib/Jobs/Sync.php
10584
%%WWWDIR%%/apps/workflowengine/appinfo/database.xml
10584
%%WWWDIR%%/apps-pkg/user_ldap/lib/Jobs/UpdateGroups.php
10585
%%WWWDIR%%/apps/workflowengine/appinfo/info.xml
10585
%%WWWDIR%%/apps-pkg/user_ldap/lib/LDAP.php
10586
%%WWWDIR%%/apps/workflowengine/appinfo/routes.php
10586
%%WWWDIR%%/apps-pkg/user_ldap/lib/LDAPProvider.php
10587
%%WWWDIR%%/apps/workflowengine/appinfo/signature.json
10587
%%WWWDIR%%/apps-pkg/user_ldap/lib/LDAPProviderFactory.php
10588
%%WWWDIR%%/apps/workflowengine/css/admin.css
10588
%%WWWDIR%%/apps-pkg/user_ldap/lib/LDAPUtility.php
10589
%%WWWDIR%%/apps/workflowengine/js/admin.js
10589
%%WWWDIR%%/apps-pkg/user_ldap/lib/LogWrapper.php
10590
%%WWWDIR%%/apps/workflowengine/js/filemimetypeplugin.js
10590
%%WWWDIR%%/apps-pkg/user_ldap/lib/Mapping/AbstractMapping.php
10591
%%WWWDIR%%/apps/workflowengine/js/filesizeplugin.js
10591
%%WWWDIR%%/apps-pkg/user_ldap/lib/Mapping/GroupMapping.php
10592
%%WWWDIR%%/apps/workflowengine/js/filesystemtagsplugin.js
10592
%%WWWDIR%%/apps-pkg/user_ldap/lib/Mapping/UserMapping.php
10593
%%WWWDIR%%/apps/workflowengine/js/requestremoteaddressplugin.js
10593
%%WWWDIR%%/apps-pkg/user_ldap/lib/Migration/UUIDFix.php
10594
%%WWWDIR%%/apps/workflowengine/js/requesttimeplugin.js
10594
%%WWWDIR%%/apps-pkg/user_ldap/lib/Migration/UUIDFixGroup.php
10595
%%WWWDIR%%/apps/workflowengine/js/requesturlplugin.js
10595
%%WWWDIR%%/apps-pkg/user_ldap/lib/Migration/UUIDFixInsert.php
10596
%%WWWDIR%%/apps/workflowengine/js/requestuseragentplugin.js
10596
%%WWWDIR%%/apps-pkg/user_ldap/lib/Migration/UUIDFixUser.php
10597
%%WWWDIR%%/apps/workflowengine/js/usergroupmembershipplugin.js
10597
%%WWWDIR%%/apps-pkg/user_ldap/lib/Notification/Notifier.php
10598
%%WWWDIR%%/apps/workflowengine/l10n/.gitkeep
10598
%%WWWDIR%%/apps-pkg/user_ldap/lib/Proxy.php
10599
%%WWWDIR%%/apps/workflowengine/l10n/ast.js
10599
%%WWWDIR%%/apps-pkg/user_ldap/lib/Settings/Admin.php
10600
%%WWWDIR%%/apps/workflowengine/l10n/ast.json
10600
%%WWWDIR%%/apps-pkg/user_ldap/lib/Settings/Section.php
10601
%%WWWDIR%%/apps/workflowengine/l10n/bg.js
10601
%%WWWDIR%%/apps-pkg/user_ldap/lib/User/DeletedUsersIndex.php
10602
%%WWWDIR%%/apps/workflowengine/l10n/bg.json
10602
%%WWWDIR%%/apps-pkg/user_ldap/lib/User/IUserTools.php
10603
%%WWWDIR%%/apps/workflowengine/l10n/bg_BG.js
10603
%%WWWDIR%%/apps-pkg/user_ldap/lib/User/Manager.php
10604
%%WWWDIR%%/apps/workflowengine/l10n/bg_BG.json
10604
%%WWWDIR%%/apps-pkg/user_ldap/lib/User/OfflineUser.php
10605
%%WWWDIR%%/apps/workflowengine/l10n/ca.js
10605
%%WWWDIR%%/apps-pkg/user_ldap/lib/User/User.php
10606
%%WWWDIR%%/apps/workflowengine/l10n/ca.json
10606
%%WWWDIR%%/apps-pkg/user_ldap/lib/UserPluginManager.php
10607
%%WWWDIR%%/apps/workflowengine/l10n/cs.js
10607
%%WWWDIR%%/apps-pkg/user_ldap/lib/User_LDAP.php
10608
%%WWWDIR%%/apps/workflowengine/l10n/cs.json
10608
%%WWWDIR%%/apps-pkg/user_ldap/lib/User_Proxy.php
10609
%%WWWDIR%%/apps/workflowengine/l10n/cs_CZ.js
10609
%%WWWDIR%%/apps-pkg/user_ldap/lib/Wizard.php
10610
%%WWWDIR%%/apps/workflowengine/l10n/cs_CZ.json
10610
%%WWWDIR%%/apps-pkg/user_ldap/lib/WizardResult.php
10611
%%WWWDIR%%/apps/workflowengine/l10n/da.js
10611
%%WWWDIR%%/apps-pkg/user_ldap/templates/part.settingcontrols.php
10612
%%WWWDIR%%/apps/workflowengine/l10n/da.json
10612
%%WWWDIR%%/apps-pkg/user_ldap/templates/part.wizard-groupfilter.php
10613
%%WWWDIR%%/apps/workflowengine/l10n/de.js
10613
%%WWWDIR%%/apps-pkg/user_ldap/templates/part.wizard-loginfilter.php
10614
%%WWWDIR%%/apps/workflowengine/l10n/de.json
10614
%%WWWDIR%%/apps-pkg/user_ldap/templates/part.wizard-server.php
10615
%%WWWDIR%%/apps/workflowengine/l10n/de_DE.js
10615
%%WWWDIR%%/apps-pkg/user_ldap/templates/part.wizard-userfilter.php
10616
%%WWWDIR%%/apps/workflowengine/l10n/de_DE.json
10616
%%WWWDIR%%/apps-pkg/user_ldap/templates/part.wizardcontrols.php
10617
%%WWWDIR%%/apps/workflowengine/l10n/el.js
10617
%%WWWDIR%%/apps-pkg/user_ldap/templates/renewpassword.php
10618
%%WWWDIR%%/apps/workflowengine/l10n/el.json
10618
%%WWWDIR%%/apps-pkg/user_ldap/templates/settings.php
10619
%%WWWDIR%%/apps/workflowengine/l10n/en_GB.js
10619
%%WWWDIR%%/apps-pkg/user_ldap/vendor/ui-multiselect/MIT-LICENSE
10620
%%WWWDIR%%/apps/workflowengine/l10n/en_GB.json
10620
%%WWWDIR%%/apps-pkg/user_ldap/vendor/ui-multiselect/jquery.multiselect.css
10621
%%WWWDIR%%/apps/workflowengine/l10n/es.js
10621
%%WWWDIR%%/apps-pkg/user_ldap/vendor/ui-multiselect/src/jquery.multiselect.js
10622
%%WWWDIR%%/apps/workflowengine/l10n/es.json
10622
%%WWWDIR%%/apps-pkg/workflowengine/appinfo/app.php
10623
%%WWWDIR%%/apps/workflowengine/l10n/es_419.js
10623
%%WWWDIR%%/apps-pkg/workflowengine/appinfo/database.xml
10624
%%WWWDIR%%/apps/workflowengine/l10n/es_419.json
10624
%%WWWDIR%%/apps-pkg/workflowengine/appinfo/info.xml
10625
%%WWWDIR%%/apps/workflowengine/l10n/es_AR.js
10625
%%WWWDIR%%/apps-pkg/workflowengine/appinfo/routes.php
10626
%%WWWDIR%%/apps/workflowengine/l10n/es_AR.json
10626
%%WWWDIR%%/apps-pkg/workflowengine/appinfo/signature.json
10627
%%WWWDIR%%/apps/workflowengine/l10n/es_CL.js
10627
%%WWWDIR%%/apps-pkg/workflowengine/css/admin.css
10628
%%WWWDIR%%/apps/workflowengine/l10n/es_CL.json
10628
%%WWWDIR%%/apps-pkg/workflowengine/js/admin.js
10629
%%WWWDIR%%/apps/workflowengine/l10n/es_CO.js
10629
%%WWWDIR%%/apps-pkg/workflowengine/js/filemimetypeplugin.js
10630
%%WWWDIR%%/apps/workflowengine/l10n/es_CO.json
10630
%%WWWDIR%%/apps-pkg/workflowengine/js/filesizeplugin.js
10631
%%WWWDIR%%/apps/workflowengine/l10n/es_CR.js
10631
%%WWWDIR%%/apps-pkg/workflowengine/js/filesystemtagsplugin.js
10632
%%WWWDIR%%/apps/workflowengine/l10n/es_CR.json
10632
%%WWWDIR%%/apps-pkg/workflowengine/js/requestremoteaddressplugin.js
10633
%%WWWDIR%%/apps/workflowengine/l10n/es_DO.js
10633
%%WWWDIR%%/apps-pkg/workflowengine/js/requesttimeplugin.js
10634
%%WWWDIR%%/apps/workflowengine/l10n/es_DO.json
10634
%%WWWDIR%%/apps-pkg/workflowengine/js/requesturlplugin.js
10635
%%WWWDIR%%/apps/workflowengine/l10n/es_EC.js
10635
%%WWWDIR%%/apps-pkg/workflowengine/js/requestuseragentplugin.js
10636
%%WWWDIR%%/apps/workflowengine/l10n/es_EC.json
10636
%%WWWDIR%%/apps-pkg/workflowengine/js/usergroupmembershipplugin.js
10637
%%WWWDIR%%/apps/workflowengine/l10n/es_GT.js
10637
%%WWWDIR%%/apps-pkg/workflowengine/l10n/.gitkeep
10638
%%WWWDIR%%/apps/workflowengine/l10n/es_GT.json
10638
%%WWWDIR%%/apps-pkg/workflowengine/l10n/ast.js
10639
%%WWWDIR%%/apps/workflowengine/l10n/es_HN.js
10639
%%WWWDIR%%/apps-pkg/workflowengine/l10n/ast.json
10640
%%WWWDIR%%/apps/workflowengine/l10n/es_HN.json
10640
%%WWWDIR%%/apps-pkg/workflowengine/l10n/bg.js
10641
%%WWWDIR%%/apps/workflowengine/l10n/es_MX.js
10641
%%WWWDIR%%/apps-pkg/workflowengine/l10n/bg.json
10642
%%WWWDIR%%/apps/workflowengine/l10n/es_MX.json
10642
%%WWWDIR%%/apps-pkg/workflowengine/l10n/bg_BG.js
10643
%%WWWDIR%%/apps/workflowengine/l10n/es_NI.js
10643
%%WWWDIR%%/apps-pkg/workflowengine/l10n/bg_BG.json
10644
%%WWWDIR%%/apps/workflowengine/l10n/es_NI.json
10644
%%WWWDIR%%/apps-pkg/workflowengine/l10n/ca.js
10645
%%WWWDIR%%/apps/workflowengine/l10n/es_PA.js
10645
%%WWWDIR%%/apps-pkg/workflowengine/l10n/ca.json
10646
%%WWWDIR%%/apps/workflowengine/l10n/es_PA.json
10646
%%WWWDIR%%/apps-pkg/workflowengine/l10n/cs.js
10647
%%WWWDIR%%/apps/workflowengine/l10n/es_PE.js
10647
%%WWWDIR%%/apps-pkg/workflowengine/l10n/cs.json
10648
%%WWWDIR%%/apps/workflowengine/l10n/es_PE.json
10648
%%WWWDIR%%/apps-pkg/workflowengine/l10n/cs_CZ.js
10649
%%WWWDIR%%/apps/workflowengine/l10n/es_PR.js
10649
%%WWWDIR%%/apps-pkg/workflowengine/l10n/cs_CZ.json
10650
%%WWWDIR%%/apps/workflowengine/l10n/es_PR.json
10650
%%WWWDIR%%/apps-pkg/workflowengine/l10n/da.js
10651
%%WWWDIR%%/apps/workflowengine/l10n/es_PY.js
10651
%%WWWDIR%%/apps-pkg/workflowengine/l10n/da.json
10652
%%WWWDIR%%/apps/workflowengine/l10n/es_PY.json
10652
%%WWWDIR%%/apps-pkg/workflowengine/l10n/de.js
10653
%%WWWDIR%%/apps/workflowengine/l10n/es_SV.js
10653
%%WWWDIR%%/apps-pkg/workflowengine/l10n/de.json
10654
%%WWWDIR%%/apps/workflowengine/l10n/es_SV.json
10654
%%WWWDIR%%/apps-pkg/workflowengine/l10n/de_DE.js
10655
%%WWWDIR%%/apps/workflowengine/l10n/es_UY.js
10655
%%WWWDIR%%/apps-pkg/workflowengine/l10n/de_DE.json
10656
%%WWWDIR%%/apps/workflowengine/l10n/es_UY.json
10656
%%WWWDIR%%/apps-pkg/workflowengine/l10n/el.js
10657
%%WWWDIR%%/apps/workflowengine/l10n/et_EE.js
10657
%%WWWDIR%%/apps-pkg/workflowengine/l10n/el.json
10658
%%WWWDIR%%/apps/workflowengine/l10n/et_EE.json
10658
%%WWWDIR%%/apps-pkg/workflowengine/l10n/en_GB.js
10659
%%WWWDIR%%/apps/workflowengine/l10n/fa.js
10659
%%WWWDIR%%/apps-pkg/workflowengine/l10n/en_GB.json
10660
%%WWWDIR%%/apps/workflowengine/l10n/fa.json
10660
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es.js
10661
%%WWWDIR%%/apps/workflowengine/l10n/fi.js
10661
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es.json
10662
%%WWWDIR%%/apps/workflowengine/l10n/fi.json
10662
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_419.js
10663
%%WWWDIR%%/apps/workflowengine/l10n/fr.js
10663
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_419.json
10664
%%WWWDIR%%/apps/workflowengine/l10n/fr.json
10664
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_AR.js
10665
%%WWWDIR%%/apps/workflowengine/l10n/gl.js
10665
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_AR.json
10666
%%WWWDIR%%/apps/workflowengine/l10n/gl.json
10666
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_CL.js
10667
%%WWWDIR%%/apps/workflowengine/l10n/hu.js
10667
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_CL.json
10668
%%WWWDIR%%/apps/workflowengine/l10n/hu.json
10668
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_CO.js
10669
%%WWWDIR%%/apps/workflowengine/l10n/hu_HU.js
10669
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_CO.json
10670
%%WWWDIR%%/apps/workflowengine/l10n/hu_HU.json
10670
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_CR.js
10671
%%WWWDIR%%/apps/workflowengine/l10n/id.js
10671
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_CR.json
10672
%%WWWDIR%%/apps/workflowengine/l10n/id.json
10672
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_DO.js
10673
%%WWWDIR%%/apps/workflowengine/l10n/is.js
10673
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_DO.json
10674
%%WWWDIR%%/apps/workflowengine/l10n/is.json
10674
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_EC.js
10675
%%WWWDIR%%/apps/workflowengine/l10n/it.js
10675
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_EC.json
10676
%%WWWDIR%%/apps/workflowengine/l10n/it.json
10676
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_GT.js
10677
%%WWWDIR%%/apps/workflowengine/l10n/ja.js
10677
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_GT.json
10678
%%WWWDIR%%/apps/workflowengine/l10n/ja.json
10678
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_HN.js
10679
%%WWWDIR%%/apps/workflowengine/l10n/ka_GE.js
10679
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_HN.json
10680
%%WWWDIR%%/apps/workflowengine/l10n/ka_GE.json
10680
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_MX.js
10681
%%WWWDIR%%/apps/workflowengine/l10n/ko.js
10681
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_MX.json
10682
%%WWWDIR%%/apps/workflowengine/l10n/ko.json
10682
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_NI.js
10683
%%WWWDIR%%/apps/workflowengine/l10n/lt_LT.js
10683
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_NI.json
10684
%%WWWDIR%%/apps/workflowengine/l10n/lt_LT.json
10684
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PA.js
10685
%%WWWDIR%%/apps/workflowengine/l10n/lv.js
10685
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PA.json
10686
%%WWWDIR%%/apps/workflowengine/l10n/lv.json
10686
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PE.js
10687
%%WWWDIR%%/apps/workflowengine/l10n/mn.js
10687
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PE.json
10688
%%WWWDIR%%/apps/workflowengine/l10n/mn.json
10688
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PR.js
10689
%%WWWDIR%%/apps/workflowengine/l10n/nb.js
10689
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PR.json
10690
%%WWWDIR%%/apps/workflowengine/l10n/nb.json
10690
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PY.js
10691
%%WWWDIR%%/apps/workflowengine/l10n/nb_NO.js
10691
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PY.json
10692
%%WWWDIR%%/apps/workflowengine/l10n/nb_NO.json
10692
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_SV.js
10693
%%WWWDIR%%/apps/workflowengine/l10n/nl.js
10693
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_SV.json
10694
%%WWWDIR%%/apps/workflowengine/l10n/nl.json
10694
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_UY.js
10695
%%WWWDIR%%/apps/workflowengine/l10n/pl.js
10695
%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_UY.json
10696
%%WWWDIR%%/apps/workflowengine/l10n/pl.json
10696
%%WWWDIR%%/apps-pkg/workflowengine/l10n/et_EE.js
10697
%%WWWDIR%%/apps/workflowengine/l10n/pt_BR.js
10697
%%WWWDIR%%/apps-pkg/workflowengine/l10n/et_EE.json
10698
%%WWWDIR%%/apps/workflowengine/l10n/pt_BR.json
10698
%%WWWDIR%%/apps-pkg/workflowengine/l10n/fa.js
10699
%%WWWDIR%%/apps/workflowengine/l10n/ru.js
10699
%%WWWDIR%%/apps-pkg/workflowengine/l10n/fa.json
10700
%%WWWDIR%%/apps/workflowengine/l10n/ru.json
10700
%%WWWDIR%%/apps-pkg/workflowengine/l10n/fi.js
10701
%%WWWDIR%%/apps/workflowengine/l10n/sk.js
10701
%%WWWDIR%%/apps-pkg/workflowengine/l10n/fi.json
10702
%%WWWDIR%%/apps/workflowengine/l10n/sk.json
10702
%%WWWDIR%%/apps-pkg/workflowengine/l10n/fr.js
10703
%%WWWDIR%%/apps/workflowengine/l10n/sk_SK.js
10703
%%WWWDIR%%/apps-pkg/workflowengine/l10n/fr.json
10704
%%WWWDIR%%/apps/workflowengine/l10n/sk_SK.json
10704
%%WWWDIR%%/apps-pkg/workflowengine/l10n/gl.js
10705
%%WWWDIR%%/apps/workflowengine/l10n/sq.js
10705
%%WWWDIR%%/apps-pkg/workflowengine/l10n/gl.json
10706
%%WWWDIR%%/apps/workflowengine/l10n/sq.json
10706
%%WWWDIR%%/apps-pkg/workflowengine/l10n/hu.js
10707
%%WWWDIR%%/apps/workflowengine/l10n/sr.js
10707
%%WWWDIR%%/apps-pkg/workflowengine/l10n/hu.json
10708
%%WWWDIR%%/apps/workflowengine/l10n/sr.json
10708
%%WWWDIR%%/apps-pkg/workflowengine/l10n/hu_HU.js
10709
%%WWWDIR%%/apps/workflowengine/l10n/sv.js
10709
%%WWWDIR%%/apps-pkg/workflowengine/l10n/hu_HU.json
10710
%%WWWDIR%%/apps/workflowengine/l10n/sv.json
10710
%%WWWDIR%%/apps-pkg/workflowengine/l10n/ia.js
10711
%%WWWDIR%%/apps/workflowengine/l10n/tr.js
10711
%%WWWDIR%%/apps-pkg/workflowengine/l10n/ia.json
10712
%%WWWDIR%%/apps/workflowengine/l10n/tr.json
10712
%%WWWDIR%%/apps-pkg/workflowengine/l10n/id.js
10713
%%WWWDIR%%/apps/workflowengine/l10n/zh_CN.js
10713
%%WWWDIR%%/apps-pkg/workflowengine/l10n/id.json
10714
%%WWWDIR%%/apps/workflowengine/l10n/zh_CN.json
10714
%%WWWDIR%%/apps-pkg/workflowengine/l10n/is.js
10715
%%WWWDIR%%/apps/workflowengine/l10n/zh_TW.js
10715
%%WWWDIR%%/apps-pkg/workflowengine/l10n/is.json
10716
%%WWWDIR%%/apps/workflowengine/l10n/zh_TW.json
10716
%%WWWDIR%%/apps-pkg/workflowengine/l10n/it.js
10717
%%WWWDIR%%/apps/workflowengine/lib/AppInfo/Application.php
10717
%%WWWDIR%%/apps-pkg/workflowengine/l10n/it.json
10718
%%WWWDIR%%/apps/workflowengine/lib/Check/AbstractStringCheck.php
10718
%%WWWDIR%%/apps-pkg/workflowengine/l10n/ja.js
10719
%%WWWDIR%%/apps/workflowengine/lib/Check/FileMimeType.php
10719
%%WWWDIR%%/apps-pkg/workflowengine/l10n/ja.json
10720
%%WWWDIR%%/apps/workflowengine/lib/Check/FileSize.php
10720
%%WWWDIR%%/apps-pkg/workflowengine/l10n/ka_GE.js
10721
%%WWWDIR%%/apps/workflowengine/lib/Check/FileSystemTags.php
10721
%%WWWDIR%%/apps-pkg/workflowengine/l10n/ka_GE.json
10722
%%WWWDIR%%/apps/workflowengine/lib/Check/RequestRemoteAddress.php
10722
%%WWWDIR%%/apps-pkg/workflowengine/l10n/ko.js
10723
%%WWWDIR%%/apps/workflowengine/lib/Check/RequestTime.php
10723
%%WWWDIR%%/apps-pkg/workflowengine/l10n/ko.json
10724
%%WWWDIR%%/apps/workflowengine/lib/Check/RequestURL.php
10724
%%WWWDIR%%/apps-pkg/workflowengine/l10n/lt_LT.js
10725
%%WWWDIR%%/apps/workflowengine/lib/Check/RequestUserAgent.php
10725
%%WWWDIR%%/apps-pkg/workflowengine/l10n/lt_LT.json
10726
%%WWWDIR%%/apps/workflowengine/lib/Check/UserGroupMembership.php
10726
%%WWWDIR%%/apps-pkg/workflowengine/l10n/lv.js
10727
%%WWWDIR%%/apps/workflowengine/lib/Controller/FlowOperations.php
10727
%%WWWDIR%%/apps-pkg/workflowengine/l10n/lv.json
10728
%%WWWDIR%%/apps/workflowengine/lib/Controller/RequestTime.php
10728
%%WWWDIR%%/apps-pkg/workflowengine/l10n/mn.js
10729
%%WWWDIR%%/apps/workflowengine/lib/Manager.php
10729
%%WWWDIR%%/apps-pkg/workflowengine/l10n/mn.json
10730
%%WWWDIR%%/apps/workflowengine/lib/Settings/Section.php
10730
%%WWWDIR%%/apps-pkg/workflowengine/l10n/nb.js
10731
%%WWWDIR%%/apps/workflowengine/templates/admin.php
10731
%%WWWDIR%%/apps-pkg/workflowengine/l10n/nb.json
10732
%%WWWDIR%%/apps-pkg/workflowengine/l10n/nb_NO.js
10733
%%WWWDIR%%/apps-pkg/workflowengine/l10n/nb_NO.json
10734
%%WWWDIR%%/apps-pkg/workflowengine/l10n/nl.js
10735
%%WWWDIR%%/apps-pkg/workflowengine/l10n/nl.json
10736
%%WWWDIR%%/apps-pkg/workflowengine/l10n/pl.js
10737
%%WWWDIR%%/apps-pkg/workflowengine/l10n/pl.json
10738
%%WWWDIR%%/apps-pkg/workflowengine/l10n/pt_BR.js
10739
%%WWWDIR%%/apps-pkg/workflowengine/l10n/pt_BR.json
10740
%%WWWDIR%%/apps-pkg/workflowengine/l10n/ru.js
10741
%%WWWDIR%%/apps-pkg/workflowengine/l10n/ru.json
10742
%%WWWDIR%%/apps-pkg/workflowengine/l10n/sk.js
10743
%%WWWDIR%%/apps-pkg/workflowengine/l10n/sk.json
10744
%%WWWDIR%%/apps-pkg/workflowengine/l10n/sk_SK.js
10745
%%WWWDIR%%/apps-pkg/workflowengine/l10n/sk_SK.json
10746
%%WWWDIR%%/apps-pkg/workflowengine/l10n/sq.js
10747
%%WWWDIR%%/apps-pkg/workflowengine/l10n/sq.json
10748
%%WWWDIR%%/apps-pkg/workflowengine/l10n/sr.js
10749
%%WWWDIR%%/apps-pkg/workflowengine/l10n/sr.json
10750
%%WWWDIR%%/apps-pkg/workflowengine/l10n/sv.js
10751
%%WWWDIR%%/apps-pkg/workflowengine/l10n/sv.json
10752
%%WWWDIR%%/apps-pkg/workflowengine/l10n/tr.js
10753
%%WWWDIR%%/apps-pkg/workflowengine/l10n/tr.json
10754
%%WWWDIR%%/apps-pkg/workflowengine/l10n/zh_CN.js
10755
%%WWWDIR%%/apps-pkg/workflowengine/l10n/zh_CN.json
10756
%%WWWDIR%%/apps-pkg/workflowengine/l10n/zh_TW.js
10757
%%WWWDIR%%/apps-pkg/workflowengine/l10n/zh_TW.json
10758
%%WWWDIR%%/apps-pkg/workflowengine/lib/AppInfo/Application.php
10759
%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/AbstractStringCheck.php
10760
%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/FileMimeType.php
10761
%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/FileSize.php
10762
%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/FileSystemTags.php
10763
%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/RequestRemoteAddress.php
10764
%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/RequestTime.php
10765
%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/RequestURL.php
10766
%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/RequestUserAgent.php
10767
%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/UserGroupMembership.php
10768
%%WWWDIR%%/apps-pkg/workflowengine/lib/Controller/FlowOperations.php
10769
%%WWWDIR%%/apps-pkg/workflowengine/lib/Controller/RequestTime.php
10770
%%WWWDIR%%/apps-pkg/workflowengine/lib/Manager.php
10771
%%WWWDIR%%/apps-pkg/workflowengine/lib/Settings/Section.php
10772
%%WWWDIR%%/apps-pkg/workflowengine/templates/admin.php
10732
@group %%NEXTCLOUD_GROUPNAME%%
10773
@group %%NEXTCLOUD_GROUPNAME%%
10733
%%WWWDIR%%/config/.htaccess
10774
%%WWWDIR%%/config/.htaccess
10734
@owner %%NEXTCLOUD_USERNAME%%
10775
@owner %%NEXTCLOUD_USERNAME%%
Lines 10951-10965 Link Here
10951
%%WWWDIR%%/core/doc/admin/_images/preview_images.png
10992
%%WWWDIR%%/core/doc/admin/_images/preview_images.png
10952
%%WWWDIR%%/core/doc/admin/_images/rackspace.png
10993
%%WWWDIR%%/core/doc/admin/_images/rackspace.png
10953
%%WWWDIR%%/core/doc/admin/_images/retention_sample.png
10994
%%WWWDIR%%/core/doc/admin/_images/retention_sample.png
10954
%%WWWDIR%%/core/doc/admin/_images/saml_app_overview.png
10955
%%WWWDIR%%/core/doc/admin/_images/scaling-1.png
10956
%%WWWDIR%%/core/doc/admin/_images/scaling-2.png
10957
%%WWWDIR%%/core/doc/admin/_images/scaling-3.png
10958
%%WWWDIR%%/core/doc/admin/_images/scaling-4.png
10959
%%WWWDIR%%/core/doc/admin/_images/scaling-5.png
10960
%%WWWDIR%%/core/doc/admin/_images/security-setup-warning-1.png
10995
%%WWWDIR%%/core/doc/admin/_images/security-setup-warning-1.png
10961
%%WWWDIR%%/core/doc/admin/_images/sharing-files-1.png
10996
%%WWWDIR%%/core/doc/admin/_images/sharing-files-1.png
10962
%%WWWDIR%%/core/doc/admin/_images/sharing-files-2.png
10963
%%WWWDIR%%/core/doc/admin/_images/skeleton-files.png
10997
%%WWWDIR%%/core/doc/admin/_images/skeleton-files.png
10964
%%WWWDIR%%/core/doc/admin/_images/skeleton-files1.png
10998
%%WWWDIR%%/core/doc/admin/_images/skeleton-files1.png
10965
%%WWWDIR%%/core/doc/admin/_images/smb.png
10999
%%WWWDIR%%/core/doc/admin/_images/smb.png
Lines 11021-11027 Link Here
11021
%%WWWDIR%%/core/doc/admin/_sources/configuration_files/files_locking_transactional.txt
11055
%%WWWDIR%%/core/doc/admin/_sources/configuration_files/files_locking_transactional.txt
11022
%%WWWDIR%%/core/doc/admin/_sources/configuration_files/index.txt
11056
%%WWWDIR%%/core/doc/admin/_sources/configuration_files/index.txt
11023
%%WWWDIR%%/core/doc/admin/_sources/configuration_files/previews_configuration.txt
11057
%%WWWDIR%%/core/doc/admin/_sources/configuration_files/previews_configuration.txt
11024
%%WWWDIR%%/core/doc/admin/_sources/configuration_files/primary_storage.txt
11025
%%WWWDIR%%/core/doc/admin/_sources/configuration_mimetypes/index.txt
11058
%%WWWDIR%%/core/doc/admin/_sources/configuration_mimetypes/index.txt
11026
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/activity_configuration.txt
11059
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/activity_configuration.txt
11027
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/antivirus_configuration.txt
11060
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/antivirus_configuration.txt
Lines 11029-11040 Link Here
11029
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/background_jobs_configuration.txt
11062
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/background_jobs_configuration.txt
11030
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/caching_configuration.txt
11063
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/caching_configuration.txt
11031
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/config_sample_php_parameters.txt
11064
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/config_sample_php_parameters.txt
11032
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/custom_client_repos.txt
11033
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/email_configuration.txt
11065
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/email_configuration.txt
11034
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/external_sites.txt
11066
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/external_sites.txt
11035
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/harden_server.txt
11067
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/harden_server.txt
11036
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/index.txt
11068
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/index.txt
11037
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/knowledgebase_configuration.txt
11038
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/language_configuration.txt
11069
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/language_configuration.txt
11039
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/logging_configuration.txt
11070
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/logging_configuration.txt
11040
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/occ_command.txt
11071
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/occ_command.txt
Lines 11041-11047 Link Here
11041
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/reverse_proxy_configuration.txt
11072
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/reverse_proxy_configuration.txt
11042
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/security_setup_warnings.txt
11073
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/security_setup_warnings.txt
11043
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/server_tuning.txt
11074
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/server_tuning.txt
11044
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/sso_configuration.txt
11045
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/theming.txt
11075
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/theming.txt
11046
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/thirdparty_php_configuration.txt
11076
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/thirdparty_php_configuration.txt
11047
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/index.txt
11077
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/index.txt
Lines 11086-11094 Link Here
11086
%%WWWDIR%%/core/doc/admin/_sources/maintenance/restore.txt
11116
%%WWWDIR%%/core/doc/admin/_sources/maintenance/restore.txt
11087
%%WWWDIR%%/core/doc/admin/_sources/maintenance/update.txt
11117
%%WWWDIR%%/core/doc/admin/_sources/maintenance/update.txt
11088
%%WWWDIR%%/core/doc/admin/_sources/maintenance/upgrade.txt
11118
%%WWWDIR%%/core/doc/admin/_sources/maintenance/upgrade.txt
11089
%%WWWDIR%%/core/doc/admin/_sources/operations/considerations_on_monitoring.txt
11090
%%WWWDIR%%/core/doc/admin/_sources/operations/index.txt
11091
%%WWWDIR%%/core/doc/admin/_sources/operations/scaling_multiple_machines.txt
11092
%%WWWDIR%%/core/doc/admin/_sources/release_notes.txt
11119
%%WWWDIR%%/core/doc/admin/_sources/release_notes.txt
11093
%%WWWDIR%%/core/doc/admin/_static/ajax-loader.gif
11120
%%WWWDIR%%/core/doc/admin/_static/ajax-loader.gif
11094
%%WWWDIR%%/core/doc/admin/_static/basic.css
11121
%%WWWDIR%%/core/doc/admin/_static/basic.css
Lines 11203-11209 Link Here
11203
%%WWWDIR%%/core/doc/admin/configuration_files/files_locking_transactional.html
11230
%%WWWDIR%%/core/doc/admin/configuration_files/files_locking_transactional.html
11204
%%WWWDIR%%/core/doc/admin/configuration_files/index.html
11231
%%WWWDIR%%/core/doc/admin/configuration_files/index.html
11205
%%WWWDIR%%/core/doc/admin/configuration_files/previews_configuration.html
11232
%%WWWDIR%%/core/doc/admin/configuration_files/previews_configuration.html
11206
%%WWWDIR%%/core/doc/admin/configuration_files/primary_storage.html
11207
%%WWWDIR%%/core/doc/admin/configuration_mimetypes/index.html
11233
%%WWWDIR%%/core/doc/admin/configuration_mimetypes/index.html
11208
%%WWWDIR%%/core/doc/admin/configuration_server/activity_configuration.html
11234
%%WWWDIR%%/core/doc/admin/configuration_server/activity_configuration.html
11209
%%WWWDIR%%/core/doc/admin/configuration_server/antivirus_configuration.html
11235
%%WWWDIR%%/core/doc/admin/configuration_server/antivirus_configuration.html
Lines 11211-11222 Link Here
11211
%%WWWDIR%%/core/doc/admin/configuration_server/background_jobs_configuration.html
11237
%%WWWDIR%%/core/doc/admin/configuration_server/background_jobs_configuration.html
11212
%%WWWDIR%%/core/doc/admin/configuration_server/caching_configuration.html
11238
%%WWWDIR%%/core/doc/admin/configuration_server/caching_configuration.html
11213
%%WWWDIR%%/core/doc/admin/configuration_server/config_sample_php_parameters.html
11239
%%WWWDIR%%/core/doc/admin/configuration_server/config_sample_php_parameters.html
11214
%%WWWDIR%%/core/doc/admin/configuration_server/custom_client_repos.html
11215
%%WWWDIR%%/core/doc/admin/configuration_server/email_configuration.html
11240
%%WWWDIR%%/core/doc/admin/configuration_server/email_configuration.html
11216
%%WWWDIR%%/core/doc/admin/configuration_server/external_sites.html
11241
%%WWWDIR%%/core/doc/admin/configuration_server/external_sites.html
11217
%%WWWDIR%%/core/doc/admin/configuration_server/harden_server.html
11242
%%WWWDIR%%/core/doc/admin/configuration_server/harden_server.html
11218
%%WWWDIR%%/core/doc/admin/configuration_server/index.html
11243
%%WWWDIR%%/core/doc/admin/configuration_server/index.html
11219
%%WWWDIR%%/core/doc/admin/configuration_server/knowledgebase_configuration.html
11220
%%WWWDIR%%/core/doc/admin/configuration_server/language_configuration.html
11244
%%WWWDIR%%/core/doc/admin/configuration_server/language_configuration.html
11221
%%WWWDIR%%/core/doc/admin/configuration_server/logging_configuration.html
11245
%%WWWDIR%%/core/doc/admin/configuration_server/logging_configuration.html
11222
%%WWWDIR%%/core/doc/admin/configuration_server/occ_command.html
11246
%%WWWDIR%%/core/doc/admin/configuration_server/occ_command.html
Lines 11223-11229 Link Here
11223
%%WWWDIR%%/core/doc/admin/configuration_server/reverse_proxy_configuration.html
11247
%%WWWDIR%%/core/doc/admin/configuration_server/reverse_proxy_configuration.html
11224
%%WWWDIR%%/core/doc/admin/configuration_server/security_setup_warnings.html
11248
%%WWWDIR%%/core/doc/admin/configuration_server/security_setup_warnings.html
11225
%%WWWDIR%%/core/doc/admin/configuration_server/server_tuning.html
11249
%%WWWDIR%%/core/doc/admin/configuration_server/server_tuning.html
11226
%%WWWDIR%%/core/doc/admin/configuration_server/sso_configuration.html
11227
%%WWWDIR%%/core/doc/admin/configuration_server/theming.html
11250
%%WWWDIR%%/core/doc/admin/configuration_server/theming.html
11228
%%WWWDIR%%/core/doc/admin/configuration_server/thirdparty_php_configuration.html
11251
%%WWWDIR%%/core/doc/admin/configuration_server/thirdparty_php_configuration.html
11229
%%WWWDIR%%/core/doc/admin/configuration_user/index.html
11252
%%WWWDIR%%/core/doc/admin/configuration_user/index.html
Lines 11270-11278 Link Here
11270
%%WWWDIR%%/core/doc/admin/maintenance/update.html
11293
%%WWWDIR%%/core/doc/admin/maintenance/update.html
11271
%%WWWDIR%%/core/doc/admin/maintenance/upgrade.html
11294
%%WWWDIR%%/core/doc/admin/maintenance/upgrade.html
11272
%%WWWDIR%%/core/doc/admin/objects.inv
11295
%%WWWDIR%%/core/doc/admin/objects.inv
11273
%%WWWDIR%%/core/doc/admin/operations/considerations_on_monitoring.html
11274
%%WWWDIR%%/core/doc/admin/operations/index.html
11275
%%WWWDIR%%/core/doc/admin/operations/scaling_multiple_machines.html
11276
%%WWWDIR%%/core/doc/admin/release_notes.html
11296
%%WWWDIR%%/core/doc/admin/release_notes.html
11277
%%WWWDIR%%/core/doc/admin/search.html
11297
%%WWWDIR%%/core/doc/admin/search.html
11278
%%WWWDIR%%/core/doc/admin/searchindex.js
11298
%%WWWDIR%%/core/doc/admin/searchindex.js
Lines 11485-11493 Link Here
11485
%%WWWDIR%%/core/doc/user/webinterface.html
11505
%%WWWDIR%%/core/doc/user/webinterface.html
11486
%%WWWDIR%%/core/doc/user/whats_new.html
11506
%%WWWDIR%%/core/doc/user/whats_new.html
11487
%%WWWDIR%%/core/fonts/LICENSE.txt
11507
%%WWWDIR%%/core/fonts/LICENSE.txt
11508
%%WWWDIR%%/core/fonts/OpenSans-Light.ttf
11488
%%WWWDIR%%/core/fonts/OpenSans-Light.woff
11509
%%WWWDIR%%/core/fonts/OpenSans-Light.woff
11489
%%WWWDIR%%/core/fonts/OpenSans-Regular.ttf
11510
%%WWWDIR%%/core/fonts/OpenSans-Regular.ttf
11490
%%WWWDIR%%/core/fonts/OpenSans-Regular.woff
11511
%%WWWDIR%%/core/fonts/OpenSans-Regular.woff
11512
%%WWWDIR%%/core/fonts/OpenSans-Semibold.ttf
11491
%%WWWDIR%%/core/fonts/OpenSans-Semibold.woff
11513
%%WWWDIR%%/core/fonts/OpenSans-Semibold.woff
11492
%%WWWDIR%%/core/img/actions/add.svg
11514
%%WWWDIR%%/core/img/actions/add.svg
11493
%%WWWDIR%%/core/img/actions/address.svg
11515
%%WWWDIR%%/core/img/actions/address.svg
Lines 11750-11755 Link Here
11750
%%WWWDIR%%/core/js/tests/specs/systemtags/systemtagsinputfieldSpec.js
11772
%%WWWDIR%%/core/js/tests/specs/systemtags/systemtagsinputfieldSpec.js
11751
%%WWWDIR%%/core/js/update.js
11773
%%WWWDIR%%/core/js/update.js
11752
%%WWWDIR%%/core/js/visitortimezone.js
11774
%%WWWDIR%%/core/js/visitortimezone.js
11775
%%WWWDIR%%/core/l10n/ar.js
11776
%%WWWDIR%%/core/l10n/ar.json
11777
%%WWWDIR%%/core/l10n/ast.js
11778
%%WWWDIR%%/core/l10n/ast.json
11779
%%WWWDIR%%/core/l10n/bg.js
11780
%%WWWDIR%%/core/l10n/bg.json
11753
%%WWWDIR%%/core/l10n/ca.js
11781
%%WWWDIR%%/core/l10n/ca.js
11754
%%WWWDIR%%/core/l10n/ca.json
11782
%%WWWDIR%%/core/l10n/ca.json
11755
%%WWWDIR%%/core/l10n/cs.js
11783
%%WWWDIR%%/core/l10n/cs.js
Lines 11810-11817 Link Here
11810
%%WWWDIR%%/core/l10n/fi.json
11838
%%WWWDIR%%/core/l10n/fi.json
11811
%%WWWDIR%%/core/l10n/fr.js
11839
%%WWWDIR%%/core/l10n/fr.js
11812
%%WWWDIR%%/core/l10n/fr.json
11840
%%WWWDIR%%/core/l10n/fr.json
11841
%%WWWDIR%%/core/l10n/he.js
11842
%%WWWDIR%%/core/l10n/he.json
11813
%%WWWDIR%%/core/l10n/hu.js
11843
%%WWWDIR%%/core/l10n/hu.js
11814
%%WWWDIR%%/core/l10n/hu.json
11844
%%WWWDIR%%/core/l10n/hu.json
11845
%%WWWDIR%%/core/l10n/id.js
11846
%%WWWDIR%%/core/l10n/id.json
11815
%%WWWDIR%%/core/l10n/is.js
11847
%%WWWDIR%%/core/l10n/is.js
11816
%%WWWDIR%%/core/l10n/is.json
11848
%%WWWDIR%%/core/l10n/is.json
11817
%%WWWDIR%%/core/l10n/it.js
11849
%%WWWDIR%%/core/l10n/it.js
Lines 11850-11859 Link Here
11850
%%WWWDIR%%/core/l10n/sr.json
11882
%%WWWDIR%%/core/l10n/sr.json
11851
%%WWWDIR%%/core/l10n/sv.js
11883
%%WWWDIR%%/core/l10n/sv.js
11852
%%WWWDIR%%/core/l10n/sv.json
11884
%%WWWDIR%%/core/l10n/sv.json
11885
%%WWWDIR%%/core/l10n/th.js
11886
%%WWWDIR%%/core/l10n/th.json
11853
%%WWWDIR%%/core/l10n/tr.js
11887
%%WWWDIR%%/core/l10n/tr.js
11854
%%WWWDIR%%/core/l10n/tr.json
11888
%%WWWDIR%%/core/l10n/tr.json
11855
%%WWWDIR%%/core/l10n/uk.js
11889
%%WWWDIR%%/core/l10n/uk.js
11856
%%WWWDIR%%/core/l10n/uk.json
11890
%%WWWDIR%%/core/l10n/uk.json
11891
%%WWWDIR%%/core/l10n/uz.js
11892
%%WWWDIR%%/core/l10n/uz.json
11857
%%WWWDIR%%/core/l10n/vi.js
11893
%%WWWDIR%%/core/l10n/vi.js
11858
%%WWWDIR%%/core/l10n/vi.json
11894
%%WWWDIR%%/core/l10n/vi.json
11859
%%WWWDIR%%/core/l10n/zh_CN.js
11895
%%WWWDIR%%/core/l10n/zh_CN.js
Lines 11980-11989 Link Here
11980
%%WWWDIR%%/cron.php
12016
%%WWWDIR%%/cron.php
11981
%%WWWDIR%%/index.html
12017
%%WWWDIR%%/index.html
11982
%%WWWDIR%%/index.php
12018
%%WWWDIR%%/index.php
11983
%%WWWDIR%%/l10n/.gitignore
11984
%%WWWDIR%%/l10n/.tx/config
11985
%%WWWDIR%%/l10n/l10n.pl
11986
%%WWWDIR%%/l10n/rm-old.sh
11987
%%WWWDIR%%/lib/autoloader.php
12019
%%WWWDIR%%/lib/autoloader.php
11988
%%WWWDIR%%/lib/base.php
12020
%%WWWDIR%%/lib/base.php
11989
%%WWWDIR%%/lib/composer/autoload.php
12021
%%WWWDIR%%/lib/composer/autoload.php
Lines 11995-12002 Link Here
11995
%%WWWDIR%%/lib/composer/composer/autoload_real.php
12027
%%WWWDIR%%/lib/composer/composer/autoload_real.php
11996
%%WWWDIR%%/lib/composer/composer/autoload_static.php
12028
%%WWWDIR%%/lib/composer/composer/autoload_static.php
11997
%%WWWDIR%%/lib/composer/composer/installed.json
12029
%%WWWDIR%%/lib/composer/composer/installed.json
12030
%%WWWDIR%%/lib/l10n/ar.js
12031
%%WWWDIR%%/lib/l10n/ar.json
12032
%%WWWDIR%%/lib/l10n/ast.js
12033
%%WWWDIR%%/lib/l10n/ast.json
12034
%%WWWDIR%%/lib/l10n/az.js
12035
%%WWWDIR%%/lib/l10n/az.json
12036
%%WWWDIR%%/lib/l10n/bg.js
12037
%%WWWDIR%%/lib/l10n/bg.json
12038
%%WWWDIR%%/lib/l10n/bn_BD.js
12039
%%WWWDIR%%/lib/l10n/bn_BD.json
12040
%%WWWDIR%%/lib/l10n/bs.js
12041
%%WWWDIR%%/lib/l10n/bs.json
12042
%%WWWDIR%%/lib/l10n/ca.js
12043
%%WWWDIR%%/lib/l10n/ca.json
11998
%%WWWDIR%%/lib/l10n/cs.js
12044
%%WWWDIR%%/lib/l10n/cs.js
11999
%%WWWDIR%%/lib/l10n/cs.json
12045
%%WWWDIR%%/lib/l10n/cs.json
12046
%%WWWDIR%%/lib/l10n/cy_GB.js
12047
%%WWWDIR%%/lib/l10n/cy_GB.json
12048
%%WWWDIR%%/lib/l10n/da.js
12049
%%WWWDIR%%/lib/l10n/da.json
12000
%%WWWDIR%%/lib/l10n/de.js
12050
%%WWWDIR%%/lib/l10n/de.js
12001
%%WWWDIR%%/lib/l10n/de.json
12051
%%WWWDIR%%/lib/l10n/de.json
12002
%%WWWDIR%%/lib/l10n/de_DE.js
12052
%%WWWDIR%%/lib/l10n/de_DE.js
Lines 12005-12010 Link Here
12005
%%WWWDIR%%/lib/l10n/el.json
12055
%%WWWDIR%%/lib/l10n/el.json
12006
%%WWWDIR%%/lib/l10n/en_GB.js
12056
%%WWWDIR%%/lib/l10n/en_GB.js
12007
%%WWWDIR%%/lib/l10n/en_GB.json
12057
%%WWWDIR%%/lib/l10n/en_GB.json
12058
%%WWWDIR%%/lib/l10n/eo.js
12059
%%WWWDIR%%/lib/l10n/eo.json
12008
%%WWWDIR%%/lib/l10n/es.js
12060
%%WWWDIR%%/lib/l10n/es.js
12009
%%WWWDIR%%/lib/l10n/es.json
12061
%%WWWDIR%%/lib/l10n/es.json
12010
%%WWWDIR%%/lib/l10n/es_419.js
12062
%%WWWDIR%%/lib/l10n/es_419.js
Lines 12043-12054 Link Here
12043
%%WWWDIR%%/lib/l10n/es_UY.json
12095
%%WWWDIR%%/lib/l10n/es_UY.json
12044
%%WWWDIR%%/lib/l10n/et_EE.js
12096
%%WWWDIR%%/lib/l10n/et_EE.js
12045
%%WWWDIR%%/lib/l10n/et_EE.json
12097
%%WWWDIR%%/lib/l10n/et_EE.json
12098
%%WWWDIR%%/lib/l10n/eu.js
12099
%%WWWDIR%%/lib/l10n/eu.json
12100
%%WWWDIR%%/lib/l10n/fa.js
12101
%%WWWDIR%%/lib/l10n/fa.json
12046
%%WWWDIR%%/lib/l10n/fi.js
12102
%%WWWDIR%%/lib/l10n/fi.js
12047
%%WWWDIR%%/lib/l10n/fi.json
12103
%%WWWDIR%%/lib/l10n/fi.json
12048
%%WWWDIR%%/lib/l10n/fr.js
12104
%%WWWDIR%%/lib/l10n/fr.js
12049
%%WWWDIR%%/lib/l10n/fr.json
12105
%%WWWDIR%%/lib/l10n/fr.json
12106
%%WWWDIR%%/lib/l10n/gl.js
12107
%%WWWDIR%%/lib/l10n/gl.json
12108
%%WWWDIR%%/lib/l10n/he.js
12109
%%WWWDIR%%/lib/l10n/he.json
12110
%%WWWDIR%%/lib/l10n/hr.js
12111
%%WWWDIR%%/lib/l10n/hr.json
12050
%%WWWDIR%%/lib/l10n/hu.js
12112
%%WWWDIR%%/lib/l10n/hu.js
12051
%%WWWDIR%%/lib/l10n/hu.json
12113
%%WWWDIR%%/lib/l10n/hu.json
12114
%%WWWDIR%%/lib/l10n/hy.js
12115
%%WWWDIR%%/lib/l10n/hy.json
12116
%%WWWDIR%%/lib/l10n/id.js
12117
%%WWWDIR%%/lib/l10n/id.json
12052
%%WWWDIR%%/lib/l10n/is.js
12118
%%WWWDIR%%/lib/l10n/is.js
12053
%%WWWDIR%%/lib/l10n/is.json
12119
%%WWWDIR%%/lib/l10n/is.json
12054
%%WWWDIR%%/lib/l10n/it.js
12120
%%WWWDIR%%/lib/l10n/it.js
Lines 12057-12078 Link Here
12057
%%WWWDIR%%/lib/l10n/ja.json
12123
%%WWWDIR%%/lib/l10n/ja.json
12058
%%WWWDIR%%/lib/l10n/ka_GE.js
12124
%%WWWDIR%%/lib/l10n/ka_GE.js
12059
%%WWWDIR%%/lib/l10n/ka_GE.json
12125
%%WWWDIR%%/lib/l10n/ka_GE.json
12126
%%WWWDIR%%/lib/l10n/km.js
12127
%%WWWDIR%%/lib/l10n/km.json
12128
%%WWWDIR%%/lib/l10n/kn.js
12129
%%WWWDIR%%/lib/l10n/kn.json
12060
%%WWWDIR%%/lib/l10n/ko.js
12130
%%WWWDIR%%/lib/l10n/ko.js
12061
%%WWWDIR%%/lib/l10n/ko.json
12131
%%WWWDIR%%/lib/l10n/ko.json
12132
%%WWWDIR%%/lib/l10n/lb.js
12133
%%WWWDIR%%/lib/l10n/lb.json
12062
%%WWWDIR%%/lib/l10n/lt_LT.js
12134
%%WWWDIR%%/lib/l10n/lt_LT.js
12063
%%WWWDIR%%/lib/l10n/lt_LT.json
12135
%%WWWDIR%%/lib/l10n/lt_LT.json
12136
%%WWWDIR%%/lib/l10n/lv.js
12137
%%WWWDIR%%/lib/l10n/lv.json
12138
%%WWWDIR%%/lib/l10n/mk.js
12139
%%WWWDIR%%/lib/l10n/mk.json
12140
%%WWWDIR%%/lib/l10n/mn.js
12141
%%WWWDIR%%/lib/l10n/mn.json
12142
%%WWWDIR%%/lib/l10n/ms_MY.js
12143
%%WWWDIR%%/lib/l10n/ms_MY.json
12064
%%WWWDIR%%/lib/l10n/nb.js
12144
%%WWWDIR%%/lib/l10n/nb.js
12065
%%WWWDIR%%/lib/l10n/nb.json
12145
%%WWWDIR%%/lib/l10n/nb.json
12066
%%WWWDIR%%/lib/l10n/nl.js
12146
%%WWWDIR%%/lib/l10n/nl.js
12067
%%WWWDIR%%/lib/l10n/nl.json
12147
%%WWWDIR%%/lib/l10n/nl.json
12148
%%WWWDIR%%/lib/l10n/nn_NO.js
12149
%%WWWDIR%%/lib/l10n/nn_NO.json
12068
%%WWWDIR%%/lib/l10n/pl.js
12150
%%WWWDIR%%/lib/l10n/pl.js
12069
%%WWWDIR%%/lib/l10n/pl.json
12151
%%WWWDIR%%/lib/l10n/pl.json
12070
%%WWWDIR%%/lib/l10n/pt_BR.js
12152
%%WWWDIR%%/lib/l10n/pt_BR.js
12071
%%WWWDIR%%/lib/l10n/pt_BR.json
12153
%%WWWDIR%%/lib/l10n/pt_BR.json
12154
%%WWWDIR%%/lib/l10n/pt_PT.js
12155
%%WWWDIR%%/lib/l10n/pt_PT.json
12156
%%WWWDIR%%/lib/l10n/ro.js
12157
%%WWWDIR%%/lib/l10n/ro.json
12072
%%WWWDIR%%/lib/l10n/ru.js
12158
%%WWWDIR%%/lib/l10n/ru.js
12073
%%WWWDIR%%/lib/l10n/ru.json
12159
%%WWWDIR%%/lib/l10n/ru.json
12160
%%WWWDIR%%/lib/l10n/si_LK.js
12161
%%WWWDIR%%/lib/l10n/si_LK.json
12074
%%WWWDIR%%/lib/l10n/sk.js
12162
%%WWWDIR%%/lib/l10n/sk.js
12075
%%WWWDIR%%/lib/l10n/sk.json
12163
%%WWWDIR%%/lib/l10n/sk.json
12164
%%WWWDIR%%/lib/l10n/sl.js
12165
%%WWWDIR%%/lib/l10n/sl.json
12076
%%WWWDIR%%/lib/l10n/sq.js
12166
%%WWWDIR%%/lib/l10n/sq.js
12077
%%WWWDIR%%/lib/l10n/sq.json
12167
%%WWWDIR%%/lib/l10n/sq.json
12078
%%WWWDIR%%/lib/l10n/sr.js
12168
%%WWWDIR%%/lib/l10n/sr.js
Lines 12079-12088 Link Here
12079
%%WWWDIR%%/lib/l10n/sr.json
12169
%%WWWDIR%%/lib/l10n/sr.json
12080
%%WWWDIR%%/lib/l10n/sv.js
12170
%%WWWDIR%%/lib/l10n/sv.js
12081
%%WWWDIR%%/lib/l10n/sv.json
12171
%%WWWDIR%%/lib/l10n/sv.json
12172
%%WWWDIR%%/lib/l10n/ta_LK.js
12173
%%WWWDIR%%/lib/l10n/ta_LK.json
12174
%%WWWDIR%%/lib/l10n/th.js
12175
%%WWWDIR%%/lib/l10n/th.json
12082
%%WWWDIR%%/lib/l10n/tr.js
12176
%%WWWDIR%%/lib/l10n/tr.js
12083
%%WWWDIR%%/lib/l10n/tr.json
12177
%%WWWDIR%%/lib/l10n/tr.json
12178
%%WWWDIR%%/lib/l10n/ug.js
12179
%%WWWDIR%%/lib/l10n/ug.json
12180
%%WWWDIR%%/lib/l10n/uk.js
12181
%%WWWDIR%%/lib/l10n/uk.json
12182
%%WWWDIR%%/lib/l10n/ur_PK.js
12183
%%WWWDIR%%/lib/l10n/ur_PK.json
12184
%%WWWDIR%%/lib/l10n/uz.js
12185
%%WWWDIR%%/lib/l10n/uz.json
12186
%%WWWDIR%%/lib/l10n/vi.js
12187
%%WWWDIR%%/lib/l10n/vi.json
12084
%%WWWDIR%%/lib/l10n/zh_CN.js
12188
%%WWWDIR%%/lib/l10n/zh_CN.js
12085
%%WWWDIR%%/lib/l10n/zh_CN.json
12189
%%WWWDIR%%/lib/l10n/zh_CN.json
12190
%%WWWDIR%%/lib/l10n/zh_HK.js
12191
%%WWWDIR%%/lib/l10n/zh_HK.json
12086
%%WWWDIR%%/lib/l10n/zh_TW.js
12192
%%WWWDIR%%/lib/l10n/zh_TW.js
12087
%%WWWDIR%%/lib/l10n/zh_TW.json
12193
%%WWWDIR%%/lib/l10n/zh_TW.json
12088
%%WWWDIR%%/lib/private/Accounts/AccountManager.php
12194
%%WWWDIR%%/lib/private/Accounts/AccountManager.php
Lines 12481-12486 Link Here
12481
%%WWWDIR%%/lib/private/Remote/User.php
12587
%%WWWDIR%%/lib/private/Remote/User.php
12482
%%WWWDIR%%/lib/private/Repair.php
12588
%%WWWDIR%%/lib/private/Repair.php
12483
%%WWWDIR%%/lib/private/Repair/CleanTags.php
12589
%%WWWDIR%%/lib/private/Repair/CleanTags.php
12590
%%WWWDIR%%/lib/private/Repair/ClearFrontendCaches.php
12484
%%WWWDIR%%/lib/private/Repair/Collation.php
12591
%%WWWDIR%%/lib/private/Repair/Collation.php
12485
%%WWWDIR%%/lib/private/Repair/MoveUpdaterStepFile.php
12592
%%WWWDIR%%/lib/private/Repair/MoveUpdaterStepFile.php
12486
%%WWWDIR%%/lib/private/Repair/NC11/CleanPreviews.php
12593
%%WWWDIR%%/lib/private/Repair/NC11/CleanPreviews.php
Lines 13210-13216 Link Here
13210
%%WWWDIR%%/themes/example/defaults.php
13317
%%WWWDIR%%/themes/example/defaults.php
13211
%%WWWDIR%%/updater/index.php
13318
%%WWWDIR%%/updater/index.php
13212
%%WWWDIR%%/version.php
13319
%%WWWDIR%%/version.php
13213
@dir %%WWWDIR%%/apps/gallery/documentation/wiki
13320
@dir %%WWWDIR%%/apps-pkg/gallery/documentation/wiki
13214
@dir %%WWWDIR%%/apps
13321
@dir %%WWWDIR%%/apps-pkg
13322
@dir(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,) %%WWWDIR%%/apps
13215
@dir(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,) %%WWWDIR%%/config
13323
@dir(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,) %%WWWDIR%%/config
13216
@dir(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,) %%WWWDIR%%/data
13324
@dir(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,) %%WWWDIR%%/data
(-)mail/nextcloud-mail/Makefile (-1 / +2 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	mail
4
PORTNAME=	mail
5
PORTVERSION=	0.7.10
5
PORTVERSION=	0.7.10
6
PORTREVISION=	1
6
DISTVERSIONPREFIX=	v
7
DISTVERSIONPREFIX=	v
7
CATEGORIES=	mail
8
CATEGORIES=	mail
8
MASTER_SITES=	https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/
9
MASTER_SITES=	https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/
Lines 29-35 Link Here
29
PLIST_SUB=	NEXTCLOUD_USERNAME=${NEXTCLOUD_USERNAME} \
30
PLIST_SUB=	NEXTCLOUD_USERNAME=${NEXTCLOUD_USERNAME} \
30
		NEXTCLOUD_GROUPNAME=${NEXTCLOUD_GROUPNAME}
31
		NEXTCLOUD_GROUPNAME=${NEXTCLOUD_GROUPNAME}
31
32
32
WWWDIR=		${PREFIX}/www/nextcloud/apps/${PORTNAME}
33
WWWDIR=		${PREFIX}/www/nextcloud/apps-pkg/${PORTNAME}
33
34
34
do-install:
35
do-install:
35
	${MKDIR} ${STAGEDIR}${WWWDIR}
36
	${MKDIR} ${STAGEDIR}${WWWDIR}
(-)security/nextcloud-passman/Makefile (-1 / +2 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	passman
4
PORTNAME=	passman
5
PORTVERSION=	2.1.4
5
PORTVERSION=	2.1.4
6
PORTREVISION=	1
6
CATEGORIES=	security
7
CATEGORIES=	security
7
MASTER_SITES=	https://releases.passman.cc/
8
MASTER_SITES=	https://releases.passman.cc/
8
PKGNAMEPREFIX=	nextcloud-
9
PKGNAMEPREFIX=	nextcloud-
Lines 22-28 Link Here
22
NO_BUILD=	yes
23
NO_BUILD=	yes
23
NO_ARCH=	yes
24
NO_ARCH=	yes
24
25
25
WWWDIR=		${PREFIX}/www/nextcloud/apps/${PORTNAME}
26
WWWDIR=		${PREFIX}/www/nextcloud/apps-pkg/${PORTNAME}
26
27
27
do-install:
28
do-install:
28
	${MKDIR} ${STAGEDIR}${WWWDIR}
29
	${MKDIR} ${STAGEDIR}${WWWDIR}
(-)security/nextcloud-twofactor_totp/Makefile (-1 / +2 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	twofactor_totp
4
PORTNAME=	twofactor_totp
5
PORTVERSION=	1.4.1
5
PORTVERSION=	1.4.1
6
PORTREVISION=	1
6
CATEGORIES=	security
7
CATEGORIES=	security
7
MASTER_SITES=	https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/
8
MASTER_SITES=	https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/
8
PKGNAMEPREFIX=	nextcloud-
9
PKGNAMEPREFIX=	nextcloud-
Lines 27-33 Link Here
27
PLIST_SUB=	NEXTCLOUD_USERNAME=${NEXTCLOUD_USERNAME} \
28
PLIST_SUB=	NEXTCLOUD_USERNAME=${NEXTCLOUD_USERNAME} \
28
		NEXTCLOUD_GROUPNAME=${NEXTCLOUD_GROUPNAME}
29
		NEXTCLOUD_GROUPNAME=${NEXTCLOUD_GROUPNAME}
29
30
30
WWWDIR=		${PREFIX}/www/nextcloud/apps/${PORTNAME}
31
WWWDIR=		${PREFIX}/www/nextcloud/apps-pkg/${PORTNAME}
31
32
32
do-install:
33
do-install:
33
	${MKDIR} ${STAGEDIR}${WWWDIR}
34
	${MKDIR} ${STAGEDIR}${WWWDIR}
(-)security/nextcloud-twofactor_u2f/Makefile (-1 / +2 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	twofactor_u2f
4
PORTNAME=	twofactor_u2f
5
PORTVERSION=	1.5.2
5
PORTVERSION=	1.5.2
6
PORTREVISION=	1
6
CATEGORIES=	security
7
CATEGORIES=	security
7
MASTER_SITES=	https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/
8
MASTER_SITES=	https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/
8
PKGNAMEPREFIX=	nextcloud-
9
PKGNAMEPREFIX=	nextcloud-
Lines 21-27 Link Here
21
NO_BUILD=	yes
22
NO_BUILD=	yes
22
NO_ARCH=	yes
23
NO_ARCH=	yes
23
24
24
WWWDIR=		${PREFIX}/www/nextcloud/apps/${PORTNAME}
25
WWWDIR=		${PREFIX}/www/nextcloud/apps-pkg/${PORTNAME}
25
26
26
do-install:
27
do-install:
27
	${MKDIR} ${STAGEDIR}${WWWDIR}
28
	${MKDIR} ${STAGEDIR}${WWWDIR}
(-)www/nextcloud-calendar/Makefile (-1 / +2 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	calendar
4
PORTNAME=	calendar
5
PORTVERSION=	1.6.1
5
PORTVERSION=	1.6.1
6
PORTREVISION=	1
6
DISTVERSIONPREFIX=	v
7
DISTVERSIONPREFIX=	v
7
CATEGORIES=	www
8
CATEGORIES=	www
8
MASTER_SITES=	https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/
9
MASTER_SITES=	https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/
Lines 27-33 Link Here
27
PLIST_SUB=	NEXTCLOUD_USERNAME=${NEXTCLOUD_USERNAME} \
28
PLIST_SUB=	NEXTCLOUD_USERNAME=${NEXTCLOUD_USERNAME} \
28
		NEXTCLOUD_GROUPNAME=${NEXTCLOUD_GROUPNAME}
29
		NEXTCLOUD_GROUPNAME=${NEXTCLOUD_GROUPNAME}
29
30
30
WWWDIR=		${PREFIX}/www/nextcloud/apps/${PORTNAME}
31
WWWDIR=		${PREFIX}/www/nextcloud/apps-pkg/${PORTNAME}
31
32
32
do-install:
33
do-install:
33
	${MKDIR} ${STAGEDIR}${WWWDIR}
34
	${MKDIR} ${STAGEDIR}${WWWDIR}
(-)www/nextcloud-contacts/Makefile (-1 / +2 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	contacts
4
PORTNAME=	contacts
5
PORTVERSION=	2.1.3
5
PORTVERSION=	2.1.3
6
PORTREVISION=	1
6
DISTVERSIONPREFIX=	v
7
DISTVERSIONPREFIX=	v
7
CATEGORIES=	www
8
CATEGORIES=	www
8
MASTER_SITES=	https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/
9
MASTER_SITES=	https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/
Lines 27-33 Link Here
27
PLIST_SUB=	NEXTCLOUD_USERNAME=${NEXTCLOUD_USERNAME} \
28
PLIST_SUB=	NEXTCLOUD_USERNAME=${NEXTCLOUD_USERNAME} \
28
		NEXTCLOUD_GROUPNAME=${NEXTCLOUD_GROUPNAME}
29
		NEXTCLOUD_GROUPNAME=${NEXTCLOUD_GROUPNAME}
29
30
30
WWWDIR=		${PREFIX}/www/nextcloud/apps/${PORTNAME}
31
WWWDIR=		${PREFIX}/www/nextcloud/apps-pkg/${PORTNAME}
31
32
32
do-install:
33
do-install:
33
	${MKDIR} ${STAGEDIR}${WWWDIR}
34
	${MKDIR} ${STAGEDIR}${WWWDIR}

Return to bug 227133