https://github.com/etherbeing/django_translator
Utility for automatically translate dynamic text in django and also allow to manually edit those translations ... Please read README before use it.
https://github.com/etherbeing/django_translator
Last synced: 3 days ago
JSON representation
Utility for automatically translate dynamic text in django and also allow to manually edit those translations ... Please read README before use it.
- Host: GitHub
- URL: https://github.com/etherbeing/django_translator
- Owner: etherbeing
- Created: 2022-07-15T15:43:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-15T15:44:52.000Z (almost 4 years ago)
- Last Synced: 2025-04-27T05:33:24.859Z (about 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.srt
Awesome Lists containing this project
README
## Django Translator
This is an automatic translator for django projects... you can update your translations manually later...
This project still under development please do not utilize with text that is constantly updated cause this may cause
a rapidly growth on the database and a possible DoS for your backend.. Only use this in text that is directly controlled by
moderators and trusted people, never for visitants or clients..
## Translator Engine
We use google translator api for translations
## Install
* Not yet in pip
```
pip3 install django-translator
```
# How to use
In settings.py add django_translator to installed apps
NOTICE: This package is intended to be used with locale so enable localization for your project before use it
```sh
./manage.py migrate
```