diff --git a/modules/social_features/social_comment/social_comment.module b/modules/social_features/social_comment/social_comment.module
index 7d0be46..b7e39c6 100644
--- a/modules/social_features/social_comment/social_comment.module
+++ b/modules/social_features/social_comment/social_comment.module
@@ -26,7 +26,7 @@ use Drupal\Core\Entity\Display\EntityViewDisplayInterface;
  */
 function social_comment_form_comment_form_alter(&$form, FormStateInterface $form_state, $form_id) {
   // Change value of 'Save' button.
-  $form['actions']['submit']['#value'] = t('Comment');
+  $form['actions']['submit']['#value'] = t('Comment',array(),array('context' => 'Comment Button'));
   // Hide title of 'Comment' field.
   if (!empty($form['field_comment_body']['widget'][0]['value']['#title_display'])) {
     $form['field_comment_body']['widget'][0]['value']['#title_display'] = 'invisible';