We create a package i18n to manage the translations of the project. It help us to extract the translations from the frontend to be deployed to crowdin. It also help us to format the translations from crowdin to be used by the frontend apps.
82 lines
817 B
Plaintext
82 lines
817 B
Plaintext
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
.DS_Store
|
|
.next/
|
|
|
|
# Translations # Translations
|
|
*.pot
|
|
|
|
# Environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
env.d/development/*
|
|
!env.d/development/*.dist
|
|
env.d/terraform
|
|
|
|
# npm
|
|
node_modules
|
|
|
|
# Mails
|
|
src/backend/core/templates/mail/
|
|
|
|
# Typescript client
|
|
src/frontend/tsclient
|
|
|
|
# Swagger
|
|
**/swagger.json
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Terraform
|
|
.terraform
|
|
*.tfstate
|
|
*.tfstate.backup
|
|
|
|
# Test & lint
|
|
.coverage
|
|
.pylint.d
|
|
.pytest_cache
|
|
db.sqlite3
|
|
.mypy_cache
|
|
|
|
# Site media
|
|
/data/
|
|
|
|
# IDEs
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
.devcontainer/
|