Index: aes.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/aes/aes.install,v
retrieving revision 1.1.2.1.2.1
diff -u -r1.1.2.1.2.1 aes.install
--- aes.install	12 Oct 2009 17:11:10 -0000	1.1.2.1.2.1
+++ aes.install	21 Jul 2010 15:07:35 -0000
@@ -2,20 +2,20 @@
 // $Id: aes.install,v 1.1.2.1.2.1 2009/10/12 17:11:10 amc Exp $
 
 function aes_requirements($phase) {
- 
+
  $aes_implementations = aes_get_available_aes_implementations();
- 
+
  if ($aes_implementations['mcrypt'] === false && $aes_implementations['phpseclib'] === false) {
   $requirement_severity = REQUIREMENT_ERROR;
  }
  else {
   $requirement_severity = REQUIREMENT_OK;
  }
- 
+
  $requirements = array(
   array(
-  'title' => 'AES encryption implementation',
-  'description' => 'The AES encryption module requires at least one of two things to function: Either the PHP Mcrypt extension has to be installed on the web server. Or the PHP Secure Communications Library (phpseclib) needs to be installed in the AES directory. Check the README.txt for more information.',
+  'title' => t('AES encryption implementation'),
+  'description' => t('The AES encryption module requires at least one of two things to function: Either the PHP Mcrypt extension has to be installed on the web server. Or the PHP Secure Communications Library (phpseclib) needs to be installed in the AES directory. Check the README.txt for more information.'),
   'severity' => $requirement_severity,
   ),
  );

