mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-07 07:02:54 +00:00
fix: transalations
This commit is contained in:
@@ -697,7 +697,7 @@ def record_assigned_users_on_failure(doc):
|
|||||||
if assigned_users:
|
if assigned_users:
|
||||||
from frappe.utils import get_fullname
|
from frappe.utils import get_fullname
|
||||||
assigned_users = ', '.join((get_fullname(user) for user in assigned_users))
|
assigned_users = ', '.join((get_fullname(user) for user in assigned_users))
|
||||||
message = _(f'First Response SLA Failed by {assigned_users}')
|
message = _('First Response SLA Failed by {}').format(assigned_users)
|
||||||
doc.add_comment(
|
doc.add_comment(
|
||||||
comment_type='Assigned',
|
comment_type='Assigned',
|
||||||
text=message
|
text=message
|
||||||
|
|||||||
Reference in New Issue
Block a user