From 4379c089f19c72b0810c6c9d64a6b511abb8823c Mon Sep 17 00:00:00 2001 From: Ahtisham Shahid Date: Tue, 25 Jul 2023 11:23:59 +0500 Subject: [PATCH] fix: updated disucssions notifications templates (#32819) --- openedx/core/djangoapps/notifications/base_notification.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openedx/core/djangoapps/notifications/base_notification.py b/openedx/core/djangoapps/notifications/base_notification.py index a2c72891f9..692f46c3a2 100644 --- a/openedx/core/djangoapps/notifications/base_notification.py +++ b/openedx/core/djangoapps/notifications/base_notification.py @@ -14,7 +14,7 @@ COURSE_NOTIFICATION_TYPES = { 'name': 'new_comment_on_response', 'is_core': True, 'info': 'Comment on response', - 'content_template': _('<{p}><{strong}>{replier_name} replied on your response in ' + 'content_template': _('<{p}><{strong}>{replier_name} commented on your response to the post ' '<{strong}>{post_title}'), 'content_context': { 'post_title': 'Post title', @@ -31,7 +31,7 @@ COURSE_NOTIFICATION_TYPES = { 'push': True, 'info': 'Comment on post', 'non_editable': ['web', 'email'], - 'content_template': _('<{p}><{strong}>{replier_name} replied on <{strong}>{author_name}' + 'content_template': _('<{p}><{strong}>{replier_name} commented on <{strong}>{author_name}\'s' ' response to your post <{strong}>{post_title}'), 'content_context': { 'post_title': 'Post title',