From 3f33397651094c417926e6eb44c7c064137536f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 19 Aug 2010 11:31:28 +0200 Subject: [PATCH] No need to translate SQL statements. --- libraries/export/sql.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/export/sql.php b/libraries/export/sql.php index e0933391c..2d6708dba 100644 --- a/libraries/export/sql.php +++ b/libraries/export/sql.php @@ -110,9 +110,9 @@ if (isset($plugin_list)) { $plugin_list['sql']['options'][] = array('type' => 'begin_subgroup', 'subgroup_header' => array('type' => 'bool', 'name' => 'create_table_statements', 'text' => __('CREATE TABLE options:'))); $plugin_list['sql']['options'][] = - array('type' => 'bool', 'name' => 'if_not_exists', 'text' => __('IF NOT EXISTS')); + array('type' => 'bool', 'name' => 'if_not_exists', 'text' => 'IF NOT EXISTS'); $plugin_list['sql']['options'][] = - array('type' => 'bool', 'name' => 'auto_increment', 'text' => __('AUTO_INCREMENT')); + array('type' => 'bool', 'name' => 'auto_increment', 'text' => 'AUTO_INCREMENT'); $plugin_list['sql']['options'][] = array('type' => 'end_subgroup'); /* end CREATE TABLE statements */