diff --git a/term_merge.module b/term_merge.module
index 8ef92db..56d27b8 100644
--- a/term_merge.module
+++ b/term_merge.module
@@ -135,7 +135,7 @@ function term_merge_help($path, $arg) {
   switch ($path) {
     // Main module help for the Term Merge module.
     case 'admin/help#term_merge':
-      return '<p>' . t('Allows you to merge multiple terms into one and and at the same time update all fields referencing to the old ones.') . '</p>';
+      return '<p>' . t('Allows you to merge multiple terms into one and and at the same time update all fields referencing the old ones.') . '</p>';
       break;
   }
 }
@@ -263,7 +263,7 @@ function term_merge_action_form($context, &$form_state) {
   }
   else {
     $form['vocabulary_missing'] = array(
-      '#markup' => '<b>' . t('Oups, something does not seem to go right. Term merge module cannot determine within which vocabulary merge is about to happen. You might want to report it to the <a href="@url">Term Merge issue queue</a>.', array(
+      '#markup' => '<b>' . t('Oops, something did not seem to go right. Term merge module cannot determine within which vocabulary merge is about to happen. You might want to report it to the <a href="@url">Term Merge issue queue</a>.', array(
         '@url' => 'https://www.drupal.org/project/issues/term_merge',
       )) . '</b>',
     );
diff --git a/term_merge.pages.inc b/term_merge.pages.inc
index 52b48cf..ea95a1c 100644
--- a/term_merge.pages.inc
+++ b/term_merge.pages.inc
@@ -201,7 +201,7 @@ function term_merge_form($form, $form_state, $vocabulary = NULL, $term = NULL) {
   else {
     // We are at the confirmation step.
     $count = count($form_state['values']['term_branch']);
-    $question = format_plural($count, 'Are you sure want to merge 1 term?', 'Are you sure want to merge @count terms?');
+    $question = format_plural($count, 'Are you sure you want to merge 1 term?', 'Are you sure you want to merge @count terms?');
     $form = confirm_form($form, $question, 'admin/structure/taxonomy/' . $vocabulary->machine_name);
   }
 
