smark-1 / django-easy-faq

a Django app to easily add FAQ into website with extremely little effort
MIT License
15 stars 9 forks source link

i18n F.A.Q. #26

Open frlan opened 1 month ago

frlan commented 1 month ago

It would be nice to have an option to have i18n/l10n FAQ options

So when having a multilanguage site, F.A.Q. needs to be done in e.g. en, de, ru, pt, …

smark-1 commented 1 month ago

It should be relatively simple to update the templates, views and admin to mark text as translatable.

However the actual models content might be a bit more complex to translate. Should each question and answer have a version of it in each language or maybe each language should have its own faq "instance" with its own questions/answers? Should this use django-modeltranslation for the model translations? Should it be an optional dependency?