diff -urp flag_orig/flag.actions.inc flag/flag.actions.inc
--- flag_orig/flag.actions.inc	2008-09-26 12:05:02.000000000 -0400
+++ flag/flag.actions.inc	2008-09-11 13:29:04.000000000 -0400
@@ -1,4 +1,11 @@
 <?php
+// $Id$
+
+/**
+ * @file
+ * Hooks for flag actions.
+ */
+
 /**
  * Implementation of hook_hook_info().
  */

diff -urp flag_orig/flag.module flag/flag.module
--- flag_orig/flag.module	2008-09-26 12:05:02.000000000 -0400
+++ flag/flag.module	2008-09-26 12:07:45.000000000 -0400
@@ -19,7 +19,7 @@ function flag_menu() {
     'page callback' => 'flag_admin_page',
     'access callback' => 'user_access',
     'access arguments' => array('administer flags'),
-    'description' => t('Configure flags for marking content with arbitary information (such as <em>offensive</em> or <em>bookmarked</em>).'),
+    'description' => 'Configure flags for marking content with arbitary information (such as <em>offensive</em> or <em>bookmarked</em>).',
     'type' => MENU_NORMAL_ITEM,
   );
   $items['admin/build/flags/edit'] = array(

diff -urp flag_orig/flag_actions.install flag/flag_actions.install
--- flag_orig/flag_actions.install	2008-09-26 12:05:02.000000000 -0400
+++ flag/flag_actions.install	2008-09-11 13:51:30.000000000 -0400
@@ -2,6 +2,11 @@
 // $Id: flag_actions.install,v 1.1.2.1 2008/09/05 17:38:06 quicksketch Exp $
 
 /**
+ * @file
+ * Flag actions install file.
+ */
+
+/**
  * Implementation of hook_install().
  */
 function flag_actions_install() {

diff -urp flag_orig/flag.install flag/flag.install
--- flag_orig/flag.install	2008-09-26 12:05:02.000000000 -0400
+++ flag/flag.install	2008-09-26 12:07:45.000000000 -0400
@@ -34,10 +34,10 @@ function flag_install() {
   }
 
   if ($success) {
-    drupal_set_message(t('Flag module installed tables successfully.'));
+    drupal_set_message(st('Flag module installed tables successfully.'));
   }
   else {
-    drupal_set_message(t('The installation of Flag module failed.'), 'error');
+    drupal_set_message(st('The installation of Flag module failed.'), 'error');
   }
 }
 
@@ -313,7 +313,7 @@ function flag_update_6000() {
     else {
       $ret[] = array(
         'success' => TRUE,
-        'query' => t('I\'ll be removing the following actions: @aids', array('@aids' => implode(', ', $aids))),
+        'query' => t("I'll be removing the following actions: @aids", array('@aids' => implode(', ', $aids))),
       );
     }
 
