I've created an application with a simple contact form. I need to display validation errors on Spanish, to solve that situation I change the LANGUAGE_CODE to 'es'. Everything works fine, however if I include an import to work with djangoforms (from google.appengine.ext.db) the errors are displayed ALWAYS in English. Any ideas????
Thanks! Here is the code: ... from django.conf import settings from google.appengine.ext import webapp from google.appengine.ext import db from google.appengine.ext.webapp import template from django import newforms as forms #from google.appengine.ext.db import djangoforms from google.appengine.api import mail # Set to Spanish the default language settings.LANGUAGE_CODE = 'es' ... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
