Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
154 views

What multinlingual database support for Django 1.3?

I am using Django for quite a while but each time I ask myself the same question again and again. Which multilingual database backend should I use ? I used django-multilingual on Django 1.1, ...
4
votes
3answers
381 views

Django i18n: Common causes for translations not appearing

I am making a multilingual Django website. I created a messages file, populated and compiled it. I checked the site (the admin in this case,) in my wanted language (Hebrew) and most phrases appear in ...
2
votes
1answer
411 views

django-multilingual: order drop down field by translated field

how do i order a the options of a form field by a translated field? models.py: class UserProfile(models.Model): ... country=models.ForeignKey('Country') class Country(models.Model): ...
1
vote
3answers
286 views

error in admin page when editing using django-multilingual-ng on django 1.3

am trying to switch my application to use multilingual-ng, unfortunutely though, there is very little documentation and FAQ's online. I hope someone would be able to tell what is going on with my ...
1
vote
2answers
443 views

Using multilingual and localeurl in django

Using django-multilingual and localeurl. Small sample of my main page view: def main(request): #View for http://www.mysite.com/ name = Dog.objects.all()[0].full_name #this is a translated field ...
1
vote
2answers
2k views

django-multilingual and switching between languages on template side

I am trying to use django-multilingual and setup it properly. But what I found is that everything is clear for django-multilingual except a template usage example. I just started to use django and I ...
0
votes
0answers
50 views

django-multilingual admin TabularInline form

I'm using django 1.1.1, django-multilingual 0.1.0 and python 2.5.2 because this are the project requirements. And I have: I have two classes in my models.py (classA and classB): ...
0
votes
3answers
139 views

Django multilingual - how to preview content from any language?

I'm using django-multilingual for a Django based website. When I define the __unicode__ function for a model to return this way: def __unicode__(self): return unicode(self.title) However my ...
0
votes
1answer
170 views

Which Django 1.2.x multilingual application to use?

There are a couple of different applications for internationalized content in Django. As of now I only have used http://code.google.com/p/django-multilingual/ in my production environments, but I ...
0
votes
1answer
139 views

django-multilingual-ng / Django 1.1.1 incompatibility?

I am getting "cannot import name connections" exception while trying to use django-multilingual-ng 0.1.20 with Django 1.1.1. The exception comes from the line 15 of query.py where it tries to: from ...
0
votes
2answers
143 views

Customizing the language-guessing algorithm in Django

I'm developing a multilingual Django website. It has two languages, English and Hebrew. I want the default language for every first-time visitor to be Hebrew, regardless of what his browser's ...
0
votes
3answers
269 views

Checking a visitor's geographical location in a Django app

I am making a multilingual Django website. I want the site to check from which country the user is accessing the website, and according to that decide which language to use. What would be a good tool ...