I just want a few languages, how can I hide or disable the ones I don't want?
Asked
Active
Viewed 377 times
1 Answers
0
Just define in your settings.py file languages that you want to be enabled:
LANGUAGES = (
('de', _("German")),
('en', _("English")),
)

Martin Taleski
- 6,033
- 10
- 40
- 78

GwynBleidD
- 20,081
- 5
- 46
- 77
-
Thanks! Just figured that out myself! – SOF.E Feb 21 '15 at 22:20