diff --git currency_api/currency_api.install currency_api/currency_api.install
index 2cf817d..a8ae5d9 100644
--- currency_api/currency_api.install
+++ currency_api/currency_api.install
@@ -22,31 +22,31 @@ function currency_api_install() {
  */
 function currency_api_schema() {
   $schema['currencyapi'] = array(
-    'description' => t('Table to cache currency rates that have been looked up by the Currency API module.'),
+    'description' => 'Table to cache currency rates that have been looked up by the Currency API module.',
     'fields'      => array(
       'currency_from' => array(
-        'description' => t('ISO 4217 3-character currency code for destination currency, as a character string.'),
+        'description' => 'ISO 4217 3-character currency code for destination currency, as a character string.',
         'type'        => 'varchar',
         'length'      => 10,
         'not null'    => TRUE,
         'default'     => '',
       ),
       'currency_to'   => array(
-        'description' => t('ISO 4217 3-character currency code for destination currency, as a character string.'),
+        'description' => 'ISO 4217 3-character currency code for destination currency, as a character string.',
         'type'        => 'varchar',
         'length'      => 10,
         'not null'    => TRUE,
         'default'     => '',
       ),
       'rate'      => array(
-        'description' => t('Conversion rate, currency_to per currency_from, as a floating point number.'),
+        'description' => 'Conversion rate, currency_to per currency_from, as a floating point number.',
         'type'        => 'float',
         'size'        => 'normal',
         'not null'    => TRUE,
         'default'     => 0,
       ),
       'timestamp' => array(
-        'description' => t('The time that the conversion rate was created, or last edited by its author, as a Unix timestamp.'),
+        'description' => 'The time that the conversion rate was created, or last edited by its author, as a Unix timestamp.',
         'type'        => 'int',
         'not null'    => TRUE,
         'default'     => 0,
