Index: wordpress_import.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/wordpress_import/wordpress_import.module,v
retrieving revision 1.1.2.14.2.12.2.4
diff -u -p -r1.1.2.14.2.12.2.4 wordpress_import.module
--- wordpress_import.module	2 Sep 2009 20:49:41 -0000	1.1.2.14.2.12.2.4
+++ wordpress_import.module	5 Sep 2009 11:17:51 -0000
@@ -51,7 +51,7 @@ function wordpress_import_menu() {
 
   $items['admin/content/wordpress_import'] = array(
     'title' => 'Wordpress import',
-    'description' => 'Import Wordpress WXR file',
+    'description' => t('Import Wordpress WXR file'),
     'page callback' => 'wordpress_import_home',
     'access callback' => 'user_access',
     'access callback' => TRUE,
@@ -105,7 +105,7 @@ function wordpress_import_form(&$form_st
       // Build form
       
       $form['informations'] = array(
-       '#value' => t('This module will import a WXR file generated by Wordpress (read the !link for more). You MUST make a backup copy of your Drupal Database before proceeding', array('!link' => l('documentation', 'http://codex.wordpress.org/Tools_Export_SubPanel')))
+       '#value' => t('This module will import a WXR file generated by Wordpress (read the <a href="@codex">documentation</a> for more). You MUST make a backup copy of your Drupal Database before proceeding.', array('@codex' => url('http://codex.wordpress.org/Tools_Export_SubPanel')))
       );
       $form['method'] = array(
         '#type' => 'radios',
@@ -162,7 +162,7 @@ function wordpress_import_form(&$form_st
     if ($enable_default_user_mapping) {
       $form['default_user_mapping'] = array(
         '#type' => 'select',
-        '#title' => 'Default user mapping',
+        '#title' => t('Default user mapping'),
         '#options' => wordpress_import_drupal_users_list(FALSE),
         '#description' => t('Choose how to map Wordpress users to Drupal users by default. If you choose a user name here, all posts will be assigned to this user. You can set a specific setting for each user by extending the user mapping list below.'),
       );
@@ -213,13 +213,13 @@ function wordpress_import_form(&$form_st
 
     $form['options']['blog_type'] = array(
       '#type' => 'select',
-      '#title' => 'Import posts in content type',
+      '#title' => t('Import posts in content type'),
       '#options' => $content_types,
       );
 
     $form['options']['alias'] = array(
       '#type' => 'checkbox',
-      '#title' => 'Create path aliases',
+      '#title' => t('Create path aliases'),
       '#description' => t('This option tries to preserve the path of the wordpress original posts. It is useful only if the url of your drupal site root is the same as the wordpress site (!root) and if clean urls are activated', array('!root' => $wordpress['link']))
     );
     break;
