From 2fc1209d98cc3f8a9208b7f39db3b1a9e54a81d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Mart=C3=ADn?= Date: Sun, 19 Jan 2014 19:03:37 +0100 Subject: [PATCH] Fix #11 Include the spanish translations to the pypi egg, and improvements in the readme file --- CHANGES.rst | 8 ++++++++ MANIFEST.in | 2 +- README.rst | 37 ++++++++++++++++++++----------------- 3 files changed, 29 insertions(+), 18 deletions(-) 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 ===========