From 3e5c8f9f01042c42f6a656e06fd2bc61fe5786a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 11 Mar 2010 17:04:31 +0100 Subject: [PATCH 01/14] Add list of ignored files. --- .gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..83fc036dd --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +# Directory for creating releases +release +# Configuration files +config.inc.php +config.header.inc.php +config.footer.inc.php +# Upload/save dirs +upload +save +# For setup script +config +# ctags +tags +# Editor files +phpmyadmin.wpj +.projectOptions +.vimrc +.project +.settings +.buildpath +.cache +*.sw[op] From f0672d82c38af1593523e2271f4cadcd27e64e39 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 15 Mar 2010 16:08:56 -0400 Subject: [PATCH 02/14] bug #2967565 UNHEX not selected by default when inserting BINARY --- ChangeLog | 1 + tbl_change.php | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 9514bd826..1594d49fb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA - bug #2966078 [browse] Incorrect LIMIT is saved and sticks while browsing - bug #2967366 [Structure] Some results of Propose table structure are shown in hex +- bug #2967565 [insert] UNHEX not selected by default when inserting BINARY 3.3.1.0 (not yet released) - bug #2941037 [core] Database structure not sorted by table correctly diff --git a/tbl_change.php b/tbl_change.php index c2fb93aa9..f8cc1c0cf 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -429,6 +429,7 @@ foreach ($rows as $row_id => $vrow) { $real_null_value = FALSE; $special_chars_encoded = ''; if (isset($vrow)) { + // (we are editing) // On a BLOB that can have a NULL value, the is_null() returns // true if it has no content but for me this is different than // having been set explicitely to NULL so I put an exception here @@ -464,6 +465,7 @@ foreach ($rows as $row_id => $vrow) { . $field_name_appendix . '" value="' . htmlspecialchars($vrow[$field['Field']]) . '" />'; } else { + // (we are inserting) // loic1: display default values if (!isset($field['Default'])) { $field['Default'] = ''; @@ -479,6 +481,10 @@ foreach ($rows as $row_id => $vrow) { } $backup_field = ''; $special_chars_encoded = PMA_duplicateFirstNewline($special_chars); + // this will select the UNHEX function while inserting + if (($field['is_binary'] || $field['is_blob']) && $_SESSION['tmp_user_values']['display_binary_as_hex'] && $cfg['ShowFunctionFields']) { + $field['display_binary_as_hex'] = true; + } } $idindex = ($o_rows * $fields_cnt) + $i + 1; From e5ab5e637e6e09dec98a4ec7656818b2c71b022c Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 15 Mar 2010 16:36:19 -0400 Subject: [PATCH 03/14] bug #2970769 Incorrect reference to mootools-more.js --- ChangeLog | 1 + tbl_addfield.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0b40f514c..c70051083 100644 --- a/ChangeLog +++ b/ChangeLog @@ -16,6 +16,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA thanks to Dieter Adriaenssens - ruleant - bug #2961198 [parser] Querying a table named "data" - bug #2931429 [structure] Editing long triggers +- bug #2970769 [structure] Incorrect reference to mootools-more.js 3.3.0.0 (2010-03-07) + rfe #2308632 [edit] Use hex for (var)binary fields, diff --git a/tbl_addfield.php b/tbl_addfield.php index 886b93938..cfa25f549 100644 --- a/tbl_addfield.php +++ b/tbl_addfield.php @@ -13,7 +13,7 @@ require_once './libraries/common.inc.php'; require_once './libraries/Table.class.php'; $GLOBALS['js_include'][] = 'functions.js'; -$GLOBALS['js_include'][] = 'mootools-more.js'; +$GLOBALS['js_include'][] = 'mootools.js'; require_once './libraries/header.inc.php'; // Check parameters From b90805f7eb266967480295c02c9eb94680c4f7fb Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 16 Mar 2010 07:54:17 -0400 Subject: [PATCH 04/14] 3.3.1 release --- ChangeLog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f16bfb757..01c698535 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,7 +13,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA shown in hex - bug #2967565 [insert] UNHEX not selected by default when inserting BINARY -3.3.1.0 (not yet released) +3.3.1.0 (2010-03-16) - bug #2941037 [core] Database structure not sorted by table correctly - bug #2948492 [interface] Slide effect masks some fields on search page - bug #2959746 [interface] Unknown table status: TABLE_TYPE From b7bbb967baa622cc2a586609b56aaba356898a19 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 16 Mar 2010 08:10:49 -0400 Subject: [PATCH 05/14] no branch exist in the cloned directory; advice for changes before validation --- scripts/create-release.sh | 65 +++++++++++++++++++-------------------- 1 file changed, 32 insertions(+), 33 deletions(-) diff --git a/scripts/create-release.sh b/scripts/create-release.sh index 269ef4461..9e5b0a166 100755 --- a/scripts/create-release.sh +++ b/scripts/create-release.sh @@ -35,37 +35,6 @@ shift branch=$1 shift -# Create working copy -mkdir -p release -workdir=release/phpMyAdmin-$version -if [ -d $workdir ] ; then - echo "Working directory '$workdir' already exists, please move it out of way" - exit 1 -fi -git clone --local . $workdir -cd $workdir - -# Checkout branch -git checkout $branch - -# Check release version -if ! grep -q "'PMA_VERSION', '$version'" libraries/Config.class.php ; then - echo "There seems to be wrong version in libraries/Config.class.php!" - exit 2 -fi -if ! grep -q "phpMyAdmin $version - Documentation" Documentation.html ; then - echo "There seems to be wrong version in Documentation.html" - exit 2 -fi -if ! grep -q "phpMyAdmin $version - Official translators" translators.html ; then - echo "There seems to be wrong version in translators.html" - exit 2 -fi -if ! grep -q "Version $version\$" README ; then - echo "There seems to be wrong version in README" - exit 2 -fi - cat < RELEASE-DATE-${version} @@ -203,8 +202,8 @@ cat < Date: Tue, 16 Mar 2010 12:38:56 -0400 Subject: [PATCH 06/14] typos --- Documentation.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation.html b/Documentation.html index 30537f01d..6656c0e8c 100644 --- a/Documentation.html +++ b/Documentation.html @@ -1103,7 +1103,7 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE $cfg['Servers'][$i]['tracking_version_drop_view'] boolean
- Whether a DROP VIEW IF EXISTS statement will added as first line to the log when creating a view. Default value is true. + Whether a DROP VIEW IF EXISTS statement will be added as first line to the log when creating a view. Default value is true.

@@ -1112,7 +1112,7 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE $cfg['Servers'][$i]['tracking_version_drop_table'] boolean
- Whether a DROP TABLE IF EXISTS statement will added as first line to the log when creating a table. Default value is true. + Whether a DROP TABLE IF EXISTS statement will be added as first line to the log when creating a table. Default value is true.

@@ -1120,7 +1120,7 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE $cfg['Servers'][$i]['tracking_version_drop_database'] boolean
- Whether a DROP DATABASE IF EXISTS statement will added as first line to the log when creating a database. Default value is true. + Whether a DROP DATABASE IF EXISTS statement will be added as first line to the log when creating a database. Default value is true.

From 8bf35a0e146d249192b87691d883ab8912f3276e Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 16 Mar 2010 12:42:56 -0400 Subject: [PATCH 07/14] typos --- Documentation.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation.html b/Documentation.html index bb1c27d96..4c5157dde 100644 --- a/Documentation.html +++ b/Documentation.html @@ -1115,7 +1115,7 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE $cfg['Servers'][$i]['tracking_version_drop_view'] boolean
- Whether a DROP VIEW IF EXISTS statement will added as first line to the log when creating a view. Default value is true. + Whether a DROP VIEW IF EXISTS statement will be added as first line to the log when creating a view. Default value is true.

@@ -1124,7 +1124,7 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE $cfg['Servers'][$i]['tracking_version_drop_table'] boolean
- Whether a DROP TABLE IF EXISTS statement will added as first line to the log when creating a table. Default value is true. + Whether a DROP TABLE IF EXISTS statement will be added as first line to the log when creating a table. Default value is true.

@@ -1132,7 +1132,7 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE $cfg['Servers'][$i]['tracking_version_drop_database'] boolean
- Whether a DROP DATABASE IF EXISTS statement will added as first line to the log when creating a database. Default value is true. + Whether a DROP DATABASE IF EXISTS statement will be added as first line to the log when creating a database. Default value is true.

From e2aaeaf1d621f5dd0ae4d97af383f8afe5b1ba73 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 16 Mar 2010 12:47:42 -0400 Subject: [PATCH 08/14] typos --- libraries/config.default.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/config.default.php b/libraries/config.default.php index 3450739ed..b1fef17ab 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -439,7 +439,7 @@ $cfg['Servers'][$i]['tracking_default_statements'] = 'CREATE TABLE,ALTER TABLE,D 'CREATE DATABASE,ALTER DATABASE,DROP DATABASE'; /** - * Whether a DROP VIEW IF EXISTS statement will added as first line to the log when creating a view. + * Whether a DROP VIEW IF EXISTS statement will be added as first line to the log when creating a view. * * @global bool $cfg['Servers'][$i]['tracking_add_drop_view'] */ @@ -447,7 +447,7 @@ $cfg['Servers'][$i]['tracking_default_statements'] = 'CREATE TABLE,ALTER TABLE,D $cfg['Servers'][$i]['tracking_add_drop_view'] = true; /** - * Whether a DROP TABLE IF EXISTS statement will added as first line to the log when creating a table. + * Whether a DROP TABLE IF EXISTS statement will be added as first line to the log when creating a table. * * @global bool $cfg['Servers'][$i]['tracking_add_drop_table'] */ @@ -455,7 +455,7 @@ $cfg['Servers'][$i]['tracking_add_drop_view'] = true; $cfg['Servers'][$i]['tracking_add_drop_table'] = true; /** - * Whether a DROP DATABASE IF EXISTS statement will added as first line to the log when creating a database. + * Whether a DROP DATABASE IF EXISTS statement will be added as first line to the log when creating a database. * * @global bool $cfg['Servers'][$i]['tracking_add_drop_database'] */ @@ -463,7 +463,7 @@ $cfg['Servers'][$i]['tracking_add_drop_table'] = true; $cfg['Servers'][$i]['tracking_add_drop_database'] = true; /** - * Whether a DROP DATABASE IF EXISTS statement will added as first line to the log when creating a database. + * Whether a DROP DATABASE IF EXISTS statement will be added as first line to the log when creating a database. * * @global bool $cfg['Servers'][$i]['tracking_version_drop_database'] */ From 8b221f354b54b0c282b96128acc6da5862b02668 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 16 Mar 2010 12:49:07 -0400 Subject: [PATCH 09/14] typos --- libraries/config.default.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/config.default.php b/libraries/config.default.php index 3f56bd1d4..653fc53a1 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -446,7 +446,7 @@ $cfg['Servers'][$i]['tracking_default_statements'] = 'CREATE TABLE,ALTER TABLE,D 'CREATE DATABASE,ALTER DATABASE,DROP DATABASE'; /** - * Whether a DROP VIEW IF EXISTS statement will added as first line to the log when creating a view. + * Whether a DROP VIEW IF EXISTS statement will be added as first line to the log when creating a view. * * @global bool $cfg['Servers'][$i]['tracking_add_drop_view'] */ @@ -454,7 +454,7 @@ $cfg['Servers'][$i]['tracking_default_statements'] = 'CREATE TABLE,ALTER TABLE,D $cfg['Servers'][$i]['tracking_add_drop_view'] = true; /** - * Whether a DROP TABLE IF EXISTS statement will added as first line to the log when creating a table. + * Whether a DROP TABLE IF EXISTS statement will be added as first line to the log when creating a table. * * @global bool $cfg['Servers'][$i]['tracking_add_drop_table'] */ @@ -462,7 +462,7 @@ $cfg['Servers'][$i]['tracking_add_drop_view'] = true; $cfg['Servers'][$i]['tracking_add_drop_table'] = true; /** - * Whether a DROP DATABASE IF EXISTS statement will added as first line to the log when creating a database. + * Whether a DROP DATABASE IF EXISTS statement will be added as first line to the log when creating a database. * * @global bool $cfg['Servers'][$i]['tracking_add_drop_database'] */ @@ -470,7 +470,7 @@ $cfg['Servers'][$i]['tracking_add_drop_table'] = true; $cfg['Servers'][$i]['tracking_add_drop_database'] = true; /** - * Whether a DROP DATABASE IF EXISTS statement will added as first line to the log when creating a database. + * Whether a DROP DATABASE IF EXISTS statement will be added as first line to the log when creating a database. * * @global bool $cfg['Servers'][$i]['tracking_version_drop_database'] */ From 142b1e2183660d25cb4827c56f8760f4cb66e714 Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Wed, 17 Mar 2010 19:52:11 +0100 Subject: [PATCH 10/14] Changed link to git repository on main page --- ChangeLog | 1 + main.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 01c698535..cfa265d56 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA - bug #2967366 [Structure] Some results of Propose table structure are shown in hex - bug #2967565 [insert] UNHEX not selected by default when inserting BINARY +- [navi] Changed link to git repository on main page 3.3.1.0 (2010-03-16) - bug #2941037 [core] Database structure not sorted by table correctly diff --git a/main.php b/main.php index bad9b9e29..4bb6a756c 100644 --- a/main.php +++ b/main.php @@ -239,8 +239,8 @@ PMA_printListItem($strHomepageOfficial, 'li_pma_homepage', 'http://www.phpMyAdmi ?>
  • [ChangeLog] - [Subversion] + [Git] [Lists] From 767d16a8fa52a2d9ee30e3ed15b2f83c398bc027 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 17 Mar 2010 17:50:23 -0400 Subject: [PATCH 11/14] bug #2972232 Import menu tab not present on main page --- ChangeLog | 1 + libraries/server_links.inc.php | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index b20e63041..ab7277ca6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -58,6 +58,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA shown in hex - bug #2967565 [insert] UNHEX not selected by default when inserting BINARY - [navi] Changed link to git repository on main page +- bug #2972232 [menu] Import menu tab not present on main page 3.3.1.0 (2010-03-16) - bug #2941037 [core] Database structure not sorted by table correctly diff --git a/libraries/server_links.inc.php b/libraries/server_links.inc.php index 1366baa7b..40479d2c4 100644 --- a/libraries/server_links.inc.php +++ b/libraries/server_links.inc.php @@ -87,9 +87,9 @@ $tabs['import']['icon'] = 'b_import.png'; $tabs['import']['link'] = 'server_import.php'; $tabs['import']['text'] = $strImport; -$tabs['import']['icon'] = 's_sync.png'; -$tabs['import']['link'] = 'server_synchronize.php'; -$tabs['import']['text'] = $strSynchronize; +$tabs['synchronize']['icon'] = 's_sync.png'; +$tabs['synchronize']['link'] = 'server_synchronize.php'; +$tabs['synchronize']['text'] = $strSynchronize; echo PMA_generate_html_tabs($tabs, array()); unset($tabs); From c7c77f9744e8bcd5eb27a4df86b2375dff2881ad Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Wed, 17 Mar 2010 22:50:27 +0100 Subject: [PATCH 12/14] fix mistake in merge --- tbl_change.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tbl_change.php b/tbl_change.php index fae0455e4..0c89a173e 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -462,11 +462,7 @@ foreach ($rows as $row_id => $vrow) { . htmlspecialchars($vrow[$field['Field']]) . '" />'; } else { // (we are inserting) -<<<<<<< HEAD // display default values -======= - // loic1: display default values ->>>>>>> QA_3_3 if (!isset($field['Default'])) { $field['Default'] = ''; $real_null_value = TRUE; @@ -482,11 +478,7 @@ foreach ($rows as $row_id => $vrow) { $backup_field = ''; $special_chars_encoded = PMA_duplicateFirstNewline($special_chars); // this will select the UNHEX function while inserting -<<<<<<< HEAD if (($field['is_binary'] || $field['is_blob']) && $_SESSION['tmp_user_values']['display_binary_as_hex'] && $cfg['ShowFunctionFields'] && ! $cfg['ProtectBinary']) { -======= - if (($field['is_binary'] || $field['is_blob']) && $_SESSION['tmp_user_values']['display_binary_as_hex'] && $cfg['ShowFunctionFields']) { ->>>>>>> QA_3_3 $field['display_binary_as_hex'] = true; } } From 7e77192187443d78a7de5ccdec174520608a661a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 18 Mar 2010 13:02:13 -0400 Subject: [PATCH 13/14] rfe 2958013 After import, also list uploaded filename --- ChangeLog | 2 ++ import.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index ab7277ca6..f9ec21d78 100644 --- a/ChangeLog +++ b/ChangeLog @@ -49,6 +49,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA + [lang] Turkish update, thanks to Burak Yavuz + rfe #2963310 [interface] Focus TEXTAREA "sql_query" on click on "SQL" link + [lang] Uzbek update, thanks to Orzu Samarqandiy ++ rfe #2958013 [import] After import, also list uploaded filename, thanks + to Pavel Konnikov and Herman van Rink 3.3.2.0 (not yet released) - patch #2969449 [core] Name for MERGE engine varies depending on the diff --git a/import.php b/import.php index 7aa6088fb..7f06ceb74 100644 --- a/import.php +++ b/import.php @@ -411,9 +411,11 @@ if (!empty($id_bookmark) && $action_bookmark == 2) { $message->addParam($executed_queries); $message->addString($import_notice); + $message->addString('(' . $_FILES['import_file']['name'] . ')'); } else { $message = PMA_Message::success('strImportSuccessfullyFinished'); $message->addParam($executed_queries); + $message->addString('(' . $_FILES['import_file']['name'] . ')'); } } } From 02091f0486ed5e4ccfa2ee92d1c14b8821a60e7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 19 Mar 2010 00:29:20 +0100 Subject: [PATCH 14/14] Refresh po files. --- po/af.po | 2 +- po/ar.po | 2 +- po/az.po | 2 +- po/be.po | 2 +- po/be@latin.po | 2 +- po/bg.po | 2 +- po/bn.po | 2 +- po/bs.po | 2 +- po/ca.po | 2 +- po/cs.po | 4 ++-- 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 | 8 ++++---- 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/mn.po | 2 +- po/ms.po | 2 +- po/nb.po | 9 ++++----- po/nl.po | 2 +- po/phpmyadmin.pot | 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 | 2 +- po/sk.po | 2 +- po/sl.po | 2 +- po/sq.po | 2 +- po/sr.po | 2 +- po/sr@latin.po | 2 +- po/sv.po | 2 +- po/te.po | 2 +- po/th.po | 2 +- po/tr.po | 2 +- po/tt.po | 2 +- po/uk.po | 2 +- po/uz.po | 2 +- po/uz@latin.po | 2 +- po/zh_CN.po | 2 +- po/zh_TW.po | 2 +- 59 files changed, 66 insertions(+), 67 deletions(-) diff --git a/po/af.po b/po/af.po index e98437ea1..077889027 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: afrikaans \n" diff --git a/po/ar.po b/po/ar.po index 8841edd8c..06f29cbc9 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: arabic \n" diff --git a/po/az.po b/po/az.po index dc78413ca..cc49af521 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" diff --git a/po/be.po b/po/be.po index cdb519b95..4a5450a39 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" diff --git a/po/be@latin.po b/po/be@latin.po index bca822016..1ad797b3a 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_latin \n" diff --git a/po/bg.po b/po/bg.po index 2233220e6..c39fc8bc2 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bulgarian \n" diff --git a/po/bn.po b/po/bn.po index 03a673d07..61e782bf9 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bangla \n" diff --git a/po/bs.po b/po/bs.po index bf25893ff..eadc1bbc1 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" diff --git a/po/ca.po b/po/ca.po index c0628f291..fb755c3eb 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: catalan \n" diff --git a/po/cs.po b/po/cs.po index f8cc01426..2fbbe24b7 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-19 01:24+0200\n" "Last-Translator: Michal \n" "Language-Team: czech \n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" diff --git a/po/da.po b/po/da.po index 650bbc4e9..b7d933743 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: danish \n" diff --git a/po/de.po b/po/de.po index 947dbb274..741b7a5b1 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 11:16+0200\n" "Last-Translator: Michal \n" "Language-Team: german \n" diff --git a/po/el.po b/po/el.po index d3f6b67f5..d53fa27c7 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: greek \n" diff --git a/po/en_GB.po b/po/en_GB.po index 2e76dc0c3..e38c7459c 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 11:13+0200\n" "Last-Translator: Michal \n" "Language-Team: english-gb \n" diff --git a/po/es.po b/po/es.po index 5fdbaa44c..5a81a8ac0 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 11:23+0200\n" "Last-Translator: Michal \n" "Language-Team: spanish \n" diff --git a/po/et.po b/po/et.po index e4156672e..7e6514839 100644 --- a/po/et.po +++ b/po/et.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" diff --git a/po/eu.po b/po/eu.po index 8c46e06f3..dd765ac6c 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: basque \n" diff --git a/po/fa.po b/po/fa.po index 38b5839fd..52628541a 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: persian \n" diff --git a/po/fi.po b/po/fi.po index d9795f177..8c9fb5f35 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: finnish \n" diff --git a/po/fr.po b/po/fr.po index 41d07e95c..f6c77c0fa 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 17:49+0200\n" "Last-Translator: \n" "Language-Team: french \n" diff --git a/po/gl.po b/po/gl.po index d6b1da460..eee37b99b 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: galician \n" diff --git a/po/he.po b/po/he.po index ab0d8b89f..63f930cd4 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hebrew \n" diff --git a/po/hi.po b/po/hi.po index 322881668..f1a96f609 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hindi \n" diff --git a/po/hr.po b/po/hr.po index f278e83db..3f8e93f82 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: croatian \n" diff --git a/po/hu.po b/po/hu.po index 9d12bb5fc..79453c6d9 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hungarian \n" diff --git a/po/id.po b/po/id.po index db292b09e..c031a7ddf 100644 --- a/po/id.po +++ b/po/id.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-18 17:15+0200\n" "Last-Translator: Azhari Harahap \n" "Language-Team: indonesian \n" -"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -348,8 +348,8 @@ msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -"Kemungkinan hanya perkiraan saja. Lihat " -"[a@./Documentation.html#faq3_11@Dokumentasi]FAQ 3.11[/a]" +"Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation." +"html#faq3_11@Dokumentasi]FAQ 3.11[/a]" #: libraries/messages.inc.php:70 #, php-format diff --git a/po/it.po b/po/it.po index b78bf8b9a..4d7400553 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: italian \n" diff --git a/po/ja.po b/po/ja.po index 2212a9eb2..62fbd7312 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 11:22+0200\n" "Last-Translator: Michal \n" "Language-Team: japanese \n" diff --git a/po/ka.po b/po/ka.po index a4d113dd8..50d5e221f 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" diff --git a/po/ko.po b/po/ko.po index 870a635b0..f08643db4 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: korean \n" diff --git a/po/lt.po b/po/lt.po index ff2dfb242..fe4cb83ec 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: lithuanian \n" diff --git a/po/lv.po b/po/lv.po index a53e6aaa6..7cbae74b6 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" diff --git a/po/mk.po b/po/mk.po index 74f2a7e22..55dc5b5dd 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: macedonian_cyrillic \n" diff --git a/po/mn.po b/po/mn.po index 70b9927b6..69443fee2 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" diff --git a/po/ms.po b/po/ms.po index 6de951d05..1611a755e 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" diff --git a/po/nb.po b/po/nb.po index 05b35681d..5126a9264 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-17 16:27+0200\n" "Last-Translator: \n" "Language-Team: norwegian \n" -"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -3012,9 +3012,8 @@ msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -"Slå på avansert funksjonalitet i konfigurasjonsfila " -"(config.inc.php), f.eks. med eksempel fra " -"config.sample.inc.php." +"Slå på avansert funksjonalitet i konfigurasjonsfila (config.inc.php), f.eks. med eksempel fra config.sample.inc.php." #: libraries/messages.inc.php:668 msgid "Quick steps to setup advanced features:" diff --git a/po/nl.po b/po/nl.po index e4e16179a..a00ecc74b 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 12:22+0200\n" "Last-Translator: \n" "Language-Team: dutch \n" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 12864878d..5ef50c837 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/pl.po b/po/pl.po index 3efb97c2b..1db7b8a63 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: polish \n" diff --git a/po/pt.po b/po/pt.po index b8f6d4c1f..c29053623 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: portuguese \n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 3778af16a..883a3c5e4 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:47+0200\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: brazilian_portuguese \n" diff --git a/po/ro.po b/po/ro.po index a85f67366..1c796455b 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-13 00:41+0200\n" "Last-Translator: \n" "Language-Team: romanian \n" diff --git a/po/ru.po b/po/ru.po index cbaf6dafe..8df6fc1d8 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:18+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: russian \n" diff --git a/po/si.po b/po/si.po index b991e143c..2d7d18eb6 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:18+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: sinhala \n" diff --git a/po/sk.po b/po/sk.po index caae51f1e..017cbc07a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:18+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: slovak \n" diff --git a/po/sl.po b/po/sl.po index 2cec417a2..f9a3f8234 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: slovenian \n" diff --git a/po/sq.po b/po/sq.po index a1bfe2441..dbe30d45d 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: albanian \n" diff --git a/po/sr.po b/po/sr.po index f20535aca..1709ba46e 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:18+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: serbian_cyrillic \n" diff --git a/po/sr@latin.po b/po/sr@latin.po index a26cbdd49..f32fa5cef 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:18+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: serbian_latin \n" diff --git a/po/sv.po b/po/sv.po index 2bc65235b..6f1f54364 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: swedish \n" diff --git a/po/te.po b/po/te.po index 46d20c3ec..c7d68abb6 100644 --- a/po/te.po +++ b/po/te.po @@ -5,7 +5,7 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-03-12 09:48+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" diff --git a/po/th.po b/po/th.po index 952d89a44..d95b79c67 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" diff --git a/po/tr.po b/po/tr.po index 7fd7ddc51..e11373ed7 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: turkish \n" diff --git a/po/tt.po b/po/tt.po index 89381fdf8..b5f54c4ff 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: tatarish \n" diff --git a/po/uk.po b/po/uk.po index 01930d8c6..89871f4a0 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: ukrainian \n" diff --git a/po/uz.po b/po/uz.po index 6a351f996..789ec4da3 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: uzbek_cyrillic \n" diff --git a/po/uz@latin.po b/po/uz@latin.po index 5c3f8e78a..614f8ea94 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: uzbek_latin \n" diff --git a/po/zh_CN.po b/po/zh_CN.po index b0d04bb45..ca4111256 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-18 06:49+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" diff --git a/po/zh_TW.po b/po/zh_TW.po index 7ca339385..3d147f568 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-03-12 09:48+0100\n" +"POT-Creation-Date: 2010-03-19 00:28+0100\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: chinese_traditional \n"