perf: email i18n

pull/15875/head
Bai 2025-08-19 17:39:05 +08:00 committed by 老广
parent 8c0cd20b48
commit 9422aebc5e
1 changed files with 2 additions and 2 deletions

View File

@ -35,11 +35,11 @@ class EmailSettingSerializer(serializers.Serializer):
)
EMAIL_HOST_PASSWORD = EncryptedField(
max_length=1024, required=False, label=_("Password"),
help_text=_("Password to use for the email server. It is used in conjunction with `User` when authenticating to the email server")
help_text=_("Password to use for the email server. It is used in conjunction with `Account` when authenticating to the email server")
)
EMAIL_FROM = serializers.CharField(
max_length=128, allow_blank=True, required=False, label=_('Sender'),
help_text=_('Sender email address (default to using the `User`)')
help_text=_('Sender email address (default to using the `Account`)')
)
EMAIL_RECIPIENT = serializers.CharField(
max_length=128, allow_blank=True, required=False, label=_('Recipient'),