Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 888 Bytes

glossary.rst

File metadata and controls

30 lines (22 loc) · 888 Bytes

Glossary

Shared Model

The part of your model which holds the untranslated fields. Internally this is a separated model to your Translations Model as well as it's own database table.

Translations Model

The part of your model which holds the translated fields. Internally this is a (autogenerated) separate model with a ForeignKey to your Shared Model.

Shared Fields

A field which is not translated, thus shared between the languages.

Translated Fields

A field which is translatable on a model.

Normal Model

A Django model that does not have Translated Fields.

Translated Model

A Django model that subclasses hvad.models.TranslatableModel.