diff --git a/libraries/import/csv.php b/libraries/import/csv.php
index 170fb96bb..80a3d79f0 100644
--- a/libraries/import/csv.php
+++ b/libraries/import/csv.php
@@ -24,17 +24,17 @@ if (isset($plugin_list)) {
'options' => array(
array('type' => 'bool', 'name' => 'replace', 'text' => __('Replace table data with file')),
array('type' => 'bool', 'name' => 'ignore', 'text' => __('Ignore duplicate rows')),
- array('type' => 'text', 'name' => 'terminated', 'text' => __('Columns terminated by'), 'size' => 2, 'len' => 2),
- array('type' => 'text', 'name' => 'enclosed', 'text' => __('Columns enclosed by'), 'size' => 2, 'len' => 2),
- array('type' => 'text', 'name' => 'escaped', 'text' => __('Columns escaped by'), 'size' => 2, 'len' => 2),
- array('type' => 'text', 'name' => 'new_line', 'text' => __('Lines terminated by'), 'size' => 2),
+ array('type' => 'text', 'name' => 'terminated', 'text' => __('Columns terminated with:'), 'size' => 2, 'len' => 2),
+ array('type' => 'text', 'name' => 'enclosed', 'text' => __('Columns enclosed with:'), 'size' => 2, 'len' => 2),
+ array('type' => 'text', 'name' => 'escaped', 'text' => __('Columns escaped with:'), 'size' => 2, 'len' => 2),
+ array('type' => 'text', 'name' => 'new_line', 'text' => __('Lines terminated with:'), 'size' => 2),
),
'options_text' => __('Options'),
);
if ($plugin_param !== 'table') {
$plugin_list['csv']['options'][] =
- array('type' => 'bool', 'name' => 'col_names', 'text' => __('Column names in first row'));
+ array('type' => 'bool', 'name' => 'col_names', 'text' => __('The first line of the file contains the table column names (if this is unchecked, the first line will become part of the data)'));
} else {
$plugin_list['csv']['options'][] =
array('type' => 'text', 'name' => 'columns', 'text' => __('Column names'));
diff --git a/libraries/import/ods.php b/libraries/import/ods.php
index 395a8fc6d..0a1393bb9 100644
--- a/libraries/import/ods.php
+++ b/libraries/import/ods.php
@@ -22,10 +22,10 @@ if (isset($plugin_list)) {
'text' => __('Open Document Spreadsheet'),
'extension' => 'ods',
'options' => array(
- array('type' => 'bool', 'name' => 'col_names', 'text' => __('Column names in first row')),
+ array('type' => 'bool', 'name' => 'col_names', 'text' => __('The first line of the file contains the table column names (if this is unchecked, the first line will become part of the data)')),
array('type' => 'bool', 'name' => 'empty_rows', 'text' => __('Do not import empty rows')),
- array('type' => 'bool', 'name' => 'recognize_percentages', 'text' => __('Import percentages as proper decimals (12.00% to .12)')),
- array('type' => 'bool', 'name' => 'recognize_currency', 'text' => __('Import currencies ($5.00 to 5.00)')),
+ array('type' => 'bool', 'name' => 'recognize_percentages', 'text' => __('Import percentages as proper decimals (ex. 12.00% to .12)')),
+ array('type' => 'bool', 'name' => 'recognize_currency', 'text' => __('Import currencies (ex. $5.00 to 5.00)')),
),
'options_text' => __('Options'),
);
diff --git a/libraries/import/sql.php b/libraries/import/sql.php
index 0241d71a2..eafe2c0c6 100644
--- a/libraries/import/sql.php
+++ b/libraries/import/sql.php
@@ -29,7 +29,7 @@ if (isset($plugin_list)) {
array(
'type' => 'select',
'name' => 'compatibility',
- 'text' => __('SQL compatibility mode'),
+ 'text' => __('SQL compatibility mode:'),
'values' => $values,
'doc' => array(
'manual_MySQL_Database_Administration',
@@ -39,7 +39,7 @@ if (isset($plugin_list)) {
array(
'type' => 'bool',
'name' => 'no_auto_value_on_zero',
- 'text' => __('Do not use AUTO_INCREMENT for zero values'),
+ 'text' => __('Do not use AUTO_INCREMENT
for zero values'),
'doc' => array(
'manual_MySQL_Database_Administration',
'Server_SQL_mode',
diff --git a/libraries/import/xls.php b/libraries/import/xls.php
index ca4778f31..6b50cf7b0 100644
--- a/libraries/import/xls.php
+++ b/libraries/import/xls.php
@@ -21,7 +21,7 @@ if (isset($plugin_list)) {
'text' => __('Excel 97-2003 XLS Workbook'),
'extension' => 'xls',
'options' => array(
- array('type' => 'bool', 'name' => 'col_names', 'text' => __('Column names in first row')),
+ array('type' => 'bool', 'name' => 'col_names', 'text' => __('The first line of the file contains the table column names (if this is unchecked, the first line will become part of the data)')),
),
'options_text' => __('Options'),
);
diff --git a/libraries/import/xlsx.php b/libraries/import/xlsx.php
index 80d79e58f..309f8f9ad 100644
--- a/libraries/import/xlsx.php
+++ b/libraries/import/xlsx.php
@@ -21,7 +21,7 @@ if (isset($plugin_list)) {
'text' => __('Excel 2007 XLSX Workbook'),
'extension' => 'xlsx',
'options' => array(
- array('type' => 'bool', 'name' => 'col_names', 'text' => __('Column names in first row')),
+ array('type' => 'bool', 'name' => 'col_names', 'text' => __('The first line of the file contains the table column names (if this is unchecked, the first line will become part of the data)')),
),
'options_text' => __('Options'),
);