mirror of
https://github.com/SectorLabs/django-localized-fields.git
synced 2025-12-13 15:22:25 +03:00
Move LocalizedValue and add get_language_codes
This commit is contained in:
21
localized_fields/util.py
Normal file
21
localized_fields/util.py
Normal file
@@ -0,0 +1,21 @@
|
||||
from typing import List
|
||||
|
||||
from django.conf import settings
|
||||
|
||||
|
||||
def get_language_codes() -> List[str]:
|
||||
"""Gets a list of all available language codes.
|
||||
|
||||
This looks at your project's settings.LANGUAGES
|
||||
and returns a flat list of the configured
|
||||
language codes.
|
||||
|
||||
Arguments:
|
||||
A flat list of all availble language codes
|
||||
in your project.
|
||||
"""
|
||||
|
||||
return [
|
||||
lang_code
|
||||
for lang_code, _ in settings.LANGUAGES
|
||||
]
|
||||
Reference in New Issue
Block a user