With django-hvad extension, if I am editing a translatable object in admin I have dozens of languages displayed there. Is it possible to keep just two (czech and english) and remove all the rest?
I have found out it depends on variable settings.LANGUAGES. I solved it by defining the variable in settings.py:
LANGUAGES = (
('cs', 'Czech'),
('en', 'English'),
)