diff --git amazon_examples/amazon_examples.features.node.inc amazon_examples/amazon_examples.features.node.inc
index c46de2a..24c0c49 100644
--- amazon_examples/amazon_examples.features.node.inc
+++ amazon_examples/amazon_examples.features.node.inc
@@ -12,7 +12,9 @@ function _amazon_examples_node_info() {
       'has_title' => '1',
       'title_label' => t('Title'),
       'has_body' => '0',
-      'body_label' => t(''),
+      'body_label' => '',
+      'min_word_count' => '0',
+      'help' => '',
     ),
   );
   return $items;
diff --git asin/asin.module asin/asin.module
index 987326e..3230870 100644
--- asin/asin.module
+++ asin/asin.module
@@ -65,7 +65,7 @@ function asin_field_settings($op, $field) {
 
       // Filter: Add a 'many to one' filter.
       $copy = $data[$table_alias][$field['field_name'] .'_asin'];
-      $copy['title'] = t('@label (!name) - Allowed values', array('@label' => t($field['widget']['label']), '!name' => $field['field_name']));
+      $copy['title'] = t('@label (!name) - Allowed values', array('@label' => $field['widget']['label'], '!name' => $field['field_name']));
       $copy['filter']['handler'] = 'views_handler_filter_many_to_one';
       unset($copy['field'], $copy['argument'], $copy['sort']);
       $data[$table_alias][$field['field_name'] .'_value_many_to_one'] = $copy;
@@ -100,7 +100,7 @@ function asin_field($op, &$node, $field, &$items, $teaser, $page) {
       foreach ($items as $delta => $item) {
         if (is_array($item)) {
           if (!empty($item['asin']) && empty($results[$item['asin']])) {
-            form_set_error($field['field_name'] .']['. $delta .'][asin', t('%name : No Amazon product with the ASIN "%id" could be located.', array('%name' => t($field['widget']['label']), '%id' => $item['asin'])));
+            form_set_error($field['field_name'] .']['. $delta .'][asin', t('%name : No Amazon product with the ASIN "%id" could be located.', array('%name' => $field['widget']['label'], '%id' => $item['asin'])));
           }
         }
       }
diff --git includes/amazon.views.inc includes/amazon.views.inc
index e972cd0..474aec8 100644
--- includes/amazon.views.inc
+++ includes/amazon.views.inc
@@ -230,8 +230,8 @@ function amazon_views_data() {
 
 function _amazon_make_simple_boolean_field(&$data, $table, $column, $title, $help = '') {
   $data[$table][$column] = array(
-    'title' => t($title), // The item it appears as on the UI,
-    'help' => t($help), // The help that appears on the UI,
+    'title' => $title, // The item it appears as on the UI,
+    'help' => $help, // The help that appears on the UI,
      // Information for displaying a title as a field
     'field' => array(
       'field' => $column, // the real field
@@ -246,8 +246,8 @@ function _amazon_make_simple_boolean_field(&$data, $table, $column, $title, $hel
 
 function _amazon_make_simple_text_field(&$data, $table, $column, $title, $help = '') {
   $data[$table][$column] = array(
-    'title' => t($title), // The item it appears as on the UI,
-    'help' => t($help), // The help that appears on the UI,
+    'title' => $title, // The item it appears as on the UI,
+    'help' => $help, // The help that appears on the UI,
      // Information for displaying a title as a field
     'field' => array(
       'field' => $column, // the real field
@@ -262,8 +262,8 @@ function _amazon_make_simple_text_field(&$data, $table, $column, $title, $help =
 
 function _amazon_make_simple_date_field(&$data, $table, $column, $title, $help = '') {
   $data[$table][$column] = array(
-    'title' => t($title), // The item it appears as on the UI,
-    'help' => t($help), // The help that appears on the UI,
+    'title' => $title, // The item it appears as on the UI,
+    'help' => $help, // The help that appears on the UI,
      // Information for displaying a title as a field
     'field' => array(
       'field' => $column, // the real field
@@ -278,8 +278,8 @@ function _amazon_make_simple_date_field(&$data, $table, $column, $title, $help =
 
 function _amazon_make_simple_number_field(&$data, $table, $column, $title, $help = '') {
   $data[$table][$column] = array(
-    'title' => t($title), // The item it appears as on the UI,
-    'help' => t($help), // The help that appears on the UI,
+    'title' => $title, // The item it appears as on the UI,
+    'help' => $help, // The help that appears on the UI,
      // Information for displaying a title as a field
     'field' => array(
       'field' => $column, // the real field
