├── .eslintrc.cjs ├── .gitattributes ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── appstore-build-publish.yml │ ├── lint-eslint.yml │ ├── lint-info-xml.yml │ ├── lint-php-cs.yml │ ├── lint-php.yml │ ├── lint-stylelint.yml │ ├── phpunit-mysql.yml │ ├── phpunit-pgsql.yml │ ├── phpunit-sqlite.yml │ ├── phpunit-summary-when-unrelated.yml │ ├── pr-feedback.yml │ ├── psalm.yml │ └── reuse.yml ├── .gitignore ├── .l10nignore ├── .nextcloudignore ├── .php-cs-fixer.dist.php ├── .tx └── config ├── AUTHORS.md ├── CHANGELOG.md ├── COPYING ├── LICENSES ├── AGPL-3.0-or-later.txt ├── Apache-2.0.txt ├── CC0-1.0.txt ├── LicenseRef-GithubTrademarks.txt └── MIT.txt ├── README.md ├── REUSE.toml ├── appinfo ├── info.xml └── routes.php ├── composer.json ├── composer.lock ├── css └── dashboard.css ├── img ├── app-dark.svg ├── app.svg ├── issue-dark.svg ├── issue-white.svg ├── issue.svg ├── pull_request-dark.svg ├── pull_request-white.svg ├── pull_request.svg ├── reactions │ ├── confused.png │ ├── eyes.png │ ├── heart.png │ ├── laugh.png │ ├── minus1.png │ ├── plus1.png │ ├── rocket.png │ └── tada.png ├── release.svg ├── repo-dark.svg ├── repo-white.svg ├── screenshot1.jpg └── unsub.svg ├── krankerl.toml ├── l10n ├── .gitkeep ├── af.js ├── af.json ├── ar.js ├── ar.json ├── ast.js ├── ast.json ├── az.js ├── az.json ├── be.js ├── be.json ├── bg.js ├── bg.json ├── br.js ├── br.json ├── ca.js ├── ca.json ├── cs.js ├── cs.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 ├── gl.js ├── gl.json ├── he.js ├── he.json ├── hr.js ├── hr.json ├── hu.js ├── hu.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 ├── ko.js ├── ko.json ├── lo.js ├── lo.json ├── lt_LT.js ├── lt_LT.json ├── lv.js ├── lv.json ├── mk.js ├── mk.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 ├── sk.js ├── sk.json ├── sl.js ├── sl.json ├── sq.js ├── sq.json ├── sr.js ├── sr.json ├── sv.js ├── sv.json ├── sw.js ├── sw.json ├── th.js ├── th.json ├── tr.js ├── tr.json ├── ug.js ├── ug.json ├── uk.js ├── uk.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 ├── BackgroundJob │ └── CheckGithubNotificationsJob.php ├── Controller │ ├── ConfigController.php │ └── GithubAPIController.php ├── Dashboard │ └── GithubWidget.php ├── Listener │ ├── ContentSecurityPolicyListener.php │ └── GithubReferenceListener.php ├── Migration │ └── Version030010Date20241002015812.php ├── Notification │ └── GitHubNotifier.php ├── Reference │ ├── GithubCodeReferenceProvider.php │ └── GithubIssuePrReferenceProvider.php ├── Search │ ├── GithubSearchIssuesProvider.php │ └── GithubSearchReposProvider.php ├── Service │ ├── GithubAPIService.php │ └── SecretService.php └── Settings │ ├── Admin.php │ ├── AdminSection.php │ ├── Personal.php │ └── PersonalSection.php ├── makefile ├── package.json ├── psalm.xml ├── src ├── adminSettings.js ├── bootstrap.js ├── components │ ├── AdminSettings.vue │ ├── CommentReactions.vue │ ├── PersonalSettings.vue │ ├── UserPopover.vue │ └── icons │ │ ├── CommentIcon.vue │ │ ├── CommitIcon.vue │ │ ├── GithubIcon.vue │ │ ├── IssueClosedIcon.vue │ │ ├── IssueClosedNotPlannedIcon.vue │ │ ├── IssueOpenIcon.vue │ │ ├── LocationIcon.vue │ │ ├── MilestoneIcon.vue │ │ ├── PrClosedIcon.vue │ │ ├── PrMergedIcon.vue │ │ ├── PrOpenDraftIcon.vue │ │ ├── PrOpenIcon.vue │ │ ├── RepositoryIcon.vue │ │ └── RocketIcon.vue ├── dashboard.js ├── personalSettings.js ├── popupSuccess.js ├── reference.js ├── utils.js └── views │ ├── Dashboard.vue │ ├── GithubCodePermalinkReferenceWidget.vue │ └── GithubIssuePrReferenceWidget.vue ├── stylelint.config.cjs ├── templates ├── adminSettings.php ├── personalSettings.php └── popupSuccess.php ├── tests ├── bootstrap.php ├── phpunit.xml ├── psalm-baseline.xml └── unit │ ├── Controller │ ├── GithubAPIControllerTest.php │ └── data │ │ ├── avatar.jpg │ │ ├── issue.json │ │ ├── issue_comment.json │ │ ├── issue_comment_reactions.json │ │ ├── issue_reactions.json │ │ ├── notification.json │ │ ├── pr_info.json │ │ ├── users.json │ │ └── users_contextual.json │ └── Service │ └── GithubAPIServiceTest.php ├── vendor-bin ├── php-cs-fixer │ ├── composer.json │ └── composer.lock ├── phpunit │ ├── composer.json │ └── composer.lock └── psalm │ ├── composer.json │ └── composer.lock ├── vite.config.ts └── webpack.js /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | /vendor-bin/**/composer.lock binary -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @oleksandr-nc @kyteinsky 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/appstore-build-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.github/workflows/appstore-build-publish.yml -------------------------------------------------------------------------------- /.github/workflows/lint-eslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.github/workflows/lint-eslint.yml -------------------------------------------------------------------------------- /.github/workflows/lint-info-xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.github/workflows/lint-info-xml.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php-cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.github/workflows/lint-php-cs.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.github/workflows/lint-php.yml -------------------------------------------------------------------------------- /.github/workflows/lint-stylelint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.github/workflows/lint-stylelint.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.github/workflows/phpunit-mysql.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-pgsql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.github/workflows/phpunit-pgsql.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-sqlite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.github/workflows/phpunit-sqlite.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-summary-when-unrelated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.github/workflows/phpunit-summary-when-unrelated.yml -------------------------------------------------------------------------------- /.github/workflows/pr-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.github/workflows/pr-feedback.yml -------------------------------------------------------------------------------- /.github/workflows/psalm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.github/workflows/psalm.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.gitignore -------------------------------------------------------------------------------- /.l10nignore: -------------------------------------------------------------------------------- 1 | # compiled vue templates 2 | js/ 3 | -------------------------------------------------------------------------------- /.nextcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.nextcloudignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/LICENSES/AGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-GithubTrademarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/LICENSES/LicenseRef-GithubTrademarks.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/REUSE.toml -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/appinfo/info.xml -------------------------------------------------------------------------------- /appinfo/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/appinfo/routes.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/composer.lock -------------------------------------------------------------------------------- /css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/css/dashboard.css -------------------------------------------------------------------------------- /img/app-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/app-dark.svg -------------------------------------------------------------------------------- /img/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/app.svg -------------------------------------------------------------------------------- /img/issue-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/issue-dark.svg -------------------------------------------------------------------------------- /img/issue-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/issue-white.svg -------------------------------------------------------------------------------- /img/issue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/issue.svg -------------------------------------------------------------------------------- /img/pull_request-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/pull_request-dark.svg -------------------------------------------------------------------------------- /img/pull_request-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/pull_request-white.svg -------------------------------------------------------------------------------- /img/pull_request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/pull_request.svg -------------------------------------------------------------------------------- /img/reactions/confused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/reactions/confused.png -------------------------------------------------------------------------------- /img/reactions/eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/reactions/eyes.png -------------------------------------------------------------------------------- /img/reactions/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/reactions/heart.png -------------------------------------------------------------------------------- /img/reactions/laugh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/reactions/laugh.png -------------------------------------------------------------------------------- /img/reactions/minus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/reactions/minus1.png -------------------------------------------------------------------------------- /img/reactions/plus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/reactions/plus1.png -------------------------------------------------------------------------------- /img/reactions/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/reactions/rocket.png -------------------------------------------------------------------------------- /img/reactions/tada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/reactions/tada.png -------------------------------------------------------------------------------- /img/release.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/release.svg -------------------------------------------------------------------------------- /img/repo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/repo-dark.svg -------------------------------------------------------------------------------- /img/repo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/repo-white.svg -------------------------------------------------------------------------------- /img/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/screenshot1.jpg -------------------------------------------------------------------------------- /img/unsub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/img/unsub.svg -------------------------------------------------------------------------------- /krankerl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/krankerl.toml -------------------------------------------------------------------------------- /l10n/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /l10n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/af.js -------------------------------------------------------------------------------- /l10n/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/af.json -------------------------------------------------------------------------------- /l10n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ar.js -------------------------------------------------------------------------------- /l10n/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ar.json -------------------------------------------------------------------------------- /l10n/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ast.js -------------------------------------------------------------------------------- /l10n/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ast.json -------------------------------------------------------------------------------- /l10n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/az.js -------------------------------------------------------------------------------- /l10n/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/az.json -------------------------------------------------------------------------------- /l10n/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/be.js -------------------------------------------------------------------------------- /l10n/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/be.json -------------------------------------------------------------------------------- /l10n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/bg.js -------------------------------------------------------------------------------- /l10n/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/bg.json -------------------------------------------------------------------------------- /l10n/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/br.js -------------------------------------------------------------------------------- /l10n/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/br.json -------------------------------------------------------------------------------- /l10n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ca.js -------------------------------------------------------------------------------- /l10n/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ca.json -------------------------------------------------------------------------------- /l10n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/cs.js -------------------------------------------------------------------------------- /l10n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/cs.json -------------------------------------------------------------------------------- /l10n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/da.js -------------------------------------------------------------------------------- /l10n/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/da.json -------------------------------------------------------------------------------- /l10n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/de.js -------------------------------------------------------------------------------- /l10n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/de.json -------------------------------------------------------------------------------- /l10n/de_DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/de_DE.js -------------------------------------------------------------------------------- /l10n/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/de_DE.json -------------------------------------------------------------------------------- /l10n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/el.js -------------------------------------------------------------------------------- /l10n/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/el.json -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/en_GB.js -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/en_GB.json -------------------------------------------------------------------------------- /l10n/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/eo.js -------------------------------------------------------------------------------- /l10n/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/eo.json -------------------------------------------------------------------------------- /l10n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es.js -------------------------------------------------------------------------------- /l10n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es.json -------------------------------------------------------------------------------- /l10n/es_419.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_419.js -------------------------------------------------------------------------------- /l10n/es_419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_419.json -------------------------------------------------------------------------------- /l10n/es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_AR.js -------------------------------------------------------------------------------- /l10n/es_AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_AR.json -------------------------------------------------------------------------------- /l10n/es_CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_CL.js -------------------------------------------------------------------------------- /l10n/es_CL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_CL.json -------------------------------------------------------------------------------- /l10n/es_CO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_CO.js -------------------------------------------------------------------------------- /l10n/es_CO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_CO.json -------------------------------------------------------------------------------- /l10n/es_CR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_CR.js -------------------------------------------------------------------------------- /l10n/es_CR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_CR.json -------------------------------------------------------------------------------- /l10n/es_DO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_DO.js -------------------------------------------------------------------------------- /l10n/es_DO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_DO.json -------------------------------------------------------------------------------- /l10n/es_EC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_EC.js -------------------------------------------------------------------------------- /l10n/es_EC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_EC.json -------------------------------------------------------------------------------- /l10n/es_GT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_GT.js -------------------------------------------------------------------------------- /l10n/es_GT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_GT.json -------------------------------------------------------------------------------- /l10n/es_HN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_HN.js -------------------------------------------------------------------------------- /l10n/es_HN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_HN.json -------------------------------------------------------------------------------- /l10n/es_MX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_MX.js -------------------------------------------------------------------------------- /l10n/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_MX.json -------------------------------------------------------------------------------- /l10n/es_NI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_NI.js -------------------------------------------------------------------------------- /l10n/es_NI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_NI.json -------------------------------------------------------------------------------- /l10n/es_PA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_PA.js -------------------------------------------------------------------------------- /l10n/es_PA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_PA.json -------------------------------------------------------------------------------- /l10n/es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_PE.js -------------------------------------------------------------------------------- /l10n/es_PE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_PE.json -------------------------------------------------------------------------------- /l10n/es_PR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_PR.js -------------------------------------------------------------------------------- /l10n/es_PR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_PR.json -------------------------------------------------------------------------------- /l10n/es_PY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_PY.js -------------------------------------------------------------------------------- /l10n/es_PY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_PY.json -------------------------------------------------------------------------------- /l10n/es_SV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_SV.js -------------------------------------------------------------------------------- /l10n/es_SV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_SV.json -------------------------------------------------------------------------------- /l10n/es_UY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_UY.js -------------------------------------------------------------------------------- /l10n/es_UY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/es_UY.json -------------------------------------------------------------------------------- /l10n/et_EE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/et_EE.js -------------------------------------------------------------------------------- /l10n/et_EE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/et_EE.json -------------------------------------------------------------------------------- /l10n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/eu.js -------------------------------------------------------------------------------- /l10n/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/eu.json -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/fa.js -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/fa.json -------------------------------------------------------------------------------- /l10n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/fi.js -------------------------------------------------------------------------------- /l10n/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/fi.json -------------------------------------------------------------------------------- /l10n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/fr.js -------------------------------------------------------------------------------- /l10n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/fr.json -------------------------------------------------------------------------------- /l10n/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ga.js -------------------------------------------------------------------------------- /l10n/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ga.json -------------------------------------------------------------------------------- /l10n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/gl.js -------------------------------------------------------------------------------- /l10n/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/gl.json -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/he.js -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/he.json -------------------------------------------------------------------------------- /l10n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/hr.js -------------------------------------------------------------------------------- /l10n/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/hr.json -------------------------------------------------------------------------------- /l10n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/hu.js -------------------------------------------------------------------------------- /l10n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/hu.json -------------------------------------------------------------------------------- /l10n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/id.js -------------------------------------------------------------------------------- /l10n/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/id.json -------------------------------------------------------------------------------- /l10n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/is.js -------------------------------------------------------------------------------- /l10n/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/is.json -------------------------------------------------------------------------------- /l10n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/it.js -------------------------------------------------------------------------------- /l10n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/it.json -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ja.js -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ja.json -------------------------------------------------------------------------------- /l10n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ka.js -------------------------------------------------------------------------------- /l10n/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ka.json -------------------------------------------------------------------------------- /l10n/ka_GE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ka_GE.js -------------------------------------------------------------------------------- /l10n/ka_GE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ka_GE.json -------------------------------------------------------------------------------- /l10n/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/kab.js -------------------------------------------------------------------------------- /l10n/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/kab.json -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ko.js -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ko.json -------------------------------------------------------------------------------- /l10n/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/lo.js -------------------------------------------------------------------------------- /l10n/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/lo.json -------------------------------------------------------------------------------- /l10n/lt_LT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/lt_LT.js -------------------------------------------------------------------------------- /l10n/lt_LT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/lt_LT.json -------------------------------------------------------------------------------- /l10n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/lv.js -------------------------------------------------------------------------------- /l10n/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/lv.json -------------------------------------------------------------------------------- /l10n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/mk.js -------------------------------------------------------------------------------- /l10n/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/mk.json -------------------------------------------------------------------------------- /l10n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/nb.js -------------------------------------------------------------------------------- /l10n/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/nb.json -------------------------------------------------------------------------------- /l10n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/nl.js -------------------------------------------------------------------------------- /l10n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/nl.json -------------------------------------------------------------------------------- /l10n/nn_NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/nn_NO.js -------------------------------------------------------------------------------- /l10n/nn_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/nn_NO.json -------------------------------------------------------------------------------- /l10n/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/oc.js -------------------------------------------------------------------------------- /l10n/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/oc.json -------------------------------------------------------------------------------- /l10n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/pl.js -------------------------------------------------------------------------------- /l10n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/pl.json -------------------------------------------------------------------------------- /l10n/pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/pt_BR.js -------------------------------------------------------------------------------- /l10n/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/pt_BR.json -------------------------------------------------------------------------------- /l10n/pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/pt_PT.js -------------------------------------------------------------------------------- /l10n/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/pt_PT.json -------------------------------------------------------------------------------- /l10n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ro.js -------------------------------------------------------------------------------- /l10n/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ro.json -------------------------------------------------------------------------------- /l10n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ru.js -------------------------------------------------------------------------------- /l10n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ru.json -------------------------------------------------------------------------------- /l10n/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/sc.js -------------------------------------------------------------------------------- /l10n/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/sc.json -------------------------------------------------------------------------------- /l10n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/sk.js -------------------------------------------------------------------------------- /l10n/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/sk.json -------------------------------------------------------------------------------- /l10n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/sl.js -------------------------------------------------------------------------------- /l10n/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/sl.json -------------------------------------------------------------------------------- /l10n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/sq.js -------------------------------------------------------------------------------- /l10n/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/sq.json -------------------------------------------------------------------------------- /l10n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/sr.js -------------------------------------------------------------------------------- /l10n/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/sr.json -------------------------------------------------------------------------------- /l10n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/sv.js -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/sv.json -------------------------------------------------------------------------------- /l10n/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/sw.js -------------------------------------------------------------------------------- /l10n/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/sw.json -------------------------------------------------------------------------------- /l10n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/th.js -------------------------------------------------------------------------------- /l10n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/th.json -------------------------------------------------------------------------------- /l10n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/tr.js -------------------------------------------------------------------------------- /l10n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/tr.json -------------------------------------------------------------------------------- /l10n/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ug.js -------------------------------------------------------------------------------- /l10n/ug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/ug.json -------------------------------------------------------------------------------- /l10n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/uk.js -------------------------------------------------------------------------------- /l10n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/uk.json -------------------------------------------------------------------------------- /l10n/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/uz.js -------------------------------------------------------------------------------- /l10n/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/uz.json -------------------------------------------------------------------------------- /l10n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/vi.js -------------------------------------------------------------------------------- /l10n/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/vi.json -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/zh_CN.js -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/zh_CN.json -------------------------------------------------------------------------------- /l10n/zh_HK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/zh_HK.js -------------------------------------------------------------------------------- /l10n/zh_HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/zh_HK.json -------------------------------------------------------------------------------- /l10n/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/zh_TW.js -------------------------------------------------------------------------------- /l10n/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/l10n/zh_TW.json -------------------------------------------------------------------------------- /lib/AppInfo/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/AppInfo/Application.php -------------------------------------------------------------------------------- /lib/BackgroundJob/CheckGithubNotificationsJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/BackgroundJob/CheckGithubNotificationsJob.php -------------------------------------------------------------------------------- /lib/Controller/ConfigController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Controller/ConfigController.php -------------------------------------------------------------------------------- /lib/Controller/GithubAPIController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Controller/GithubAPIController.php -------------------------------------------------------------------------------- /lib/Dashboard/GithubWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Dashboard/GithubWidget.php -------------------------------------------------------------------------------- /lib/Listener/ContentSecurityPolicyListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Listener/ContentSecurityPolicyListener.php -------------------------------------------------------------------------------- /lib/Listener/GithubReferenceListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Listener/GithubReferenceListener.php -------------------------------------------------------------------------------- /lib/Migration/Version030010Date20241002015812.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Migration/Version030010Date20241002015812.php -------------------------------------------------------------------------------- /lib/Notification/GitHubNotifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Notification/GitHubNotifier.php -------------------------------------------------------------------------------- /lib/Reference/GithubCodeReferenceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Reference/GithubCodeReferenceProvider.php -------------------------------------------------------------------------------- /lib/Reference/GithubIssuePrReferenceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Reference/GithubIssuePrReferenceProvider.php -------------------------------------------------------------------------------- /lib/Search/GithubSearchIssuesProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Search/GithubSearchIssuesProvider.php -------------------------------------------------------------------------------- /lib/Search/GithubSearchReposProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Search/GithubSearchReposProvider.php -------------------------------------------------------------------------------- /lib/Service/GithubAPIService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Service/GithubAPIService.php -------------------------------------------------------------------------------- /lib/Service/SecretService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Service/SecretService.php -------------------------------------------------------------------------------- /lib/Settings/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Settings/Admin.php -------------------------------------------------------------------------------- /lib/Settings/AdminSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Settings/AdminSection.php -------------------------------------------------------------------------------- /lib/Settings/Personal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Settings/Personal.php -------------------------------------------------------------------------------- /lib/Settings/PersonalSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/lib/Settings/PersonalSection.php -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/makefile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/package.json -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/adminSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/adminSettings.js -------------------------------------------------------------------------------- /src/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/bootstrap.js -------------------------------------------------------------------------------- /src/components/AdminSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/AdminSettings.vue -------------------------------------------------------------------------------- /src/components/CommentReactions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/CommentReactions.vue -------------------------------------------------------------------------------- /src/components/PersonalSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/PersonalSettings.vue -------------------------------------------------------------------------------- /src/components/UserPopover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/UserPopover.vue -------------------------------------------------------------------------------- /src/components/icons/CommentIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/icons/CommentIcon.vue -------------------------------------------------------------------------------- /src/components/icons/CommitIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/icons/CommitIcon.vue -------------------------------------------------------------------------------- /src/components/icons/GithubIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/icons/GithubIcon.vue -------------------------------------------------------------------------------- /src/components/icons/IssueClosedIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/icons/IssueClosedIcon.vue -------------------------------------------------------------------------------- /src/components/icons/IssueClosedNotPlannedIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/icons/IssueClosedNotPlannedIcon.vue -------------------------------------------------------------------------------- /src/components/icons/IssueOpenIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/icons/IssueOpenIcon.vue -------------------------------------------------------------------------------- /src/components/icons/LocationIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/icons/LocationIcon.vue -------------------------------------------------------------------------------- /src/components/icons/MilestoneIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/icons/MilestoneIcon.vue -------------------------------------------------------------------------------- /src/components/icons/PrClosedIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/icons/PrClosedIcon.vue -------------------------------------------------------------------------------- /src/components/icons/PrMergedIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/icons/PrMergedIcon.vue -------------------------------------------------------------------------------- /src/components/icons/PrOpenDraftIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/icons/PrOpenDraftIcon.vue -------------------------------------------------------------------------------- /src/components/icons/PrOpenIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/icons/PrOpenIcon.vue -------------------------------------------------------------------------------- /src/components/icons/RepositoryIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/icons/RepositoryIcon.vue -------------------------------------------------------------------------------- /src/components/icons/RocketIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/components/icons/RocketIcon.vue -------------------------------------------------------------------------------- /src/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/dashboard.js -------------------------------------------------------------------------------- /src/personalSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/personalSettings.js -------------------------------------------------------------------------------- /src/popupSuccess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/popupSuccess.js -------------------------------------------------------------------------------- /src/reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/reference.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/utils.js -------------------------------------------------------------------------------- /src/views/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/views/Dashboard.vue -------------------------------------------------------------------------------- /src/views/GithubCodePermalinkReferenceWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/views/GithubCodePermalinkReferenceWidget.vue -------------------------------------------------------------------------------- /src/views/GithubIssuePrReferenceWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/src/views/GithubIssuePrReferenceWidget.vue -------------------------------------------------------------------------------- /stylelint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/stylelint.config.cjs -------------------------------------------------------------------------------- /templates/adminSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/templates/adminSettings.php -------------------------------------------------------------------------------- /templates/personalSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/templates/personalSettings.php -------------------------------------------------------------------------------- /templates/popupSuccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/templates/popupSuccess.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /tests/psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/tests/psalm-baseline.xml -------------------------------------------------------------------------------- /tests/unit/Controller/GithubAPIControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/tests/unit/Controller/GithubAPIControllerTest.php -------------------------------------------------------------------------------- /tests/unit/Controller/data/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/tests/unit/Controller/data/avatar.jpg -------------------------------------------------------------------------------- /tests/unit/Controller/data/issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/tests/unit/Controller/data/issue.json -------------------------------------------------------------------------------- /tests/unit/Controller/data/issue_comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/tests/unit/Controller/data/issue_comment.json -------------------------------------------------------------------------------- /tests/unit/Controller/data/issue_comment_reactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/tests/unit/Controller/data/issue_comment_reactions.json -------------------------------------------------------------------------------- /tests/unit/Controller/data/issue_reactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/tests/unit/Controller/data/issue_reactions.json -------------------------------------------------------------------------------- /tests/unit/Controller/data/notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/tests/unit/Controller/data/notification.json -------------------------------------------------------------------------------- /tests/unit/Controller/data/pr_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/tests/unit/Controller/data/pr_info.json -------------------------------------------------------------------------------- /tests/unit/Controller/data/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/tests/unit/Controller/data/users.json -------------------------------------------------------------------------------- /tests/unit/Controller/data/users_contextual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/tests/unit/Controller/data/users_contextual.json -------------------------------------------------------------------------------- /tests/unit/Service/GithubAPIServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/tests/unit/Service/GithubAPIServiceTest.php -------------------------------------------------------------------------------- /vendor-bin/php-cs-fixer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/vendor-bin/php-cs-fixer/composer.json -------------------------------------------------------------------------------- /vendor-bin/php-cs-fixer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/vendor-bin/php-cs-fixer/composer.lock -------------------------------------------------------------------------------- /vendor-bin/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/vendor-bin/phpunit/composer.json -------------------------------------------------------------------------------- /vendor-bin/phpunit/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/vendor-bin/phpunit/composer.lock -------------------------------------------------------------------------------- /vendor-bin/psalm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/vendor-bin/psalm/composer.json -------------------------------------------------------------------------------- /vendor-bin/psalm/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/vendor-bin/psalm/composer.lock -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/vite.config.ts -------------------------------------------------------------------------------- /webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_github/HEAD/webpack.js --------------------------------------------------------------------------------