├── .eslintrc.js ├── .github ├── contributing.md ├── dependabot.yml ├── issue_template.md └── workflows │ ├── appstore-build-publish.yml │ ├── dependabot-approve-merge.yml │ ├── lint-info-xml.yml │ ├── lint-php-cs.yml │ ├── lint-php.yml │ ├── node-when-unrelated.yml │ ├── node.yml │ ├── phpunit-mysql.yml │ ├── phpunit-pgsql.yml │ ├── phpunit-sqlite.yml │ ├── phpunit-summary-when-unrelated.yml │ ├── pr-feedback.yml │ ├── psalm.yml │ ├── reuse.yml │ └── update-nextcloud-ocp.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── .tx └── config ├── CHANGELOG.md ├── COPYING ├── LICENSES ├── AGPL-3.0-or-later.txt ├── CC0-1.0.txt └── MIT.txt ├── Makefile ├── README.md ├── REUSE.toml ├── appinfo ├── info.xml └── routes.php ├── babel.config.js ├── composer.json ├── composer.lock ├── css └── style.css ├── docs ├── admin-settings.png ├── admin-settings.png.license ├── jwt-sample.php ├── menu-and-settings-integration.png ├── menu-and-settings-integration.png.license ├── page-sample.png └── page-sample.png.license ├── img ├── external-dark.svg ├── external.svg ├── settings-dark.svg └── settings.svg ├── js ├── external.js ├── quota-personal.js ├── templates.js └── templates │ ├── icon.handlebars │ └── site.handlebars ├── l10n ├── .gitkeep ├── af.js ├── af.json ├── an.js ├── an.json ├── ar.js ├── ar.json ├── ast.js ├── ast.json ├── az.js ├── az.json ├── be.js ├── be.json ├── bg.js ├── bg.json ├── bn_BD.js ├── bn_BD.json ├── br.js ├── br.json ├── bs.js ├── bs.json ├── ca.js ├── ca.json ├── cs.js ├── cs.json ├── cy_GB.js ├── cy_GB.json ├── da.js ├── da.json ├── de.js ├── de.json ├── de_DE.js ├── de_DE.json ├── el.js ├── el.json ├── en_GB.js ├── en_GB.json ├── eo.js ├── eo.json ├── es.js ├── es.json ├── es_419.js ├── es_419.json ├── es_AR.js ├── es_AR.json ├── es_CL.js ├── es_CL.json ├── es_CO.js ├── es_CO.json ├── es_CR.js ├── es_CR.json ├── es_DO.js ├── es_DO.json ├── es_EC.js ├── es_EC.json ├── es_GT.js ├── es_GT.json ├── es_HN.js ├── es_HN.json ├── es_MX.js ├── es_MX.json ├── es_NI.js ├── es_NI.json ├── es_PA.js ├── es_PA.json ├── es_PE.js ├── es_PE.json ├── es_PR.js ├── es_PR.json ├── es_PY.js ├── es_PY.json ├── es_SV.js ├── es_SV.json ├── es_UY.js ├── es_UY.json ├── et_EE.js ├── et_EE.json ├── eu.js ├── eu.json ├── fa.js ├── fa.json ├── fi.js ├── fi.json ├── fr.js ├── fr.json ├── ga.js ├── ga.json ├── gd.js ├── gd.json ├── gl.js ├── gl.json ├── he.js ├── he.json ├── hr.js ├── hr.json ├── hu.js ├── hu.json ├── hy.js ├── hy.json ├── ia.js ├── ia.json ├── id.js ├── id.json ├── is.js ├── is.json ├── it.js ├── it.json ├── ja.js ├── ja.json ├── ka.js ├── ka.json ├── ka_GE.js ├── ka_GE.json ├── kab.js ├── kab.json ├── km.js ├── km.json ├── kn.js ├── kn.json ├── ko.js ├── ko.json ├── lb.js ├── lb.json ├── lo.js ├── lo.json ├── lt_LT.js ├── lt_LT.json ├── lv.js ├── lv.json ├── mk.js ├── mk.json ├── mn.js ├── mn.json ├── ms_MY.js ├── ms_MY.json ├── nb.js ├── nb.json ├── nl.js ├── nl.json ├── nn_NO.js ├── nn_NO.json ├── oc.js ├── oc.json ├── pl.js ├── pl.json ├── pt_BR.js ├── pt_BR.json ├── pt_PT.js ├── pt_PT.json ├── ro.js ├── ro.json ├── ru.js ├── ru.json ├── sc.js ├── sc.json ├── si.js ├── si.json ├── sk.js ├── sk.json ├── sl.js ├── sl.json ├── sq.js ├── sq.json ├── sr.js ├── sr.json ├── sr@latin.js ├── sr@latin.json ├── sv.js ├── sv.json ├── sw.js ├── sw.json ├── ta.js ├── ta.json ├── th.js ├── th.json ├── tr.js ├── tr.json ├── ug.js ├── ug.json ├── uk.js ├── uk.json ├── ur_PK.js ├── ur_PK.json ├── uz.js ├── uz.json ├── vi.js ├── vi.json ├── zh_CN.js ├── zh_CN.json ├── zh_HK.js ├── zh_HK.json ├── zh_TW.js └── zh_TW.json ├── lib ├── AppInfo │ └── Application.php ├── BeforeTemplateRenderedListener.php ├── Capabilities.php ├── Controller │ ├── APIController.php │ ├── IconController.php │ └── SiteController.php ├── Exceptions │ ├── GroupNotFoundException.php │ ├── IconNotFoundException.php │ ├── InvalidDeviceException.php │ ├── InvalidNameException.php │ ├── InvalidTypeException.php │ ├── InvalidURLException.php │ ├── LanguageNotFoundException.php │ └── SiteNotFoundException.php ├── JWTManager.php ├── Migration │ ├── CopyDefaultIcons.php │ └── JWTTokenPrivateKeySensitive.php ├── Settings │ ├── Admin.php │ ├── Personal.php │ └── Section.php └── SitesManager.php ├── package.json ├── psalm.xml ├── src ├── admin.js └── quota-files-sidebar.js ├── templates ├── frame.php ├── quota.php └── settings.php ├── tests ├── bootstrap.php ├── phpunit.xml ├── psalm-baseline.xml └── stub.phpstub ├── vendor-bin ├── csfixer │ ├── composer.json │ └── composer.lock ├── mozart │ ├── composer.json │ └── composer.lock ├── phpunit │ ├── composer.json │ └── composer.lock └── psalm │ ├── composer.json │ └── composer.lock └── webpack.config.js /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: [ 3 | '@nextcloud', 4 | ], 5 | } 6 | -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/appstore-build-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/appstore-build-publish.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-approve-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/dependabot-approve-merge.yml -------------------------------------------------------------------------------- /.github/workflows/lint-info-xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/lint-info-xml.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php-cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/lint-php-cs.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/lint-php.yml -------------------------------------------------------------------------------- /.github/workflows/node-when-unrelated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/node-when-unrelated.yml -------------------------------------------------------------------------------- /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/phpunit-mysql.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-pgsql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/phpunit-pgsql.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-sqlite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/phpunit-sqlite.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-summary-when-unrelated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/phpunit-summary-when-unrelated.yml -------------------------------------------------------------------------------- /.github/workflows/pr-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/pr-feedback.yml -------------------------------------------------------------------------------- /.github/workflows/psalm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/psalm.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.github/workflows/update-nextcloud-ocp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.github/workflows/update-nextcloud-ocp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/.tx/config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/LICENSES/AGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/REUSE.toml -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/appinfo/info.xml -------------------------------------------------------------------------------- /appinfo/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/appinfo/routes.php -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/babel.config.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/composer.lock -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/css/style.css -------------------------------------------------------------------------------- /docs/admin-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/docs/admin-settings.png -------------------------------------------------------------------------------- /docs/admin-settings.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/docs/admin-settings.png.license -------------------------------------------------------------------------------- /docs/jwt-sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/docs/jwt-sample.php -------------------------------------------------------------------------------- /docs/menu-and-settings-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/docs/menu-and-settings-integration.png -------------------------------------------------------------------------------- /docs/menu-and-settings-integration.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/docs/menu-and-settings-integration.png.license -------------------------------------------------------------------------------- /docs/page-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/docs/page-sample.png -------------------------------------------------------------------------------- /docs/page-sample.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/docs/page-sample.png.license -------------------------------------------------------------------------------- /img/external-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/img/external-dark.svg -------------------------------------------------------------------------------- /img/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/img/external.svg -------------------------------------------------------------------------------- /img/settings-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/img/settings-dark.svg -------------------------------------------------------------------------------- /img/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/img/settings.svg -------------------------------------------------------------------------------- /js/external.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/js/external.js -------------------------------------------------------------------------------- /js/quota-personal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/js/quota-personal.js -------------------------------------------------------------------------------- /js/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/js/templates.js -------------------------------------------------------------------------------- /js/templates/icon.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/js/templates/icon.handlebars -------------------------------------------------------------------------------- /js/templates/site.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/js/templates/site.handlebars -------------------------------------------------------------------------------- /l10n/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /l10n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/af.js -------------------------------------------------------------------------------- /l10n/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/af.json -------------------------------------------------------------------------------- /l10n/an.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/an.js -------------------------------------------------------------------------------- /l10n/an.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/an.json -------------------------------------------------------------------------------- /l10n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ar.js -------------------------------------------------------------------------------- /l10n/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ar.json -------------------------------------------------------------------------------- /l10n/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ast.js -------------------------------------------------------------------------------- /l10n/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ast.json -------------------------------------------------------------------------------- /l10n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/az.js -------------------------------------------------------------------------------- /l10n/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/az.json -------------------------------------------------------------------------------- /l10n/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/be.js -------------------------------------------------------------------------------- /l10n/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/be.json -------------------------------------------------------------------------------- /l10n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/bg.js -------------------------------------------------------------------------------- /l10n/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/bg.json -------------------------------------------------------------------------------- /l10n/bn_BD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/bn_BD.js -------------------------------------------------------------------------------- /l10n/bn_BD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/bn_BD.json -------------------------------------------------------------------------------- /l10n/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/br.js -------------------------------------------------------------------------------- /l10n/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/br.json -------------------------------------------------------------------------------- /l10n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/bs.js -------------------------------------------------------------------------------- /l10n/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/bs.json -------------------------------------------------------------------------------- /l10n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ca.js -------------------------------------------------------------------------------- /l10n/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ca.json -------------------------------------------------------------------------------- /l10n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/cs.js -------------------------------------------------------------------------------- /l10n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/cs.json -------------------------------------------------------------------------------- /l10n/cy_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/cy_GB.js -------------------------------------------------------------------------------- /l10n/cy_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/cy_GB.json -------------------------------------------------------------------------------- /l10n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/da.js -------------------------------------------------------------------------------- /l10n/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/da.json -------------------------------------------------------------------------------- /l10n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/de.js -------------------------------------------------------------------------------- /l10n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/de.json -------------------------------------------------------------------------------- /l10n/de_DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/de_DE.js -------------------------------------------------------------------------------- /l10n/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/de_DE.json -------------------------------------------------------------------------------- /l10n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/el.js -------------------------------------------------------------------------------- /l10n/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/el.json -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/en_GB.js -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/en_GB.json -------------------------------------------------------------------------------- /l10n/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/eo.js -------------------------------------------------------------------------------- /l10n/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/eo.json -------------------------------------------------------------------------------- /l10n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es.js -------------------------------------------------------------------------------- /l10n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es.json -------------------------------------------------------------------------------- /l10n/es_419.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_419.js -------------------------------------------------------------------------------- /l10n/es_419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_419.json -------------------------------------------------------------------------------- /l10n/es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_AR.js -------------------------------------------------------------------------------- /l10n/es_AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_AR.json -------------------------------------------------------------------------------- /l10n/es_CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_CL.js -------------------------------------------------------------------------------- /l10n/es_CL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_CL.json -------------------------------------------------------------------------------- /l10n/es_CO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_CO.js -------------------------------------------------------------------------------- /l10n/es_CO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_CO.json -------------------------------------------------------------------------------- /l10n/es_CR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_CR.js -------------------------------------------------------------------------------- /l10n/es_CR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_CR.json -------------------------------------------------------------------------------- /l10n/es_DO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_DO.js -------------------------------------------------------------------------------- /l10n/es_DO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_DO.json -------------------------------------------------------------------------------- /l10n/es_EC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_EC.js -------------------------------------------------------------------------------- /l10n/es_EC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_EC.json -------------------------------------------------------------------------------- /l10n/es_GT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_GT.js -------------------------------------------------------------------------------- /l10n/es_GT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_GT.json -------------------------------------------------------------------------------- /l10n/es_HN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_HN.js -------------------------------------------------------------------------------- /l10n/es_HN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_HN.json -------------------------------------------------------------------------------- /l10n/es_MX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_MX.js -------------------------------------------------------------------------------- /l10n/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_MX.json -------------------------------------------------------------------------------- /l10n/es_NI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_NI.js -------------------------------------------------------------------------------- /l10n/es_NI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_NI.json -------------------------------------------------------------------------------- /l10n/es_PA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_PA.js -------------------------------------------------------------------------------- /l10n/es_PA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_PA.json -------------------------------------------------------------------------------- /l10n/es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_PE.js -------------------------------------------------------------------------------- /l10n/es_PE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_PE.json -------------------------------------------------------------------------------- /l10n/es_PR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_PR.js -------------------------------------------------------------------------------- /l10n/es_PR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_PR.json -------------------------------------------------------------------------------- /l10n/es_PY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_PY.js -------------------------------------------------------------------------------- /l10n/es_PY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_PY.json -------------------------------------------------------------------------------- /l10n/es_SV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_SV.js -------------------------------------------------------------------------------- /l10n/es_SV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_SV.json -------------------------------------------------------------------------------- /l10n/es_UY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_UY.js -------------------------------------------------------------------------------- /l10n/es_UY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/es_UY.json -------------------------------------------------------------------------------- /l10n/et_EE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/et_EE.js -------------------------------------------------------------------------------- /l10n/et_EE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/et_EE.json -------------------------------------------------------------------------------- /l10n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/eu.js -------------------------------------------------------------------------------- /l10n/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/eu.json -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/fa.js -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/fa.json -------------------------------------------------------------------------------- /l10n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/fi.js -------------------------------------------------------------------------------- /l10n/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/fi.json -------------------------------------------------------------------------------- /l10n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/fr.js -------------------------------------------------------------------------------- /l10n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/fr.json -------------------------------------------------------------------------------- /l10n/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ga.js -------------------------------------------------------------------------------- /l10n/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ga.json -------------------------------------------------------------------------------- /l10n/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/gd.js -------------------------------------------------------------------------------- /l10n/gd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/gd.json -------------------------------------------------------------------------------- /l10n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/gl.js -------------------------------------------------------------------------------- /l10n/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/gl.json -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/he.js -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/he.json -------------------------------------------------------------------------------- /l10n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/hr.js -------------------------------------------------------------------------------- /l10n/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/hr.json -------------------------------------------------------------------------------- /l10n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/hu.js -------------------------------------------------------------------------------- /l10n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/hu.json -------------------------------------------------------------------------------- /l10n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/hy.js -------------------------------------------------------------------------------- /l10n/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/hy.json -------------------------------------------------------------------------------- /l10n/ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ia.js -------------------------------------------------------------------------------- /l10n/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ia.json -------------------------------------------------------------------------------- /l10n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/id.js -------------------------------------------------------------------------------- /l10n/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/id.json -------------------------------------------------------------------------------- /l10n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/is.js -------------------------------------------------------------------------------- /l10n/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/is.json -------------------------------------------------------------------------------- /l10n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/it.js -------------------------------------------------------------------------------- /l10n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/it.json -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ja.js -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ja.json -------------------------------------------------------------------------------- /l10n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ka.js -------------------------------------------------------------------------------- /l10n/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ka.json -------------------------------------------------------------------------------- /l10n/ka_GE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ka_GE.js -------------------------------------------------------------------------------- /l10n/ka_GE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ka_GE.json -------------------------------------------------------------------------------- /l10n/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/kab.js -------------------------------------------------------------------------------- /l10n/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/kab.json -------------------------------------------------------------------------------- /l10n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/km.js -------------------------------------------------------------------------------- /l10n/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/km.json -------------------------------------------------------------------------------- /l10n/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/kn.js -------------------------------------------------------------------------------- /l10n/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/kn.json -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ko.js -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ko.json -------------------------------------------------------------------------------- /l10n/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/lb.js -------------------------------------------------------------------------------- /l10n/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/lb.json -------------------------------------------------------------------------------- /l10n/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/lo.js -------------------------------------------------------------------------------- /l10n/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/lo.json -------------------------------------------------------------------------------- /l10n/lt_LT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/lt_LT.js -------------------------------------------------------------------------------- /l10n/lt_LT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/lt_LT.json -------------------------------------------------------------------------------- /l10n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/lv.js -------------------------------------------------------------------------------- /l10n/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/lv.json -------------------------------------------------------------------------------- /l10n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/mk.js -------------------------------------------------------------------------------- /l10n/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/mk.json -------------------------------------------------------------------------------- /l10n/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/mn.js -------------------------------------------------------------------------------- /l10n/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/mn.json -------------------------------------------------------------------------------- /l10n/ms_MY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ms_MY.js -------------------------------------------------------------------------------- /l10n/ms_MY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ms_MY.json -------------------------------------------------------------------------------- /l10n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/nb.js -------------------------------------------------------------------------------- /l10n/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/nb.json -------------------------------------------------------------------------------- /l10n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/nl.js -------------------------------------------------------------------------------- /l10n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/nl.json -------------------------------------------------------------------------------- /l10n/nn_NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/nn_NO.js -------------------------------------------------------------------------------- /l10n/nn_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/nn_NO.json -------------------------------------------------------------------------------- /l10n/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/oc.js -------------------------------------------------------------------------------- /l10n/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/oc.json -------------------------------------------------------------------------------- /l10n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/pl.js -------------------------------------------------------------------------------- /l10n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/pl.json -------------------------------------------------------------------------------- /l10n/pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/pt_BR.js -------------------------------------------------------------------------------- /l10n/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/pt_BR.json -------------------------------------------------------------------------------- /l10n/pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/pt_PT.js -------------------------------------------------------------------------------- /l10n/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/pt_PT.json -------------------------------------------------------------------------------- /l10n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ro.js -------------------------------------------------------------------------------- /l10n/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ro.json -------------------------------------------------------------------------------- /l10n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ru.js -------------------------------------------------------------------------------- /l10n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ru.json -------------------------------------------------------------------------------- /l10n/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sc.js -------------------------------------------------------------------------------- /l10n/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sc.json -------------------------------------------------------------------------------- /l10n/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/si.js -------------------------------------------------------------------------------- /l10n/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/si.json -------------------------------------------------------------------------------- /l10n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sk.js -------------------------------------------------------------------------------- /l10n/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sk.json -------------------------------------------------------------------------------- /l10n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sl.js -------------------------------------------------------------------------------- /l10n/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sl.json -------------------------------------------------------------------------------- /l10n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sq.js -------------------------------------------------------------------------------- /l10n/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sq.json -------------------------------------------------------------------------------- /l10n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sr.js -------------------------------------------------------------------------------- /l10n/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sr.json -------------------------------------------------------------------------------- /l10n/sr@latin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sr@latin.js -------------------------------------------------------------------------------- /l10n/sr@latin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sr@latin.json -------------------------------------------------------------------------------- /l10n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sv.js -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sv.json -------------------------------------------------------------------------------- /l10n/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sw.js -------------------------------------------------------------------------------- /l10n/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/sw.json -------------------------------------------------------------------------------- /l10n/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ta.js -------------------------------------------------------------------------------- /l10n/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ta.json -------------------------------------------------------------------------------- /l10n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/th.js -------------------------------------------------------------------------------- /l10n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/th.json -------------------------------------------------------------------------------- /l10n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/tr.js -------------------------------------------------------------------------------- /l10n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/tr.json -------------------------------------------------------------------------------- /l10n/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ug.js -------------------------------------------------------------------------------- /l10n/ug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ug.json -------------------------------------------------------------------------------- /l10n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/uk.js -------------------------------------------------------------------------------- /l10n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/uk.json -------------------------------------------------------------------------------- /l10n/ur_PK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ur_PK.js -------------------------------------------------------------------------------- /l10n/ur_PK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/ur_PK.json -------------------------------------------------------------------------------- /l10n/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/uz.js -------------------------------------------------------------------------------- /l10n/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/uz.json -------------------------------------------------------------------------------- /l10n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/vi.js -------------------------------------------------------------------------------- /l10n/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/vi.json -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/zh_CN.js -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/zh_CN.json -------------------------------------------------------------------------------- /l10n/zh_HK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/zh_HK.js -------------------------------------------------------------------------------- /l10n/zh_HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/zh_HK.json -------------------------------------------------------------------------------- /l10n/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/zh_TW.js -------------------------------------------------------------------------------- /l10n/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/l10n/zh_TW.json -------------------------------------------------------------------------------- /lib/AppInfo/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/AppInfo/Application.php -------------------------------------------------------------------------------- /lib/BeforeTemplateRenderedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/BeforeTemplateRenderedListener.php -------------------------------------------------------------------------------- /lib/Capabilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Capabilities.php -------------------------------------------------------------------------------- /lib/Controller/APIController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Controller/APIController.php -------------------------------------------------------------------------------- /lib/Controller/IconController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Controller/IconController.php -------------------------------------------------------------------------------- /lib/Controller/SiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Controller/SiteController.php -------------------------------------------------------------------------------- /lib/Exceptions/GroupNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Exceptions/GroupNotFoundException.php -------------------------------------------------------------------------------- /lib/Exceptions/IconNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Exceptions/IconNotFoundException.php -------------------------------------------------------------------------------- /lib/Exceptions/InvalidDeviceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Exceptions/InvalidDeviceException.php -------------------------------------------------------------------------------- /lib/Exceptions/InvalidNameException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Exceptions/InvalidNameException.php -------------------------------------------------------------------------------- /lib/Exceptions/InvalidTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Exceptions/InvalidTypeException.php -------------------------------------------------------------------------------- /lib/Exceptions/InvalidURLException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Exceptions/InvalidURLException.php -------------------------------------------------------------------------------- /lib/Exceptions/LanguageNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Exceptions/LanguageNotFoundException.php -------------------------------------------------------------------------------- /lib/Exceptions/SiteNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Exceptions/SiteNotFoundException.php -------------------------------------------------------------------------------- /lib/JWTManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/JWTManager.php -------------------------------------------------------------------------------- /lib/Migration/CopyDefaultIcons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Migration/CopyDefaultIcons.php -------------------------------------------------------------------------------- /lib/Migration/JWTTokenPrivateKeySensitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Migration/JWTTokenPrivateKeySensitive.php -------------------------------------------------------------------------------- /lib/Settings/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Settings/Admin.php -------------------------------------------------------------------------------- /lib/Settings/Personal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Settings/Personal.php -------------------------------------------------------------------------------- /lib/Settings/Section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/Settings/Section.php -------------------------------------------------------------------------------- /lib/SitesManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/lib/SitesManager.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/package.json -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/src/admin.js -------------------------------------------------------------------------------- /src/quota-files-sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/src/quota-files-sidebar.js -------------------------------------------------------------------------------- /templates/frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/templates/frame.php -------------------------------------------------------------------------------- /templates/quota.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/templates/quota.php -------------------------------------------------------------------------------- /templates/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/templates/settings.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /tests/psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/tests/psalm-baseline.xml -------------------------------------------------------------------------------- /tests/stub.phpstub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/tests/stub.phpstub -------------------------------------------------------------------------------- /vendor-bin/csfixer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/vendor-bin/csfixer/composer.json -------------------------------------------------------------------------------- /vendor-bin/csfixer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/vendor-bin/csfixer/composer.lock -------------------------------------------------------------------------------- /vendor-bin/mozart/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/vendor-bin/mozart/composer.json -------------------------------------------------------------------------------- /vendor-bin/mozart/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/vendor-bin/mozart/composer.lock -------------------------------------------------------------------------------- /vendor-bin/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/vendor-bin/phpunit/composer.json -------------------------------------------------------------------------------- /vendor-bin/phpunit/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/vendor-bin/phpunit/composer.lock -------------------------------------------------------------------------------- /vendor-bin/psalm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/vendor-bin/psalm/composer.json -------------------------------------------------------------------------------- /vendor-bin/psalm/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/vendor-bin/psalm/composer.lock -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/external/HEAD/webpack.config.js --------------------------------------------------------------------------------