Browse Source

small change to wording for bulk loader INSERT/SELECT ONCE: it's once per constant set as compared to file.

Lacey Sanderson 12 years ago
parent
commit
3630fe5cfc
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tripal_bulk_loader/tripal_bulk_loader.admin.templates.inc

+ 2 - 2
tripal_bulk_loader/tripal_bulk_loader.admin.templates.inc

@@ -819,9 +819,9 @@ function tripal_bulk_loader_edit_template_record_form(&$form_state = NULL) {
     '#title' => 'Action to take when Loading Record',
     '#options' => array(
       'select' => 'SELECT: Don\'t insert this record: it\'s used to define a foreign key in another record',
-      'select_once' => 'SELECT ONCE: Select the record only once for the entire file.',
+      'select_once' => 'SELECT ONCE: Select the record only once for each constant set.',
       'insert' => 'INSERT: Insert the record',
-      'insert_once' => 'INSERT ONCE: Record will be inserted once for the entire file',
+      'insert_once' => 'INSERT ONCE: Record will be inserted once for each constant set. If the record is the same across multiple constant sets, make sure to select "SELECT if duplicate" as well.',
     ),
     '#default_value' => $mode
   );