├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── add-a-new-project-to-transifex.md │ ├── bug_report.md │ └── feature_request.md ├── config.yml └── workflows │ ├── generated-pr.yml │ └── stale.yml └── README.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/i18n/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/add-a-new-project-to-transifex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/i18n/HEAD/.github/ISSUE_TEMPLATE/add-a-new-project-to-transifex.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/i18n/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/i18n/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/i18n/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/workflows/generated-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/i18n/HEAD/.github/workflows/generated-pr.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/i18n/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/i18n/HEAD/README.md --------------------------------------------------------------------------------