chore: add translate function to email subject in digest frecuency (backport #38474) (#38487)

chore: add translate function to email subject in digest frecuency (#38474)

chore: add translate function to email subject in digest frecuency
(cherry picked from commit b24e28953b6e085705630e2d8474492777732a9e)

Co-authored-by: Ernesto Ruiz <eruiz@wbapps.com>
This commit is contained in:
mergify[bot] 2023-12-01 12:43:37 +05:30 committed by GitHub
parent 8819d6c173
commit 9cdbd33e40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,7 +123,7 @@ class EmailDigest(Document):
if msg_for_this_recipient and row.recipient in valid_users:
frappe.sendmail(
recipients=row.recipient,
subject=_("{0} Digest").format(self.frequency),
subject=_("{0} Digest").format(_(self.frequency)),
message=msg_for_this_recipient,
reference_doctype=self.doctype,
reference_name=self.name,