A Django package for managing translation files
Project description
# Mobetta
[![Build Status](https://travis-ci.org/maykinmedia/mobetta.svg?branch=master)](https://travis-ci.org/maykinmedia/mobetta)
[![codecov](https://codecov.io/gh/maykinmedia/mobetta/branch/develop/graph/badge.svg)](https://codecov.io/gh/maykinmedia/mobetta)
[![Lintly](https://lintly.com/gh/maykinmedia/mobetta/badge.svg)](https://lintly.com/gh/maykinmedia/mobetta/)
Mobetta is a reusable app to manage translation files in Django.
It's inspired on django-rosetta and sports extra features such as comments on
translations, improved stability and a couple of bugfixes. More features
are planned.
## Installation
Install with pip:
pip install mobetta
Next, hook up mobetta by adding it to installed apps:
```python
# settings.py
INSTALLED_APPS = [
...
'mobetta',
...
]
```
and add it to your root `urls.py`:
```python
# urls.py
from django.conf.urls import include, url
...
import mobetta.urls
urlpatterns = [
...
url(r'^mobetta/', include(mobetta.urls.urlpatterns, 'mobetta', 'mobetta')),
...
]
```
Finally, run `migrate` to create the database tables:
```bash
python manage.py migrate
```
## Usage
Mobetta needs to be aware of your translation files. To discover the files, use
the management command:
python manage.py locate_translation_files
## Notes ##
### How Django loads translation files ###
See the [django docs](https://docs.djangoproject.com/en/stable/topics/i18n/translation/#how-django-discovers-translations).
[![Build Status](https://travis-ci.org/maykinmedia/mobetta.svg?branch=master)](https://travis-ci.org/maykinmedia/mobetta)
[![codecov](https://codecov.io/gh/maykinmedia/mobetta/branch/develop/graph/badge.svg)](https://codecov.io/gh/maykinmedia/mobetta)
[![Lintly](https://lintly.com/gh/maykinmedia/mobetta/badge.svg)](https://lintly.com/gh/maykinmedia/mobetta/)
Mobetta is a reusable app to manage translation files in Django.
It's inspired on django-rosetta and sports extra features such as comments on
translations, improved stability and a couple of bugfixes. More features
are planned.
## Installation
Install with pip:
pip install mobetta
Next, hook up mobetta by adding it to installed apps:
```python
# settings.py
INSTALLED_APPS = [
...
'mobetta',
...
]
```
and add it to your root `urls.py`:
```python
# urls.py
from django.conf.urls import include, url
...
import mobetta.urls
urlpatterns = [
...
url(r'^mobetta/', include(mobetta.urls.urlpatterns, 'mobetta', 'mobetta')),
...
]
```
Finally, run `migrate` to create the database tables:
```bash
python manage.py migrate
```
## Usage
Mobetta needs to be aware of your translation files. To discover the files, use
the management command:
python manage.py locate_translation_files
## Notes ##
### How Django loads translation files ###
See the [django docs](https://docs.djangoproject.com/en/stable/topics/i18n/translation/#how-django-discovers-translations).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mobetta-0.1.5.tar.gz
(22.9 kB
view details)
File details
Details for the file mobetta-0.1.5.tar.gz
.
File metadata
- Download URL: mobetta-0.1.5.tar.gz
- Upload date:
- Size: 22.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72c91fb1ce0f05ff7b4f83920301ae250ad304ed986177fb5be7e806862b9f26 |
|
MD5 | 5f8ba2781b4a1d9cfe73c1810f004e13 |
|
BLAKE2b-256 | 3c8a3cc81ffd081c63b7001a80019505559e0b081b50f413d76258605f3f5ec6 |