Application that provides EDItEUR Thema categories, and translations for the headers.
Project description
A Django application that provides EDItEUR Thema categories. It supplies translation to all languages EDItEUR supports, so if you are using Django’s internationalization in your project, you will also get translation.
Requirements
This application requires:
django
mock
polib
xlrd
Installation
Install the application from Pypi:
$ pip install django-thema
Add the application to your Django project:
INSTALLED_APPS = [ ... 'thema', ... ]
Migrate the application
$ ./manage.py migrate thema
You should populate the model with the data in EDItEUR database, for this use the command populate_thema_categories
$ ./manage.py populate_thema_categories
Also, please make sure the tests passed smoothly
$ ./manage.py test thema
If any test fails, then you could end up with missing data in your database or malfunction of the application.
How it works
django-thema offers a model ThemaCategory, each instance is a Thema category.
...
>>> from thema.models import ThemaCategory
>>> thema_aba = ThemaCategory.objects.get(code='ABA')
>>> thema_aba.header
'Theory of art'
...
Getting translation:
...
>>> from django.utils.translation import activate
>>> activate('es')
>>> thema_aba.local_header
'Teoría del arte'
>>> activate('da')
>>> thema_aba.local_header
'Kunstteori'
...
Note: the translation will work only if you have enabled Django’s internationalization in your project.
Getting the parent category:
...
>>> thema_aba.parent
<ThemaCategory: AB>
...
Supported languages
The application supports the languages covered by EDItEUR:
Arabic
Danish
English
Spanish
French
German
Hungarian
Italian
Japanese
Lithuanian
Norwegian
Polish
Portuguese
Swedish
Turkish
We don’t do any translation, we just use the data provided by EDItEUR, so if you find a missing translation or a translation error, please contact EDItEUR directly.
Maintenance
To submit bugs, feature requests, submit patches, please use the official repository.
Copyright and licensing information
BSD License 2.0, 3-clause license.
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
File details
Details for the file django-thema-1.2.8.tar.gz
.
File metadata
- Download URL: django-thema-1.2.8.tar.gz
- Upload date:
- Size: 20.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8618b80f84b8a538255b9bb907810f81a85c2c43eb7d47c723c06b49ae5a4b59 |
|
MD5 | 69090f8a7e261eb0335d15b244e03593 |
|
BLAKE2b-256 | 0af59b11dcac804ce2ad62a59057b8cba06d68a5b9da14a55791f79f84ba933c |