views:

205

answers:

2

Well, question is in title. Is it possible at all? I can use css to make links looks like flags, it's easy, but there is a text also (English, French, Deutsch, etc.) Well, I will be grateful fo any kind help.

+3  A: 

Using flags to represent languages is generally not a very good idea. As the W3C puts it:

Do not use flag icons to indicate languages.

Flags represent countries, not languages. Numerous countries use the same language as another country, and numerous countries have more than one official language. Flags don't map onto these permutations.

For more in-depth discussion, see e.g. http://www.cs.tut.fi/~jkorpela/flags.html.

RegDwight
It is reasonable notice, but so happened that it was not my idea and I need flags. In any case, thanks for the reply.
Gennadich
A: 

Well, I made that (suddenly somebody find is useful). You must change the file language_chooser.html as follows:

{% load cms_tags i18n %}
{% for language in languages %}
<a href="{% page_language_url language.0 %}"{% ifequal lang language.0 %} class="current"{% endifequal %}><img src="{{ MEDIA_URL }}[path to your flags images]{{ language.0 }}.gif" /></a>
{% endfor %}
Gennadich