mirror of
https://github.com/langgenius/dify.git
synced 2025-11-24 17:05:14 +00:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
23 lines
652 B
Python
23 lines
652 B
Python
from pydantic import BaseModel, Field, model_validator
|
|
|
|
|
|
class I18nObject(BaseModel):
|
|
"""
|
|
Model class for i18n object.
|
|
"""
|
|
|
|
en_US: str
|
|
zh_Hans: str | None = Field(default=None)
|
|
pt_BR: str | None = Field(default=None)
|
|
ja_JP: str | None = Field(default=None)
|
|
|
|
@model_validator(mode="after")
|
|
def _populate_missing_locales(self):
|
|
self.zh_Hans = self.zh_Hans or self.en_US
|
|
self.pt_BR = self.pt_BR or self.en_US
|
|
self.ja_JP = self.ja_JP or self.en_US
|
|
return self
|
|
|
|
def to_dict(self):
|
|
return {"zh_Hans": self.zh_Hans, "en_US": self.en_US, "pt_BR": self.pt_BR, "ja_JP": self.ja_JP}
|