Hi I'm building a multi-lingual site in English and zh-TW (traditional 
chinese) . 
I configured it according to the docs, and the admin interface does show 
the fields for both languages. 

But I can't get the language selector to work. 
While the default selector shows the languages listed, selecting them still 
always result in English. 

My settings: 

LANGUAGE_CODE = "en"


# Supported languages
LANGUAGES = (
    ('en', _('English')),    

    ('zh-tw',_('Traditional Chinese')),    
)




USE_I18N = True
USE_L10N = True


----------------------------------- 

If I change my settings to: 

LANGUAGE_CODE = "zh-tw"


# Supported languages
LANGUAGES = (
    ('zh-tw',_('Traditional Chinese')),    
)


The Chinese pages will show properly, although the admin page interface 
becomes Chinese as well. 

I feel like I'm missing something obvious, please assist. 

Thanks


-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to