diff --git a/core/modules/comment/comment.admin.inc b/core/modules/comment/comment.admin.inc
old mode 100644
new mode 100755
index 488c2f9..069f351
--- a/core/modules/comment/comment.admin.inc
+++ b/core/modules/comment/comment.admin.inc
@@ -131,13 +131,13 @@ function comment_admin_overview($form, &$form_state, $arg) {
     );
     $links = array();
     $links['edit'] = array(
-      'title' => t('edit'),
+      'title' => t('Edit'),
       'href' => 'comment/' . $comment->id() . '/edit',
       'query' => $destination,
     );
     if (module_invoke('translation_entity', 'translate_access', $comment)) {
       $links['translate'] = array(
-        'title' => t('translate'),
+        'title' => t('Translate'),
         'href' => 'comment/' . $comment->id() . '/translations',
         'query' => $destination,
       );
diff --git a/core/modules/comment/comment.module b/core/modules/comment/comment.module
old mode 100644
new mode 100755
index b2d0190..78b3485
--- a/core/modules/comment/comment.module
+++ b/core/modules/comment/comment.module
@@ -917,28 +917,28 @@ function comment_links(Comment $comment, EntityInterface $node) {
   if ($node->comment == COMMENT_NODE_OPEN) {
     if ($comment->access('delete')) {
       $links['comment-delete'] = array(
-        'title' => t('delete'),
+        'title' => t('Delete'),
         'href' => "comment/{$comment->id()}/delete",
         'html' => TRUE,
       );
     }
     if ($comment->access('update')) {
         $links['comment-edit'] = array(
-          'title' => t('edit'),
+          'title' => t('Edit'),
           'href' => "comment/{$comment->id()}/edit",
           'html' => TRUE,
         );
     }
     if ($comment->access('create')) {
       $links['comment-reply'] = array(
-        'title' => t('reply'),
+        'title' => t('Reply'),
         'href' => "comment/reply/{$comment->nid->target_id}/{$comment->id()}",
         'html' => TRUE,
       );
     }
     if ($comment->status->value == COMMENT_NOT_PUBLISHED && $comment->access('approve')) {
       $links['comment-approve'] = array(
-        'title' => t('approve'),
+        'title' => t('Approve'),
         'href' => "comment/{$comment->id()}/approve",
         'html' => TRUE,
         'query' => array('token' => drupal_get_token("comment/{$comment->id()}/approve")),
@@ -953,7 +953,7 @@ function comment_links(Comment $comment, EntityInterface $node) {
   // Add translations link for translation-enabled comment bundles.
   if (module_exists('translation_entity') && translation_entity_translate_access($comment)) {
     $links['comment-translations'] = array(
-      'title' => t('translations'),
+      'title' => t('Translate'),
       'href' => 'comment/' . $comment->id() . '/translations',
       'html' => TRUE,
     );
