Index: panels/panels_mini/panels_mini.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/panels/panels_mini/Attic/panels_mini.module,v
retrieving revision 1.1.2.19
diff -u -r1.1.2.19 panels_mini.module
--- panels/panels_mini/panels_mini.module	24 Jan 2008 17:51:13 -0000	1.1.2.19
+++ panels/panels_mini/panels_mini.module	9 May 2008 16:25:36 -0000
@@ -350,13 +350,13 @@
     '#type' => 'textarea',
     '#title' => t('Panel mini code'),
     '#cols' => 60,
-    '#rows' => 6,
-    '#description' => t('Cut and paste the results of an Export Panel mini here.'),
+    '#rows' => 15,
+    '#description' => t('Cut and paste the results of an exported mini panel here.'),
   );
 
   $form['submit'] = array(
     '#type' => 'submit',
-    '#value' => t("Submit"),
+    '#value' => t('Import'),
   );
 
   $form['#redirect'] = NULL;
@@ -372,7 +372,7 @@
   ob_end_clean();
 
   if (isset($mini)) {
-    drupal_set_title(t('Import panel mini "@s"', array('@s' => $mini->title)));
+    drupal_set_title(t('Import mini panel "@s"', array('@s' => $mini->title)));
     $_SESSION['pm_import'] = $mini;
     $output = drupal_get_form('panels_mini_edit_form', $mini);
     print theme('page', $output);
Index: panels/panels_page/panels_page.admin.inc
===================================================================
RCS file: /cvs/drupal/contributions/modules/panels/panels_page/Attic/panels_page.admin.inc,v
retrieving revision 1.1.2.38
diff -u -r1.1.2.38 panels_page.admin.inc
--- panels/panels_page/panels_page.admin.inc	9 May 2008 13:55:33 -0000	1.1.2.38
+++ panels/panels_page/panels_page.admin.inc	9 May 2008 16:25:37 -0000
@@ -810,13 +810,13 @@
     '#type' => 'textarea',
     '#title' => t('Panel page code'),
     '#cols' => 60,
-    '#rows' => 6,
-    '#description' => t('Cut and paste the results of an Export Panel Page here.'),
+    '#rows' => 15,
+    '#description' => t('Cut and paste the results of an exported panel page here.'),
   );
 
   $form['submit'] = array(
     '#type' => 'submit',
-    '#value' => t("Submit"),
+    '#value' => t('Import'),
   );
 
   $form['#redirect'] = FALSE;
Index: panels/panels_views/panels_views.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/panels/panels_views/Attic/panels_views.module,v
retrieving revision 1.1.2.14
diff -u -r1.1.2.14 panels_views.module
--- panels/panels_views/panels_views.module	9 May 2008 06:50:43 -0000	1.1.2.14
+++ panels/panels_views/panels_views.module	9 May 2008 16:25:37 -0000
@@ -576,13 +576,13 @@
     '#type' => 'textarea',
     '#title' => t('Panel view code'),
     '#cols' => 60,
-    '#rows' => 6,
-    '#description' => t('Cut and paste the results of an Export panel view here.'),
+    '#rows' => 15,
+    '#description' => t('Cut and paste the results of an exported panel view here.'),
   );
 
   $form['submit'] = array(
     '#type' => 'submit',
-    '#value' => t("Submit"),
+    '#value' => t('Import'),
   );
 
   $form['#redirect'] = NULL;
@@ -611,7 +611,7 @@
     exit;
   }
   else {
-    drupal_set_message(t('Unable to get a panel view out of that import.'));
+    drupal_set_message(t('Unable to get a panel view out of that.'));
   }
 }
 
