Files
AWatch-rus/.gitignore
T
qwen.ai[bot] dc422e2e2e Title: Add i18n module with Russian localization and validation tools
Key features implemented:
- New i18n module with JSON-based message catalogs for multi-language support
- Added Russian (ru-RU) and English (en-US) localization files with 100+ messages
- PowerShell module ActivityWatch.Windows.I18n.psm1 with fallback mechanism
- Node.js validation and coverage analysis scripts for locale management
- Package.json configuration with semantic versioning and build tools
- README_RU.md documentation with integration examples and best practices

The implementation provides comprehensive internationalization support with automated validation, versioning, and fallback capabilities for robust multilingual deployments.
2026-04-27 06:55:20 +00:00

51 lines
464 B
Plaintext

```
# Dependencies
node_modules/
package-lock.json
# Logs and temp files
*.log
*.tmp
# Environment
.env
.env.local
*.env.*
# Editors
.vscode/
.idea/
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
env/
venv/
.venv/
pip-log.txt
pip-delete-this-directory.txt
# Build directories
dist/
build/
*.egg-info/
# Coverage
.coverage
coverage/
htmlcov/
.nyc_output/
# Testing
.pytest_cache/
.mypy_cache/
.tox/
.hypothesis/
# OS generated files
.DS_Store
Thumbs.db
```