danielvdp
danielvdp
This PR adds customizable labels to the TranslationModelForm as Meta options. Fixes: https://github.com/zostera/django-modeltrans/issues/70
At the moment labels of fields are hard coded to include the language code and translation / default language in brackets. By including a customizable translatable string in Meta options...
LANGUAGE_OPTIONS = ["all", "browser", "fallback"] "all" option is added so the user can add all system language in one go.
Idea is to add `fallback_readonly` option to Meta options and kwargs so that any form fields of the fallback language are set to read only. This is useful if translators...