Hello, I just make a satchmo shop. 3 languages.

But the currency make me stuck.

I just want the site change the currency when changing the language.

In satchmo settings.py, it is like

L10N_SETTINGS = {
        'currency_formats' : {
                'EURO' : {
                        'symbol': u'€ ',
                        'positive' : u"€ %(val)0.2f",
                        'negative': u"€ (%(val)0.2f)",
                        'decimal' : ','
                },
                'USD' : {
                        'symbol': u'$ ',
                        'positive' : u"$%(val)0.2f",
                        'negative': u"$(%(val)0.2f)",
                        'decimal' : ','
                },
        },
        'default_currency' : 'EURO',
        'show_admin_translations': True,
        'allow_translation_choice': True,
}

I do not really know how to do that..:(

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to