diff --git a/CHANGES.rst b/CHANGES.rst index b23fd6b..7f29b53 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,11 @@ +0.1.2 (2014-??-??) +------------------ + +* Include the spanish translations to the pypi egg +* Improvements in the readme file +* Thanks to: + * `StillNewb `_ + 0.1.1 (2013-12-04) ------------------ * Move the multiselectfield app to parent folder diff --git a/MANIFEST.in b/MANIFEST.in index b7e5eda..3086e0d 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,5 @@ include README.rst include CHANGES.rst include COPYING.LGPLv3 -include *.py +include multiselectfield/locale/*/LC_MESSAGES/*.* prune example/ \ No newline at end of file diff --git a/README.rst b/README.rst index 0b80f65..b0d6f22 100644 --- a/README.rst +++ b/README.rst @@ -20,23 +20,6 @@ This egg is inspired by this `snippet 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 ===========