Git
Threads by month
- ----- 2026 -----
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 9 participants
- 39111 discussions
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_2RC1-3148-g754cc88
by Michal Čihař 06 Jun '11
by Michal Čihař 06 Jun '11
06 Jun '11
The branch, master has been updated
via 754cc88c39c6cb3c5041c1e6a19651e265de9abb (commit)
from 6a5a82fc82662de96c1e40f5101dbdb5f8a4eb6b (commit)
- Log -----------------------------------------------------------------
commit 754cc88c39c6cb3c5041c1e6a19651e265de9abb
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Jun 6 11:31:27 2011 +0200
Wrap a bit long lines
-----------------------------------------------------------------------
Summary of changes:
libraries/export/sql.php | 237 +++++++++++++++++++++++++++++++++------------
1 files changed, 174 insertions(+), 63 deletions(-)
diff --git a/libraries/export/sql.php b/libraries/export/sql.php
index 3ed1c57..1530c53 100644
--- a/libraries/export/sql.php
+++ b/libraries/export/sql.php
@@ -29,28 +29,55 @@ if (isset($plugin_list)) {
$plugin_list['sql']['options'][] = array('type' => 'begin_group', 'name' => 'general_opts');
/* comments */
- $plugin_list['sql']['options'][] =
- array('type' => 'begin_subgroup', 'subgroup_header' => array('type' => 'bool', 'name' => 'include_comments', 'text' => __('Display comments <i>(includes info such as export timestamp, PHP version, and server version)</i>')));
- $plugin_list['sql']['options'][] =
- array('type' => 'text', 'name' => 'header_comment', 'text' => __('Additional custom header comment (\n splits lines):'));
- $plugin_list['sql']['options'][] =
- array('type' => 'bool', 'name' => 'dates', 'text' => __('Include a timestamp of when databases were created, last updated, and last checked'));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'begin_subgroup',
+ 'subgroup_header' => array(
+ 'type' => 'bool',
+ 'name' => 'include_comments',
+ 'text' => __('Display comments <i>(includes info such as export timestamp, PHP version, and server version)</i>')
+ ));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'text',
+ 'name' => 'header_comment',
+ 'text' => __('Additional custom header comment (\n splits lines):')
+ );
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'dates',
+ 'text' => __('Include a timestamp of when databases were created, last updated, and last checked')
+ );
if (!empty($GLOBALS['cfgRelation']['relation'])) {
- $plugin_list['sql']['options'][] =
- array('type' => 'bool', 'name' => 'relation', 'text' => __('Display foreign key relationships'));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'relation',
+ 'text' => __('Display foreign key relationships')
+ );
}
if (!empty($GLOBALS['cfgRelation']['mimework'])) {
- $plugin_list['sql']['options'][] =
- array('type' => 'bool', 'name' => 'mime', 'text' => __('Display MIME types'));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'mime',
+ 'text' => __('Display MIME types')
+ );
}
$plugin_list['sql']['options'][] = array('type' => 'end_subgroup');
/* end comments */
/* enclose in a transaction */
- $plugin_list['sql']['options'][] = array('type' => 'bool', 'name' => 'use_transaction', 'text' => __('Enclose export in a transaction'), 'doc' => array('programs', 'mysqldump', 'option_mysqldump_single-transaction'));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'use_transaction',
+ 'text' => __('Enclose export in a transaction'),
+ 'doc' => array('programs', 'mysqldump', 'option_mysqldump_single-transaction')
+ );
/* disable foreign key checks */
- $plugin_list['sql']['options'][] = array('type' => 'bool', 'name' => 'disable_fk', 'text' => __('Disable foreign key checks'), 'doc' => array('manual_MySQL_Database_Administration', 'server-system-variables', 'sysvar_foreign_key_checks'));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'disable_fk',
+ 'text' => __('Disable foreign key checks'),
+ 'doc' => array('manual_MySQL_Database_Administration', 'server-system-variables', 'sysvar_foreign_key_checks')
+ );
$plugin_list['sql']['options_text'] = __('Options');
@@ -61,34 +88,61 @@ if (isset($plugin_list)) {
foreach($compats as $val) {
$values[$val] = $val;
}
- $plugin_list['sql']['options'][] =
- array('type' => 'select', 'name' => 'compatibility', 'text' => __('Database system or older MySQL server to maximize output compatibility with:'), 'values' => $values, 'doc' => array('manual_MySQL_Database_Administration', 'Server_SQL_mode'));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'select',
+ 'name' => 'compatibility',
+ 'text' => __('Database system or older MySQL server to maximize output compatibility with:'),
+ 'values' => $values,
+ 'doc' => array('manual_MySQL_Database_Administration', 'Server_SQL_mode')
+ );
unset($values);
}
/* server export options */
if ($plugin_param['export_type'] == 'server') {
- $plugin_list['sql']['options'][] =
- array('type' => 'bool', 'name' => 'drop_database', 'text' => sprintf(__('Add %s statement'), '<code>DROP DATABASE</code>'));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'drop_database',
+ 'text' => sprintf(__('Add %s statement'), '<code>DROP DATABASE</code>')
+ );
}
/* what to dump (structure/data/both) */
- $plugin_list['sql']['options'][] =
- array('type' => 'begin_subgroup', 'subgroup_header' => array('type' => 'message_only', 'text' => __('Dump table')));
- $plugin_list['sql']['options'][] =
- array('type' => 'radio', 'name' => 'structure_or_data', 'values' => array('structure' => __('structure'), 'data' => __('data'), 'structure_and_data' => __('structure and data')));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'begin_subgroup',
+ 'subgroup_header' => array(
+ 'type' => 'message_only',
+ 'text' => __('Dump table')
+ ));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'radio',
+ 'name' => 'structure_or_data',
+ 'values' => array(
+ 'structure' => __('structure'),
+ 'data' => __('data'),
+ 'structure_and_data' => __('structure and data')
+ ));
$plugin_list['sql']['options'][] = array('type' => 'end_subgroup');
$plugin_list['sql']['options'][] = array('type' => 'end_group');
/* begin Structure options */
if (!$hide_structure) {
- $plugin_list['sql']['options'][] =
- array('type' => 'begin_group', 'name' => 'structure', 'text' => __('Object creation options'), 'force' => 'data');
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'begin_group',
+ 'name' => 'structure',
+ 'text' => __('Object creation options'),
+ 'force' => 'data'
+ );
/* begin SQL Statements */
- $plugin_list['sql']['options'][] =
- array('type' => 'begin_subgroup', 'subgroup_header' => array('type' => 'message_only', 'name' => 'add_statements', 'text' => __('Add statements:')));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'begin_subgroup',
+ 'subgroup_header' => array(
+ 'type' => 'message_only',
+ 'name' => 'add_statements',
+ 'text' => __('Add statements:')
+ ));
if ($plugin_param['export_type'] == 'table') {
if (PMA_Table::isView($GLOBALS['db'], $GLOBALS['table'])) {
$drop_clause = '<code>DROP VIEW</code>';
@@ -101,74 +155,131 @@ if (isset($plugin_list)) {
$drop_clause .= '<code> / EVENT</code>';
}
}
- $plugin_list['sql']['options'][] =
- array('type' => 'bool', 'name' => 'drop_table', 'text' => sprintf(__('Add %s statement'), $drop_clause));
- $plugin_list['sql']['options'][] =
- array('type' => 'bool', 'name' => 'procedure_function', 'text' => sprintf(__('Add %s statement'), '<code>CREATE PROCEDURE / FUNCTION' . (PMA_MYSQL_INT_VERSION > 50100 ? ' / EVENT</code>' : '</code>')));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'drop_table',
+ 'text' => sprintf(__('Add %s statement'), $drop_clause)
+ );
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'procedure_function',
+ 'text' => sprintf(__('Add %s statement'), '<code>CREATE PROCEDURE / FUNCTION' . (PMA_MYSQL_INT_VERSION > 50100 ? ' / EVENT</code>' : '</code>'))
+ );
/* begin CREATE TABLE statements*/
- $plugin_list['sql']['options'][] =
- array('type' => 'begin_subgroup', 'subgroup_header' => array('type' => 'bool', 'name' => 'create_table_statements', 'text' => __('<code>CREATE TABLE</code> options:')));
- $plugin_list['sql']['options'][] =
- array('type' => 'bool', 'name' => 'if_not_exists', 'text' => '<code>IF NOT EXISTS</code>');
- $plugin_list['sql']['options'][] =
- array('type' => 'bool', 'name' => 'auto_increment', 'text' => '<code>AUTO_INCREMENT</code>');
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'begin_subgroup',
+ 'subgroup_header' => array(
+ 'type' => 'bool',
+ 'name' => 'create_table_statements',
+ 'text' => __('<code>CREATE TABLE</code> options:')
+ ));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'if_not_exists',
+ 'text' => '<code>IF NOT EXISTS</code>'
+ );
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'auto_increment',
+ 'text' => '<code>AUTO_INCREMENT</code>'
+ );
$plugin_list['sql']['options'][] = array('type' => 'end_subgroup');
/* end CREATE TABLE statements */
$plugin_list['sql']['options'][] = array('type' => 'end_subgroup');
/* end SQL statements */
- $plugin_list['sql']['options'][] =
- array('type' => 'bool', 'name' => 'backquotes', 'text' => __('Enclose table and field names with backquotes <i>(Protects field and table names formed with special characters or keywords)</i>'));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'backquotes',
+ 'text' => __('Enclose table and field names with backquotes <i>(Protects field and table names formed with special characters or keywords)</i>')
+ );
- $plugin_list['sql']['options'][] =
- array('type' => 'end_group');
+ $plugin_list['sql']['options'][] = array('type' => 'end_group');
}
/* end Structure options */
/* begin Data options */
- $plugin_list['sql']['options'][] =
- array('type' => 'begin_group', 'name' => 'data', 'text' => __('Data dump options'), 'force' => 'structure');
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'begin_group',
+ 'name' => 'data',
+ 'text' => __('Data dump options'),
+ 'force' => 'structure'
+ );
/* begin SQL statements */
- $plugin_list['sql']['options'][] =
- array('type' => 'begin_subgroup', 'subgroup_header' => array('type' => 'message_only', 'text' => __('Instead of <code>INSERT</code> statements, use:')));
- $plugin_list['sql']['options'][] =
- array('type' => 'bool', 'name' => 'delayed', 'text' => __('<code>INSERT DELAYED</code> statements'), 'doc' => array('manual_MySQL_Database_Administration', 'insert_delayed'));
- $plugin_list['sql']['options'][] =
- array('type' => 'bool', 'name' => 'ignore', 'text' => __('<code>INSERT IGNORE</code> statements'), 'doc' => array('manual_MySQL_Database_Administration', 'insert'));
- $plugin_list['sql']['options'][] =
- array('type' => 'end_subgroup');
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'begin_subgroup',
+ 'subgroup_header' => array(
+ 'type' => 'message_only',
+ 'text' => __('Instead of <code>INSERT</code> statements, use:')
+ ));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'delayed',
+ 'text' => __('<code>INSERT DELAYED</code> statements'),
+ 'doc' => array('manual_MySQL_Database_Administration', 'insert_delayed')
+ );
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'ignore',
+ 'text' => __('<code>INSERT IGNORE</code> statements'),
+ 'doc' => array('manual_MySQL_Database_Administration', 'insert')
+ );
+ $plugin_list['sql']['options'][] = array('type' => 'end_subgroup');
/* end SQL statements */
/* Function to use when dumping data */
- $plugin_list['sql']['options'][] =
- array('type' => 'select', 'name' => 'type', 'text' => __('Function to use when dumping data:'), 'values' => array('INSERT' => 'INSERT', 'UPDATE' => 'UPDATE', 'REPLACE' => 'REPLACE'));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'select',
+ 'name' => 'type',
+ 'text' => __('Function to use when dumping data:'),
+ 'values' => array(
+ 'INSERT' => 'INSERT',
+ 'UPDATE' => 'UPDATE',
+ 'REPLACE' => 'REPLACE'
+ )
+ );
/* Syntax to use when inserting data */
- $plugin_list['sql']['options'][] =
- array('type' => 'begin_subgroup', 'subgroup_header' => array('type' => 'message_only', 'text' => __('Syntax to use when inserting data:')));
- $plugin_list['sql']['options'][] =
- array('type' => 'radio', 'name' => 'insert_syntax', 'values' => array(
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'begin_subgroup',
+ 'subgroup_header' => array(
+ 'type' => 'message_only',
+ 'text' => __('Syntax to use when inserting data:')
+ ));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'radio',
+ 'name' => 'insert_syntax',
+ 'values' => array(
'complete' => __('include column names in every <code>INSERT</code> statement <br /> Example: <code>INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)</code>'),
'extended' => __('insert multiple rows in every <code>INSERT</code> statement<br /> Example: <code>INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)</code>'),
'both' => __('both of the above<br /> Example: <code>INSERT INTO tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)</code>'),
- 'none' => __('neither of the above<br /> Example: <code>INSERT INTO tbl_name VALUES (1,2,3)</code>')));
- $plugin_list['sql']['options'][] =
- array('type' => 'end_subgroup');
+ 'none' => __('neither of the above<br /> Example: <code>INSERT INTO tbl_name VALUES (1,2,3)</code>')
+ ));
+ $plugin_list['sql']['options'][] = array('type' => 'end_subgroup');
/* Max length of query */
- $plugin_list['sql']['options'][] =
- array('type' => 'text', 'name' => 'max_query_size', 'text' => __('Maximal length of created query'));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'text',
+ 'name' => 'max_query_size',
+ 'text' => __('Maximal length of created query')
+ );
/* Dump binary columns in hexadecimal */
- $plugin_list['sql']['options'][] =
- array('type' => 'bool', 'name' => 'hex_for_blob', 'text' => __('Dump binary columns in hexadecimal notation <i>(for example, "abc" becomes 0x616263)</i>'));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'hex_for_blob',
+ 'text' => __('Dump binary columns in hexadecimal notation <i>(for example, "abc" becomes 0x616263)</i>')
+ );
/* Dump time in UTC */
- $plugin_list['sql']['options'][] =
- array('type' => 'bool', 'name' => 'utc_time', 'text' => __('Dump TIMESTAMP columns in UTC <i>(enables TIMESTAMP columns to be dumped and reloaded between servers in different time zones)</i>'));
+ $plugin_list['sql']['options'][] = array(
+ 'type' => 'bool',
+ 'name' => 'utc_time',
+ 'text' => __('Dump TIMESTAMP columns in UTC <i>(enables TIMESTAMP columns to be dumped and reloaded between servers in different time zones)</i>')
+ );
$plugin_list['sql']['options'][] = array('type' => 'end_group');
/* end Data options */
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_2RC1-11-g2a22d7d
by Michal Čihař 06 Jun '11
by Michal Čihař 06 Jun '11
06 Jun '11
The branch, QA_3_4 has been updated
via 2a22d7dae71e2560e667431541a4c7bbf854905c (commit)
from 7996a365756f08c2175d996e1fa9efd3829c4b96 (commit)
- Log -----------------------------------------------------------------
commit 2a22d7dae71e2560e667431541a4c7bbf854905c
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Jun 6 11:23:18 2011 +0200
Update from master
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 2 +-
po/ar.po | 2 +-
po/az.po | 2 +-
po/be.po | 2 +-
po/be(a)latin.po | 2 +-
po/bg.po | 2 +-
po/bn.po | 2 +-
po/bs.po | 2 +-
po/ca.po | 2 +-
po/cs.po | 2 +-
po/cy.po | 2 +-
po/da.po | 2 +-
po/de.po | 2 +-
po/el.po | 2 +-
po/en_GB.po | 2 +-
po/es.po | 2 +-
po/et.po | 2 +-
po/eu.po | 2 +-
po/fa.po | 2 +-
po/fi.po | 2 +-
po/fr.po | 2 +-
po/gl.po | 2 +-
po/he.po | 2 +-
po/hi.po | 2 +-
po/hr.po | 2 +-
po/hu.po | 2 +-
po/id.po | 2 +-
po/it.po | 2 +-
po/ja.po | 2 +-
po/ka.po | 2 +-
po/ko.po | 2 +-
po/lt.po | 2 +-
po/lv.po | 2 +-
po/mk.po | 2 +-
po/ml.po | 2 +-
po/mn.po | 2 +-
po/ms.po | 2 +-
po/nb.po | 2 +-
po/nl.po | 2 +-
po/pl.po | 2 +-
po/pt.po | 2 +-
po/pt_BR.po | 2 +-
po/ro.po | 2 +-
po/ru.po | 2 +-
po/si.po | 18 +++++++++---------
po/sk.po | 2 +-
po/sl.po | 2 +-
po/sq.po | 2 +-
po/sr.po | 2 +-
po/sr(a)latin.po | 2 +-
po/sv.po | 2 +-
po/ta.po | 2 +-
po/te.po | 2 +-
po/th.po | 2 +-
po/tr.po | 2 +-
po/tt.po | 2 +-
po/ug.po | 2 +-
po/uk.po | 2 +-
po/ur.po | 2 +-
po/uz.po | 2 +-
po/uz(a)latin.po | 2 +-
po/zh_CN.po | 2 +-
po/zh_TW.po | 2 +-
63 files changed, 71 insertions(+), 71 deletions(-)
diff --git a/po/af.po b/po/af.po
index e28bb58..f268ecc 100644
--- a/po/af.po
+++ b/po/af.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
diff --git a/po/ar.po b/po/ar.po
index e9bd465..ec74776 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-21 13:56+0200\n"
diff --git a/po/az.po b/po/az.po
index a0aa29e..94cebcf 100644
--- a/po/az.po
+++ b/po/az.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
diff --git a/po/be.po b/po/be.po
index 827547e..85bbd5c 100644
--- a/po/be.po
+++ b/po/be.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 71269b4..2af239e 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
diff --git a/po/bg.po b/po/bg.po
index 5506756..75b39fb 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-22 12:51+0200\n"
diff --git a/po/bn.po b/po/bn.po
index 6851ce7..2edd88f 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
diff --git a/po/bs.po b/po/bs.po
index d0b2bf2..d17e6cf 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
diff --git a/po/ca.po b/po/ca.po
index f9a08e7..436c069 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
diff --git a/po/cs.po b/po/cs.po
index e3dd226..5d8533f 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -4,7 +4,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
diff --git a/po/cy.po b/po/cy.po
index c68480b..0156048 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -4,7 +4,7 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-06-07 20:23+0200\n"
diff --git a/po/da.po b/po/da.po
index 6e44fde..9ba8135 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-07 01:17+0200\n"
diff --git a/po/de.po b/po/de.po
index 9b505d2..f5dde39 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-23 04:28+0200\n"
diff --git a/po/el.po b/po/el.po
index 3610fcc..68b4bb7 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-05 11:15+0200\n"
diff --git a/po/en_GB.po b/po/en_GB.po
index a5d899e..e307458 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-02-10 16:24+0200\n"
diff --git a/po/es.po b/po/es.po
index 914754c..4e62406 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-02 11:10+0200\n"
diff --git a/po/et.po b/po/et.po
index 14c8e96..465202a 100644
--- a/po/et.po
+++ b/po/et.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
diff --git a/po/eu.po b/po/eu.po
index 33546e3..cfe7b0f 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
diff --git a/po/fa.po b/po/fa.po
index 7ddf128..61aa0c4 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
diff --git a/po/fi.po b/po/fi.po
index a52bb00..3d9b38b 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
diff --git a/po/fr.po b/po/fr.po
index 4825272..5bd6d74 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-02-10 19:23+0200\n"
diff --git a/po/gl.po b/po/gl.po
index dcc97ab..6d28e6a 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
diff --git a/po/he.po b/po/he.po
index b7f8de9..b797b7f 100644
--- a/po/he.po
+++ b/po/he.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
diff --git a/po/hi.po b/po/hi.po
index 6e86b9a..23c92de 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-24 00:23+0200\n"
diff --git a/po/hr.po b/po/hr.po
index ba20f43..e936fbb 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
diff --git a/po/hu.po b/po/hu.po
index b55a68a..452348c 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-05-05 12:49+0200\n"
diff --git a/po/id.po b/po/id.po
index ed58c6f..e209625 100644
--- a/po/id.po
+++ b/po/id.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-16 22:04+0200\n"
diff --git a/po/it.po b/po/it.po
index 2af36a1..758b2bc 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-05 14:27+0200\n"
diff --git a/po/ja.po b/po/ja.po
index 11ac138..d72fb91 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-05-05 11:38+0200\n"
diff --git a/po/ka.po b/po/ka.po
index a7a99dd..bbcc672 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
diff --git a/po/ko.po b/po/ko.po
index a430a0a..ea99b4e 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
diff --git a/po/lt.po b/po/lt.po
index 1771e49..c28c645 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-05 15:52+0200\n"
diff --git a/po/lv.po b/po/lv.po
index 2c0b05a..02dcaa7 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
diff --git a/po/mk.po b/po/mk.po
index 388d6ca..3774f42 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
diff --git a/po/ml.po b/po/ml.po
index 8193aeb..22c9f22 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -3,7 +3,7 @@
# This file is distributed under the same license as the phpMyAdmin package.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
diff --git a/po/mn.po b/po/mn.po
index b7a3776..afede01 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
diff --git a/po/ms.po b/po/ms.po
index 35218d8..c48f2fb 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
diff --git a/po/nb.po b/po/nb.po
index 0ad295e..5070755 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
diff --git a/po/nl.po b/po/nl.po
index ed47655..4ea7430 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-16 20:18+0200\n"
diff --git a/po/pl.po b/po/pl.po
index ac39790..4615bf2 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-02-24 16:21+0200\n"
diff --git a/po/pt.po b/po/pt.po
index 15949fc..a7f4ee0 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-26 03:23+0200\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 6635ca2..39eee26 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-14 17:44+0200\n"
diff --git a/po/ro.po b/po/ro.po
index dce5a04..27c4097 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
diff --git a/po/ru.po b/po/ru.po
index 94b8017..7695759 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-13 21:17+0200\n"
diff --git a/po/si.po b/po/si.po
index 39305aa..8d40cd6 100644
--- a/po/si.po
+++ b/po/si.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-05-04 14:56+0200\n"
@@ -1131,7 +1131,7 @@ msgstr "නොසලකන්න"
#: js/messages.php:101
msgid "Select referenced key"
-msgstr ""
+msgstr "සම්බන්දිත මූලය තෝරන්න"
# ප්රාථමික මූලය = Primary key. Source: Glossary of Information Technology
# Terms - ICTA
@@ -1722,7 +1722,7 @@ msgstr "දෘඪාංග සත්යාපනය අසමත් විය
#: libraries/auth/swekey/swekey.auth.lib.php:166
msgid "No valid authentication key plugged"
-msgstr ""
+msgstr "වලංගු සත්යාපන යතුරක් සම්බන්ද කර නැත"
#: libraries/auth/swekey/swekey.auth.lib.php:202
msgid "Authenticating..."
@@ -1738,11 +1738,11 @@ msgstr "PBMS සම්බන්ධතාවය අසමත් විය:"
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
-msgstr ""
+msgstr "PBMS BLOB තොරතුරු ලබාගැනීම අසමත් විය:"
#: libraries/blobstreaming.lib.php:320
msgid "get BLOB Content-Type failed"
-msgstr ""
+msgstr "BLOB අන්තර්ගත-ප්රකාරය ලබාගැනීම අසමත් විය:"
#: libraries/blobstreaming.lib.php:347
msgid "View image"
@@ -1750,7 +1750,7 @@ msgstr "දසුන නරඹන්න"
#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
-msgstr ""
+msgstr "Play audio"
#: libraries/blobstreaming.lib.php:356
msgid "View video"
@@ -2225,12 +2225,12 @@ msgstr "\"%s\" සඳහා %s දිගුව අවශ්යය"
#: libraries/config/FormDisplay.class.php:755
#, php-format
msgid "import will not work, missing function (%s)"
-msgstr ""
+msgstr "ආනයන අකර්මන්යයි, (%s) ක්රියාවලිය නොමැත"
#: libraries/config/FormDisplay.class.php:759
#, php-format
msgid "export will not work, missing function (%s)"
-msgstr ""
+msgstr "අපනයන අකර්මන්යයි, (%s) ක්රියාවලිය නොමැත"
#: libraries/config/FormDisplay.class.php:766
msgid "SQL Validator is disabled"
@@ -2247,7 +2247,7 @@ msgstr "උපරිම %s"
#: libraries/config/FormDisplay.tpl.php:173
msgid "This setting is disabled, it will not be applied to your configuration"
-msgstr ""
+msgstr "මෙම සිටුවම අක්රීය කර ඇත, ඔබගේ වින්යාස සඳහා එය නොයෙදෙනු ඇත"
#: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89
#: libraries/relation.lib.php:96 pmd_relation_new.php:68
diff --git a/po/sk.po b/po/sk.po
index 9658b97..ff50f36 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-07-22 02:26+0200\n"
diff --git a/po/sl.po b/po/sl.po
index fec32cf..447615d 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-03-24 22:38+0200\n"
diff --git a/po/sq.po b/po/sq.po
index 0b3c6dd..aa253fe 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
diff --git a/po/sr.po b/po/sr.po
index e4683dd..d7f0d97 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2011-04-06 18:43+0200\n"
diff --git a/po/sr(a)latin.po b/po/sr(a)latin.po
index db8630f..281fc99 100644
--- a/po/sr(a)latin.po
+++ b/po/sr(a)latin.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
diff --git a/po/sv.po b/po/sv.po
index ca9e8a6..81ef445 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.2-rc1\n"
+"Project-Id-Version: phpMyAdmin 3.4.3-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-06-02 08:31+0200\n"
"