You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
266 B
13 lines
266 B
|
1 month ago
|
from ...language import Language
|
||
|
|
|
||
|
|
|
||
|
|
class MultiLanguage(Language):
|
||
|
|
"""Language class to be used for models that support multiple languages.
|
||
|
|
This module allows models to specify their language ID as 'xx'.
|
||
|
|
"""
|
||
|
|
|
||
|
|
lang = "xx"
|
||
|
|
|
||
|
|
|
||
|
|
__all__ = ["MultiLanguage"]
|