https://github.com/apkawa/django-modeltranslation-rosetta
Project for translate all fields like django-rosetta
https://github.com/apkawa/django-modeltranslation-rosetta
Last synced: 5 months ago
JSON representation
Project for translate all fields like django-rosetta
- Host: GitHub
- URL: https://github.com/apkawa/django-modeltranslation-rosetta
- Owner: Apkawa
- License: mit
- Created: 2017-01-19T15:01:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-01-10T12:43:45.000Z (over 1 year ago)
- Last Synced: 2025-01-10T13:28:04.156Z (over 1 year ago)
- Language: Python
- Size: 979 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/Apkawa/django-modeltranslation-rosetta)
[](https://codecov.io/gh/Apkawa/django-modeltranslation-rosetta)
[](https://pypi.python.org/pypi/django-modeltranslation-rosetta)
[](https://pypi.python.org/pypi/django-modeltranslation-rosetta)
[](LICENSE)
Project for interface translate fields like django-rosetta
# Installation
```bash
pip install django-modeltranslation-rosetta
```
or from git
```bash
pip install -e git+https://githib.com/Apkawa/django-modeltranslation-rosetta.git#egg=django-modeltranslation-rosetta
```
## Django and python version
| Python
Django | 3.8 | 3.9 | 3.10 | 3.11 | 3.12 | 3.13 |
|:-----------------:|-----|----|------|------|------|------|
| 4.2 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| 5.0 | ❌ | ❌ | ✅ | ✅ | ✅ | ✅ |
| 5.1 | ❌ | ❌ | ✅ | ✅ | ✅ | ✅ |
| 5.2 | ❌ | ❌ | ✅ | ✅ | ✅ | ✅ |
# Usage
Add `modeltranslation_rosetta` into `INSTALLED_APPS` after `modeltranslation`
settings.py
```python
INSTALLED_APPS = [
# ...
'modeltranslation',
'modeltranslation_rosetta',
# ...
]
```
Open `/admin/modeltranslation_rosetta/trans/`

