diff --git a/hacked.details.inc b/hacked.details.inc
index 967a870..415b0a4 100644
--- a/hacked.details.inc
+++ b/hacked.details.inc
@@ -14,8 +14,10 @@ function hacked_reports_hacked_details($project) {
  * @ingroup themeable
  */
 function theme_hacked_detailed_report($variables) {
+  // Have a context for translation.
+  $translation_context = array('context' => 'Hacked');
   $project = $variables['project'];
-  $rows = array();  
+  $rows = array();
     foreach ($project['files'] as $file => $status) {
       switch ($status) {
         case HACKED_STATUS_UNHACKED:
@@ -37,7 +39,7 @@ function theme_hacked_detailed_report($variables) {
         case HACKED_STATUS_UNCHECKED:
         default:
           $class = 'warning';
-          $icon = theme('image', array('path' => 'misc/watchdog-warning.png', 'alt' => t('Unchecked'), 'title' => t('Unchecked')));
+          $icon = theme('image', array('path' => 'misc/watchdog-warning.png', 'alt' => t('Unchecked', array(), $translation_context), 'title' => t('Unchecked', array(), $translation_context)));
           break;
       }
 
@@ -57,7 +59,7 @@ function theme_hacked_detailed_report($variables) {
           break;
         case HACKED_STATUS_UNCHECKED:
         default:
-          $row .= '<span class="">' . t('Unchecked') . '</span>';
+          $row .= '<span class="">' . t('Unchecked', array(), $translation_context) . '</span>';
           break;
       }
       $row .= '<span class="icon">' . $icon . '</span>';
diff --git a/hacked.theme.inc b/hacked.theme.inc
index 4867951..1b8248e 100644
--- a/hacked.theme.inc
+++ b/hacked.theme.inc
@@ -7,6 +7,8 @@
  * @ingroup themeable
  */
 function theme_hacked_report($variables) {
+  // Have a context for translation.
+  $translation_context = array('context' => 'Hacked');
   $data = $variables['data'];
   $output = '';
 
@@ -22,7 +24,7 @@ function theme_hacked_report($variables) {
 
   $header = array();
   $rows = array();
-  
+
 
   foreach ($data as $project) {
     if (!isset($project['status'])) {
@@ -41,21 +43,21 @@ function theme_hacked_report($variables) {
       case HACKED_STATUS_UNCHECKED:
       default:
         $class = 'warning';
-        $icon = theme('image', array('path' => 'misc/watchdog-warning.png', 'alt' => t('Unchecked'), 'title' => t('Unchecked')));
+        $icon = theme('image', array('path' => 'misc/watchdog-warning.png', 'alt' => t('Unchecked', array(), $translation_context), 'title' => t('Unchecked', array(), $translation_context)));
         break;
     }
 
     $row = '<div class="version-status">';
     switch ($project['status']) {
       case HACKED_STATUS_UNHACKED:
-        $row .= t('Unchanged');
+        $row .= t('Unchanged', array(), $translation_context);
         break;
       case HACKED_STATUS_HACKED:
         $row .= '<span class="not-current">' . t('Changed!') . '</span>';
         break;
       case HACKED_STATUS_UNCHECKED:
       default:
-        $row .= '<span class="">' . t('Unchecked') . '</span>';
+        $row .= '<span class="">' . t('Unchecked', array(), $translation_context) . '</span>';
         break;
     }
     $row .= '<span class="icon">' . $icon . '</span>';
