equal
deleted
inserted
replaced
37 ugettext = lambda s:s |
37 ugettext = lambda s:s |
38 |
38 |
39 LANGUAGES = ( |
39 LANGUAGES = ( |
40 ('fr', ugettext('French')), |
40 ('fr', ugettext('French')), |
41 ('en', ugettext('English')), |
41 ('en', ugettext('English')), |
42 # ('de', ugettext('German')), |
42 ('it', ugettext('Italian')), |
43 # ('es', ugettext('Spanish')), |
43 ('de', ugettext('German')), |
|
44 ('es', ugettext('Spanish')), |
|
45 ('ja', ugettext('Japanese')), |
|
46 ('zh', ugettext('Chinese')), |
44 ) |
47 ) |
45 |
48 |
46 SITE_ID = 1 |
49 SITE_ID = 1 |
47 |
50 |
48 # If you set this to False, Django will make some optimizations so as not |
51 # If you set this to False, Django will make some optimizations so as not |