data_models: refactor

This commit is contained in:
Sina Atalay 2024-05-19 13:54:38 +03:00
parent 6a44febecf
commit 658ea3fd47
1 changed files with 4 additions and 2 deletions

View File

@ -1067,10 +1067,12 @@ class LocaleCatalog(RenderCVBaseModel):
"month", "months", "year", "years", "present", "abbreviations_for_months", "to" "month", "months", "year", "years", "present", "abbreviations_for_months", "to"
) )
@classmethod @classmethod
def check_translations(cls, value: str, info: pydantic.ValidationInfo) -> str: def update_translations(cls, value: str, info: pydantic.ValidationInfo) -> str:
"""Check if the translations are provided correctly.""" """Update the `locale_catalog` dictionary with the provided translations."""
if value: if value:
locale_catalog[info.field_name] = value locale_catalog[info.field_name] = value
return value
# ====================================================================================== # ======================================================================================