Fix #11 Include the spanish translations to the pypi egg, and improvements in the readme file

This commit is contained in:
Pablo Martín 2014-01-19 19:03:37 +01:00
parent d495bba302
commit 2fc1209d98
3 changed files with 29 additions and 18 deletions

View File

@ -1,3 +1,11 @@
0.1.2 (2014-??-??)
------------------
* Include the spanish translations to the pypi egg
* Improvements in the readme file
* Thanks to:
* `StillNewb <https://github.com/StillNewb>`_
0.1.1 (2013-12-04)
------------------
* Move the multiselectfield app to parent folder

View File

@ -1,5 +1,5 @@
include README.rst
include CHANGES.rst
include COPYING.LGPLv3
include *.py
include multiselectfield/locale/*/LC_MESSAGES/*.*
prune example/

View File

@ -20,23 +20,6 @@ This egg is inspired by this `snippet <http://djangosnippets.org/snippets/1200/>
Installation
============
In your settings.py
-------------------
::
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
#.....................#
'multiselectfield',
)
In your models.py
-----------------
@ -69,6 +52,26 @@ In your models.py
max_length=3)
In your settings.py
-------------------
Only you need it, if you want the translation of django-multiselectfield
::
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
#.....................#
'multiselectfield',
)
Development
===========