Satchmoで通貨単位を¥にする

移転しました。

ソース

settings.py
-----
  :
L10N_SETTINGS = { 
  'currency_formats' : { 
     'JPN' : {'symbol': u'¥', 'positive' : u"¥%(val)d", 'negative': u"¥(%(val)d)",
               'decimal' : ','},
  },  
  'default_currency' : 'JPN',
  'show_admin_translations': False,
  'allow_translation_choice': False,
}
  :
-----