diff --git a/libraries/config/messages.inc.php b/libraries/config/messages.inc.php index 65545b700..437ca71ab 100644 --- a/libraries/config/messages.inc.php +++ b/libraries/config/messages.inc.php @@ -235,14 +235,14 @@ $strConfigImport_charset_name = __('Character set of the file'); $strConfigImport_csv_col_names_name = __('Lines terminated by'); $strConfigImport_csv_enclosed_name = __('Columns enclosed by'); $strConfigImport_csv_escaped_name = __('Columns escaped by'); -$strConfigImport_csv_ignore_name = __('Ignore duplicate rows'); +$strConfigImport_csv_ignore_name = __('Do not abort on INSERT error'); $strConfigImport_csv_replace_name = __('Replace table data with file'); $strConfigImport_csv_terminated_name = __('Columns terminated by'); $strConfigImport_format_desc = __('Default format; be aware that this list depends on location (database, table) and only SQL is always available'); $strConfigImport_format_name = __('Format of imported file'); $strConfigImport_ldi_enclosed_name = __('Columns enclosed by'); $strConfigImport_ldi_escaped_name = __('Columns escaped by'); -$strConfigImport_ldi_ignore_name = __('Ignore duplicate rows'); +$strConfigImport_ldi_ignore_name = __('Do not abort on INSERT error'); $strConfigImport_ldi_local_option_name = __('Use LOCAL keyword'); $strConfigImport_ldi_replace_name = __('Replace table data with file'); $strConfigImport_ldi_terminated_name = __('Columns terminated by'); diff --git a/libraries/import/csv.php b/libraries/import/csv.php index b6e635b82..db8d09cc1 100644 --- a/libraries/import/csv.php +++ b/libraries/import/csv.php @@ -23,7 +23,7 @@ if (isset($plugin_list)) { 'options' => array( array('type' => 'begin_group', 'name' => 'general_opts'), array('type' => 'bool', 'name' => 'replace', 'text' => __('Replace table data with file')), - array('type' => 'bool', 'name' => 'ignore', 'text' => __('Ignore duplicate rows')), + array('type' => 'bool', 'name' => 'ignore', 'text' => __('Do not abort on INSERT error')), array('type' => 'text', 'name' => 'terminated', 'text' => __('Columns separated 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), diff --git a/libraries/import/ldi.php b/libraries/import/ldi.php index 39d42ed8d..e6eb56d23 100644 --- a/libraries/import/ldi.php +++ b/libraries/import/ldi.php @@ -36,7 +36,7 @@ if (isset($plugin_list)) { 'options' => array( array('type' => 'begin_group', 'name' => 'general_opts'), array('type' => 'bool', 'name' => 'replace', 'text' => __('Replace table data with file')), - array('type' => 'bool', 'name' => 'ignore', 'text' => __('Ignore duplicate rows')), + array('type' => 'bool', 'name' => 'ignore', 'text' => __('Do not abort on INSERT error')), 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),