Git
Threads by month
- ----- 2025 -----
- 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
May 2011
- 7 participants
- 287 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_1RC1-32-g1630500
by Madhura Jayaratne 22 May '11
by Madhura Jayaratne 22 May '11
22 May '11
The branch, QA_3_4 has been updated
via 16305005c58e57b4f89150fe01b93f9071131601 (commit)
from f5eaf8c7d87e2c793f26127da20d25becf959ad8 (commit)
- Log -----------------------------------------------------------------
commit 16305005c58e57b4f89150fe01b93f9071131601
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Sun May 22 13:00:39 2011 +0530
bug #3305517 [config] Config for export compression not used
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/display_export.lib.php | 4 +++-
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 5aede20..3942083 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@
- bug #3303869 [interface] Unnecessary scrolling on Databases page
- patch #3303813 [setup] Define a label that was missing
- bug #3305606 [interface] Show all button wraps on privileges page
+- bug #3305517 [config] Config for export compression not used
3.4.1.0 (2011-05-20)
- bug #3301108 [interface] Synchronize and already configured host
diff --git a/libraries/display_export.lib.php b/libraries/display_export.lib.php
index 10e8178..87c3a8e 100644
--- a/libraries/display_export.lib.php
+++ b/libraries/display_export.lib.php
@@ -296,7 +296,9 @@ if(isset($_GET['sql_query'])) {
?>
<?php
if(isset($_GET['compression'])) {
- $selected_compression = $_GET['compression'];
+ $selected_compression = $_GET['compression'];
+ } elseif (isset($cfg['Export']['compression'])) {
+ $selected_compression = $cfg['Export']['compression'];
} else {
$selected_compression = "none";
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_1RC1-1806-g633f630
by Madhura Jayaratne 22 May '11
by Madhura Jayaratne 22 May '11
22 May '11
The branch, master has been updated
via 633f63004bfd3fd587dd8c164486dc302accafb2 (commit)
via f5eaf8c7d87e2c793f26127da20d25becf959ad8 (commit)
via 16a28bbeaa9bc70a82891b5aac9a88d45987659b (commit)
from f64de0a3ead27c07b99231097bc226f8de4f9048 (commit)
- Log -----------------------------------------------------------------
commit 633f63004bfd3fd587dd8c164486dc302accafb2
Merge: f64de0a3ead27c07b99231097bc226f8de4f9048 f5eaf8c7d87e2c793f26127da20d25becf959ad8
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Sun May 22 09:33:48 2011 +0530
Merge branch 'QA_3_4'
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
server_privileges.php | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index d2da49e..b9650f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,6 +13,7 @@
- bug #3301249 [interface] Iconic table operations does not remove inline edit label
- bug #3303869 [interface] Unnecessary scrolling on Databases page
- patch #3303813 [setup] Define a label that was missing
+- bug #3305606 [interface] Show all button wraps on privileges page
3.4.1.0 (2011-05-20)
- bug #3301108 [interface] Synchronize and already configured host
diff --git a/server_privileges.php b/server_privileges.php
index 1407fdf..ec2f0a7 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -1159,7 +1159,7 @@ if (!empty($update_privs)) {
$sql_query2 .= ';';
}
if (! PMA_DBI_try_query($sql_query0)) {
- // This might fail when the executing user does not have ALL PRIVILEGES himself.
+ // This might fail when the executing user does not have ALL PRIVILEGES himself.
// See https://sourceforge.net/tracker/index.php?func=detail&aid=3285929&group_id=…
$sql_query0 = '';
}
@@ -1580,7 +1580,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs
echo '<td>' . $tmp_initial . '</td>';
}
}
- echo '<td><a href="server_privileges.php?' . $GLOBALS['url_query'] . '&showall=1">[' . __('Show all') . ']</a></td>' . "\n";
+ echo '<td><a href="server_privileges.php?' . $GLOBALS['url_query'] . '&showall=1" class="nowrap">[' . __('Show all') . ']</a></td>' . "\n";
echo '</tr></table>';
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_1RC1-31-gf5eaf8c
by Madhura Jayaratne 22 May '11
by Madhura Jayaratne 22 May '11
22 May '11
The branch, QA_3_4 has been updated
via f5eaf8c7d87e2c793f26127da20d25becf959ad8 (commit)
from 16a28bbeaa9bc70a82891b5aac9a88d45987659b (commit)
- Log -----------------------------------------------------------------
commit f5eaf8c7d87e2c793f26127da20d25becf959ad8
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Sun May 22 09:30:44 2011 +0530
bug #3305606 [interface] Show all button wraps on privileges page
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
server_privileges.php | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 1f945db..5aede20 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,7 @@
- bug #3301249 [interface] Iconic table operations does not remove inline edit label
- bug #3303869 [interface] Unnecessary scrolling on Databases page
- patch #3303813 [setup] Define a label that was missing
+- bug #3305606 [interface] Show all button wraps on privileges page
3.4.1.0 (2011-05-20)
- bug #3301108 [interface] Synchronize and already configured host
diff --git a/server_privileges.php b/server_privileges.php
index 11714c4..7e60f09 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -1159,7 +1159,7 @@ if (!empty($update_privs)) {
$sql_query2 .= ';';
}
if (! PMA_DBI_try_query($sql_query0)) {
- // This might fail when the executing user does not have ALL PRIVILEGES himself.
+ // This might fail when the executing user does not have ALL PRIVILEGES himself.
// See https://sourceforge.net/tracker/index.php?func=detail&aid=3285929&group_id=…
$sql_query0 = '';
}
@@ -1580,7 +1580,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs
echo '<td>' . $tmp_initial . '</td>';
}
}
- echo '<td><a href="server_privileges.php?' . $GLOBALS['url_query'] . '&showall=1">[' . __('Show all') . ']</a></td>' . "\n";
+ echo '<td><a href="server_privileges.php?' . $GLOBALS['url_query'] . '&showall=1" class="nowrap">[' . __('Show all') . ']</a></td>' . "\n";
echo '</tr></table>';
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_1RC1-1803-gf64de0a
by Dieter Adriaenssens 20 May '11
by Dieter Adriaenssens 20 May '11
20 May '11
The branch, master has been updated
via f64de0a3ead27c07b99231097bc226f8de4f9048 (commit)
via fe53e42d1dfff53967ef5c3d6930b1bd9ac4b428 (commit)
from da8521c9b181199b21555488e20f237b0eae3ad3 (commit)
- Log -----------------------------------------------------------------
commit f64de0a3ead27c07b99231097bc226f8de4f9048
Author: Dieter Adriaenssens <ruleant(a)users.sourceforge.net>
Date: Fri May 20 23:21:11 2011 +0200
Remove deprecated function PMA_DBI_get_fields
commit fe53e42d1dfff53967ef5c3d6930b1bd9ac4b428
Author: Piotr Przybylski <piotrprz(a)gmail.com>
Date: Wed May 18 20:49:04 2011 +0200
Remove deprecated function PMA_DBI_get_fields
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
db_qbe.php | 2 +-
libraries/database_interface.lib.php | 23 -----------------------
libraries/import/csv.php | 2 +-
libraries/relation.lib.php | 6 +++---
libraries/replication_gui.lib.php | 2 +-
libraries/server_synchronize.lib.php | 10 +++++-----
server_privileges.php | 2 +-
tbl_indexes.php | 2 +-
9 files changed, 14 insertions(+), 36 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 2219ea4..d2da49e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,7 @@
+ Update to jQuery 1.6.1
+ Patch #3256122 [search] Show/hide db search results
+ Patch #3302354 Add gettext wrappers around a message
++ Remove deprecated function PMA_DBI_get_fields
3.4.2.0 (not yet released)
- bug #3301249 [interface] Iconic table operations does not remove inline edit label
diff --git a/db_qbe.php b/db_qbe.php
index 34c85ee..a076798 100644
--- a/db_qbe.php
+++ b/db_qbe.php
@@ -105,7 +105,7 @@ if (0 == $tbl_result_cnt) {
// The tables list gets from MySQL
while (list($tbl) = PMA_DBI_fetch_row($tbl_result)) {
- $fld_results = PMA_DBI_get_fields($db, $tbl);
+ $fld_results = PMA_DBI_get_columns($db, $tbl, true);
if (empty($tbl_names[$tbl]) && !empty($_REQUEST['TableList'])) {
$tbl_names[$tbl] = '';
diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php
index be8d9f5..9735a82 100644
--- a/libraries/database_interface.lib.php
+++ b/libraries/database_interface.lib.php
@@ -775,29 +775,6 @@ function PMA_DBI_get_columns_full($database = null, $table = null,
}
/**
- * @todo should only return columns names, for more info use PMA_DBI_get_columns_full()
- *
- * @deprecated by PMA_DBI_get_columns() or PMA_DBI_get_columns_full()
- * @param string $database name of database
- * @param string $table name of table to retrieve columns from
- * @param mixed $link mysql link resource
- * @return array column info
- */
-function PMA_DBI_get_fields($database, $table, $link = null)
-{
- // here we use a try_query because when coming from
- // tbl_create + tbl_properties.inc.php, the table does not exist
- $fields = PMA_DBI_fetch_result(
- 'SHOW FULL COLUMNS
- FROM ' . PMA_backquote($database) . '.' . PMA_backquote($table),
- null, null, $link);
- if (! is_array($fields) || count($fields) < 1) {
- return false;
- }
- return $fields;
-}
-
-/**
* array PMA_DBI_get_columns(string $database, string $table, bool $full = false, mysql db link $link = null)
*
* @param string $database name of database
diff --git a/libraries/import/csv.php b/libraries/import/csv.php
index aaff1b1..757e3b4 100644
--- a/libraries/import/csv.php
+++ b/libraries/import/csv.php
@@ -106,7 +106,7 @@ if (!$analyze) {
}
$sql_template .= ' INTO ' . PMA_backquote($table);
- $tmp_fields = PMA_DBI_get_fields($db, $table);
+ $tmp_fields = PMA_DBI_get_columns($db, $table);
if (empty($csv_columns)) {
$fields = $tmp_fields;
diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php
index 9588853..338f833 100644
--- a/libraries/relation.lib.php
+++ b/libraries/relation.lib.php
@@ -517,7 +517,7 @@ function PMA_getDisplayField($db, $table)
* Gets the comments for all rows of a table or the db itself
*
* @access public
- * @uses PMA_DBI_get_fields()
+ * @uses PMA_DBI_get_columns()
* @uses PMA_getDbComment()
* @param string the name of the db to check for
* @param string the name of the table to check for
@@ -529,9 +529,9 @@ function PMA_getComments($db, $table = '')
if ($table != '') {
// MySQL native column comments
- $fields = PMA_DBI_get_fields($db, $table);
+ $fields = PMA_DBI_get_columns($db, $table);
if ($fields) {
- foreach ($fields as $key => $field) {
+ foreach ($fields as $field) {
if (! empty($field['Comment'])) {
$comments[$field['Field']] = $field['Comment'];
}
diff --git a/libraries/replication_gui.lib.php b/libraries/replication_gui.lib.php
index d64e5f4..1d99166 100644
--- a/libraries/replication_gui.lib.php
+++ b/libraries/replication_gui.lib.php
@@ -204,7 +204,7 @@ function PMA_replication_print_slaves_table($hidden = false) {
*/
function PMA_replication_get_username_hostname_length() {
- $fields_info = PMA_DBI_get_fields('mysql', 'user');
+ $fields_info = PMA_DBI_get_columns('mysql', 'user');
$username_length = 16;
$hostname_length = 41;
foreach ($fields_info as $key => $val) {
diff --git a/libraries/server_synchronize.lib.php b/libraries/server_synchronize.lib.php
index ba6f813..aca007f 100644
--- a/libraries/server_synchronize.lib.php
+++ b/libraries/server_synchronize.lib.php
@@ -68,7 +68,7 @@ function PMA_getNonMatchingTargetTables($trg_tables, $matching_tables, &$uncommo
* If update is required, it is placed in $update_array
* Otherwise that entry is placed in the $insert_array.
*
- * @uses PMA_DBI_get_fields()
+ * @uses PMA_DBI_get_columns()
* @uses PMA_DBI_get_column_values()
* @uses PMA_DBI_fetch_result()
*
@@ -95,7 +95,7 @@ function PMA_dataDiffInTables($src_db, $trg_db, $src_link, $trg_link, &$matching
{
if (isset($matching_table[$matching_table_index])) {
$fld = array();
- $fld_results = PMA_DBI_get_fields($src_db, $matching_table[$matching_table_index], $src_link);
+ $fld_results = PMA_DBI_get_columns($src_db, $matching_table[$matching_table_index], true, $src_link);
$is_key = array();
if (isset($fld_results)) {
foreach ($fld_results as $each_field) {
@@ -113,7 +113,7 @@ function PMA_dataDiffInTables($src_db, $trg_db, $src_link, $trg_link, &$matching
$source_result_set = PMA_DBI_get_column_values($src_db, $matching_table[$matching_table_index], $is_key, $src_link);
$source_size = sizeof($source_result_set);
- $trg_fld_results = PMA_DBI_get_fields($trg_db, $matching_table[$matching_table_index], $trg_link);
+ $trg_fld_results = PMA_DBI_get_columns($trg_db, $matching_table[$matching_table_index], true, $trg_link);
$all_keys_match = true;
$trg_keys = array();
@@ -597,7 +597,7 @@ function PMA_insertIntoTargetTable($matching_table, $src_db, $trg_db, $src_link,
/**
* PMA_createTargetTables() Create the missing table $uncommon_table in target database
*
-* @uses PMA_DBI_get_fields()
+* @uses PMA_DBI_get_columns()
* @uses PMA_backquote()
* @uses PMA_DBI_fetch_result()
*
@@ -613,7 +613,7 @@ function PMA_insertIntoTargetTable($matching_table, $src_db, $trg_db, $src_link,
function PMA_createTargetTables($src_db, $trg_db, $src_link, $trg_link, &$uncommon_tables, $table_index, &$uncommon_tables_fields, $display)
{
if (isset($uncommon_tables[$table_index])) {
- $fields_result = PMA_DBI_get_fields($src_db, $uncommon_tables[$table_index], $src_link);
+ $fields_result = PMA_DBI_get_columns($src_db, $uncommon_tables[$table_index], true, $src_link);
$fields = array();
foreach ($fields_result as $each_field) {
$field_name = $each_field['Field'];
diff --git a/server_privileges.php b/server_privileges.php
index e2a930e..1407fdf 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -663,7 +663,7 @@ function PMA_displayPrivTable($db = '*', $table = '*', $submit = TRUE)
function PMA_displayLoginInformationFields($mode = 'new')
{
// Get user/host name lengths
- $fields_info = PMA_DBI_get_fields('mysql', 'user');
+ $fields_info = PMA_DBI_get_columns('mysql', 'user', true);
$username_length = 16;
$hostname_length = 41;
foreach ($fields_info as $key => $val) {
diff --git a/tbl_indexes.php b/tbl_indexes.php
index 46e5e1c..5fcfee9 100644
--- a/tbl_indexes.php
+++ b/tbl_indexes.php
@@ -15,7 +15,7 @@ require_once './libraries/tbl_common.php';
// Get fields and stores their name/type
$fields = array();
-foreach (PMA_DBI_get_fields($db, $table) as $row) {
+foreach (PMA_DBI_get_columns($db, $table) as $row) {
if (preg_match('@^(set|enum)\((.+)\)$@i', $row['Type'], $tmp)) {
$tmp[2] = substr(preg_replace('@([^,])\'\'@', '\\1\\\'',
',' . $tmp[2]), 1);
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, TESTING, updated. RELEASE_3_4_1-34-g16c6767
by Marc Delisle 20 May '11
by Marc Delisle 20 May '11
20 May '11
The branch, TESTING has been updated
via 16c676770195eb0f680b52e7413a2e0916adfd31 (commit)
via 8c1fbf450500a6903aab062c837139baf3a7296b (commit)
via 89c8f3cbfe5356995ad71e5a41438e81fa994a55 (commit)
via 7e10c132a3887c8ebfd7a8eee356b28375f1e287 (commit)
via d3ccf798fdbd4f8a89d4088130637d8dee918492 (commit)
via b7a8179eb6bf0f1643970ac57a70b5b513a1cd4f (commit)
via ecfc8ba4f7b4ea612c58ab5726054ed0f28e200d (commit)
via 32d8446e01d5097599e89cb78ade338f03e82a1d (commit)
via e043bfe2afa2617b3983ff27e248be18b4b2c6a9 (commit)
via b0ff5b4b51dbcd79c8600a2a1050a4878829ed48 (commit)
via 4ef745156e730a06713a055830febb5dcf3b1a1a (commit)
via 844d105898eb373f1d8b46da6abdfd2cb767b729 (commit)
via 2d388d5856361dcadce0433deb6c08fe8555e13d (commit)
via a22536915748fbaa4fa62ef6f624abfa5126891a (commit)
from c543557920a2e934be4d6fb0678013fab4e9f4b9 (commit)
- Log -----------------------------------------------------------------
commit 16c676770195eb0f680b52e7413a2e0916adfd31
Merge: c543557920a2e934be4d6fb0678013fab4e9f4b9 8c1fbf450500a6903aab062c837139baf3a7296b
Author: Marc Delisle <marc(a)infomarc.info>
Date: Fri May 20 13:24:39 2011 -0400
Merge branch 'MAINT_3_4_1' into TESTING
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 6 +-
Documentation.html | 4 +-
README | 2 +-
libraries/Config.class.php | 2 +-
libraries/common.inc.php | 2 -
libraries/core.lib.php | 8 +-
libraries/tbl_links.inc.php | 2 +-
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 | 212 ++++++++++---------
po/bn.po | 2 +-
po/bs.po | 2 +-
po/ca.po | 2 +-
po/cs.po | 2 +-
po/cy.po | 10 +-
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 | 48 +++---
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 | 4 +-
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 | 2 +-
po/sk.po | 484 ++++++++++++++++++++++++++-----------------
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 +-
tbl_tracking.php | 12 +-
url.php | 6 +-
72 files changed, 518 insertions(+), 400 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index b87e82a..94d4119 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,7 @@
phpMyAdmin - ChangeLog
======================
-3.4.1.0 (not yet released)
+3.4.1.0 (2011-05-20)
- bug #3301108 [interface] Synchronize and already configured host
- bug #3302457 Inline edit and $cfg['PropertiesIconic']
- Patch #3302313 Show a translated label
@@ -9,6 +9,7 @@
- bug #3285929 [privileges] Revert temporary fix
- bug #3302872 [synchronize] Synchronize and user name
- bug #3302733 [core] Some browsers report an insecure https connection
+- [security] Make redirector require valid token
3.4.0.0 (2011-05-11)
+ rfe #2890226 [view] Enable VIEW rename
@@ -167,6 +168,9 @@
3.3.11.0 (not yet released)
+3.3.10.1 (2011-05-20)
+- [security] XSS on Tracking page
+
3.3.10.0 (2011-03-19)
- patch #3147400 [structure] Aria table size printed as unknown,
thanks to erickoh75 - erickoh75
diff --git a/Documentation.html b/Documentation.html
index 0b30194..d9627dd 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -9,7 +9,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.4.1-rc1 - Documentation</title>
+ <title>phpMyAdmin 3.4.1 - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -17,7 +17,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span class="myadmin">MyAdmin</span></a>
- 3.4.1-rc1
+ 3.4.1
Documentation
</h1>
</div>
diff --git a/README b/README
index d728493..2d0d4c1 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================
-Version 3.4.1-rc1
+Version 3.4.1
A set of PHP-scripts to manage MySQL over the web.
diff --git a/libraries/Config.class.php b/libraries/Config.class.php
index d0f4903..73a379b 100644
--- a/libraries/Config.class.php
+++ b/libraries/Config.class.php
@@ -96,7 +96,7 @@ class PMA_Config
*/
function checkSystem()
{
- $this->set('PMA_VERSION', '3.4.1-rc1');
+ $this->set('PMA_VERSION', '3.4.1');
/**
* @deprecated
*/
diff --git a/libraries/common.inc.php b/libraries/common.inc.php
index 49937c8..7d71993 100644
--- a/libraries/common.inc.php
+++ b/libraries/common.inc.php
@@ -477,8 +477,6 @@ if (! PMA_isValid($_REQUEST['token']) || $_SESSION[' PMA_token '] != $_REQUEST['
'media_type', 'custom_type', 'bs_reference',
/* for changing BLOB repository file MIME type */
'bs_db', 'bs_table', 'bs_ref', 'bs_new_mime_type',
- /* URL redirector */
- 'url'
);
/**
* Require cleanup functions
diff --git a/libraries/core.lib.php b/libraries/core.lib.php
index 76d2c86..1350247 100644
--- a/libraries/core.lib.php
+++ b/libraries/core.lib.php
@@ -681,12 +681,12 @@ function PMA_array_remove($path, &$array)
* @return string URL for a link.
*/
function PMA_linkURL($url) {
- if (!preg_match('#^https?://#', $url)) {
+ if (!preg_match('#^https?://#', $url) || defined('PMA_SETUP')) {
return $url;
- } elseif (defined('PMA_SETUP')) {
- return '../url.php?url=' . $url;
} else {
- return './url.php?url=' . $url;
+ $params = array();
+ $params['url'] = $url;
+ return './url.php' . PMA_generate_common_url($params);
}
}
diff --git a/libraries/tbl_links.inc.php b/libraries/tbl_links.inc.php
index bc72d21..e31dd53 100644
--- a/libraries/tbl_links.inc.php
+++ b/libraries/tbl_links.inc.php
@@ -112,7 +112,7 @@ unset($tabs);
if(PMA_Tracker::isActive() and PMA_Tracker::isTracked($GLOBALS["db"], $GLOBALS["table"]))
{
- $msg = PMA_Message::notice('<a href="tbl_tracking.php?'.$url_query.'">'.sprintf(__('Tracking of %s.%s is activated.'), $GLOBALS["db"], $GLOBALS["table"]).'</a>');
+ $msg = PMA_Message::notice('<a href="tbl_tracking.php?'.$url_query.'">'.sprintf(__('Tracking of %s.%s is activated.'), htmlspecialchars($GLOBALS["db"]), htmlspecialchars($GLOBALS["table"])).'</a>');
$msg->display();
}
diff --git a/po/af.po b/po/af.po
index dfb47f3..4bcb300 100644
--- a/po/af.po
+++ b/po/af.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.1-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-16 10:31+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
diff --git a/po/ar.po b/po/ar.po
index 4d186a3..b716a17 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.1-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-16 10:31+0200\n"
"PO-Revision-Date: 2011-04-21 13:56+0200\n"
diff --git a/po/az.po b/po/az.po
index f3e9bbb..a22e342 100644
--- a/po/az.po
+++ b/po/az.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.1-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-16 10:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
diff --git a/po/be.po b/po/be.po
index e70dfcc..0557710 100644
--- a/po/be.po
+++ b/po/be.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.1-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-16 10: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 5ef89d6..c096453 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.1-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-16 10:31+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
diff --git a/po/bg.po b/po/bg.po
index 0af4468..778ce57 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.1-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-16 10:31+0200\n"
"PO-Revision-Date: 2011-03-22 12:51+0200\n"
@@ -96,15 +96,15 @@ msgstr "Използване тази стойност"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
-msgstr ""
+msgstr "Няма зададен BLOB поточен сървър!"
#: bs_disp_as_mime_type.php:35
msgid "Failed to fetch headers"
-msgstr ""
+msgstr "Зареждането на заглавките се провали"
#: bs_disp_as_mime_type.php:41
msgid "Failed to open remote URL"
-msgstr ""
+msgstr "Отваряенто на отдалечения адрес се провали"
#: changelog.php:32 license.php:28
#, php-format
@@ -345,6 +345,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
+"Хранилището за конфигурацията на phpMyAdmin е деактивирано. За да разберете "
+"защо натиснете %sтук%s."
#: db_operations.php:600
msgid "Edit or export relational schema"
@@ -612,7 +614,7 @@ msgstr "Проследяването е неактивно."
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
-msgstr ""
+msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s"
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -795,7 +797,7 @@ msgstr "Въведете всяка стойност в отделно поле.
#: enum_editor.php:57
msgid "+ Restart insertion and add a new value"
-msgstr ""
+msgstr "+ Рестартиране на вмъкването и добавяне нова стойност"
#: enum_editor.php:67
msgid "Output"
@@ -804,6 +806,7 @@ msgstr "Изход"
#: enum_editor.php:68
msgid "Copy and paste the joined values into the \"Length/Values\" field"
msgstr ""
+"Копиране и поставяне на слепените стойности в полето \"Дължина/Стойности\""
#: export.php:73
msgid "Selected export type has to be saved in file!"
@@ -854,6 +857,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
+"Опитвате да заредите файл с неподдържана компресия (%s). Или поддръжката ѝ "
+"не е реализирана, или е изключена от конфигурацията."
#: import.php:336
msgid ""
@@ -861,6 +866,9 @@ msgid ""
"file size exceeded the maximum size permitted by your PHP configuration. See "
"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]."
msgstr ""
+"Не бяха получени данни за импорт. Или не е изпратен файл, или файлът е бил "
+"по-голям от разрешеното в конфигурацията на PHP. Вижте [a@./Documentation."
+"html#faq1_16@Documentation]ЧЗВ 1.16[/a]."
#: import.php:371 libraries/display_import.lib.php:23
msgid "Could not load import plugins, please check your installation!"
@@ -891,6 +899,8 @@ msgid ""
"Script timeout passed, if you want to finish import, please resubmit same "
"file and import will resume."
msgstr ""
+"Времето за изчакване на скрипта изтече. Ако искате да завършите импорта го "
+"пуснете отново и той ще си продължи."
#: import.php:425
msgid ""
@@ -961,7 +971,7 @@ msgstr "Операцията може да продължи дълго. Да п
#: js/messages.php:40
msgid "You are about to DISABLE a BLOB Repository!"
-msgstr ""
+msgstr "На път сте да ИЗКЛЮЧИТЕ BLOB хранилището!"
#: js/messages.php:41
#, php-format
@@ -1432,7 +1442,7 @@ msgstr "Липсва временна папка."
#: libraries/File.class.php:322
msgid "Failed to write file to disk."
-msgstr ""
+msgstr "Запазването на файл на диска се провали."
#: libraries/File.class.php:325
msgid "File upload stopped by extension."
@@ -1447,6 +1457,8 @@ msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
+"Грешка при преместване на качения файл, вж. [a@./Documentation."
+"html#faq1_11@Documentation]ЧЗВ 1.11[/a]"
#: libraries/Index.class.php:427 tbl_relation.php:526
msgid "No index defined!"
@@ -2049,7 +2061,7 @@ msgstr "Скочи към база от данни "%s"."
#: libraries/common.lib.php:2466
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
-msgstr ""
+msgstr "Функционалността %s се влияе от известен дефект, вж. %s"
#: libraries/common.lib.php:2826 libraries/common.lib.php:2833
#: libraries/common.lib.php:3018 libraries/config/setup.forms.php:291
@@ -2086,7 +2098,7 @@ msgstr "Операции"
#: libraries/common.lib.php:2966
msgid "Browse your computer:"
-msgstr ""
+msgstr "Разглеждане на компютъра:"
#: libraries/common.lib.php:2979
#, php-format
@@ -2100,15 +2112,15 @@ msgstr "Директорията която сте указали за upload н
#: libraries/common.lib.php:2999
msgid "There are no files to upload"
-msgstr ""
+msgstr "Няма файлве за качване"
#: libraries/config.values.php:45 libraries/config.values.php:50
msgid "Both"
-msgstr ""
+msgstr "И двете"
#: libraries/config.values.php:74
msgid "Open"
-msgstr ""
+msgstr "Отворен"
#: libraries/config.values.php:74
msgid "Closed"
@@ -2125,7 +2137,7 @@ msgstr "структура"
#: libraries/export/latex.php:41 libraries/export/odt.php:33
#: libraries/export/sql.php:79 libraries/export/texytext.php:23
msgid "data"
-msgstr ""
+msgstr "данни"
#: libraries/config.values.php:97 libraries/export/htmlword.php:24
#: libraries/export/latex.php:41 libraries/export/odt.php:33
@@ -2174,29 +2186,29 @@ msgstr ""
#: libraries/config/FormDisplay.class.php:85
#: libraries/config/validate.lib.php:409
msgid "Not a valid port number"
-msgstr ""
+msgstr "Невалиден номер на порт"
#: libraries/config/FormDisplay.class.php:86
#: libraries/config/FormDisplay.class.php:574
#: libraries/config/validate.lib.php:360 libraries/config/validate.lib.php:450
msgid "Incorrect value"
-msgstr ""
+msgstr "Невалидна стойност"
#: libraries/config/FormDisplay.class.php:87
#: libraries/config/validate.lib.php:464
#, php-format
msgid "Value must be equal or lower than %s"
-msgstr ""
+msgstr "Стойността трябва да е по-малка или равна на %s"
#: libraries/config/FormDisplay.class.php:538
#, php-format
msgid "Missing data for %s"
-msgstr ""
+msgstr "Липсващи данни за %s"
#: libraries/config/FormDisplay.class.php:736
#: libraries/config/FormDisplay.class.php:740
msgid "unavailable"
-msgstr ""
+msgstr "недостъпно"
#: libraries/config/FormDisplay.class.php:737
#: libraries/config/FormDisplay.class.php:741
@@ -2207,16 +2219,16 @@ 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"
-msgstr ""
+msgstr "SQL валидаторът е изключен"
#: libraries/config/FormDisplay.class.php:773
msgid "SOAP extension not found"
@@ -2225,7 +2237,7 @@ msgstr "Разширението SOAP не е намерено"
#: libraries/config/FormDisplay.class.php:781
#, php-format
msgid "maximum %s"
-msgstr ""
+msgstr "най-много %s"
#: libraries/config/FormDisplay.tpl.php:173
msgid "This setting is disabled, it will not be applied to your configuration"
@@ -2239,7 +2251,7 @@ msgstr "Забранено"
#: libraries/config/FormDisplay.tpl.php:248
#, php-format
msgid "Set value: %s"
-msgstr ""
+msgstr "Стойност: %s"
#: libraries/config/FormDisplay.tpl.php:253
#: libraries/config/messages.inc.php:350
@@ -2304,7 +2316,7 @@ msgstr ""
#: libraries/config/messages.inc.php:27
msgid "Row marker"
-msgstr ""
+msgstr "Маркер на ред"
#: libraries/config/messages.inc.php:28
msgid "Highlight row pointed by the mouse cursor"
@@ -2322,7 +2334,7 @@ msgstr ""
#: libraries/config/messages.inc.php:31
msgid "Bzip2"
-msgstr ""
+msgstr "Bzip2"
#: libraries/config/messages.inc.php:32
msgid ""
@@ -2368,7 +2380,7 @@ msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
#: setup/frames/index.inc.php:153
msgid "Configuration file"
-msgstr ""
+msgstr "Конфигурационен файл"
#: libraries/config/messages.inc.php:42
msgid ""
@@ -2378,15 +2390,15 @@ msgstr ""
#: libraries/config/messages.inc.php:43
msgid "Confirm DROP queries"
-msgstr ""
+msgstr "Потвърждаване DROP заявки"
#: libraries/config/messages.inc.php:44
msgid "Debug SQL"
-msgstr ""
+msgstr "Трасиране SQL"
#: libraries/config/messages.inc.php:45
msgid "Default display direction"
-msgstr ""
+msgstr "Ориентация по подразбиране"
#: libraries/config/messages.inc.php:46
msgid ""
@@ -2714,11 +2726,11 @@ msgstr "CSV данни"
#: libraries/config/messages.inc.php:157
msgid "Developer"
-msgstr ""
+msgstr "Разработчик"
#: libraries/config/messages.inc.php:158
msgid "Settings for phpMyAdmin developers"
-msgstr ""
+msgstr "Настройки за разработчици на phpMyAdmin"
#: libraries/config/messages.inc.php:159
msgid "Edit mode"
@@ -2739,11 +2751,11 @@ msgstr ""
#: libraries/config/messages.inc.php:164 libraries/config/messages.inc.php:206
#: setup/frames/menu.inc.php:16
msgid "Features"
-msgstr ""
+msgstr "Свойства"
#: libraries/config/messages.inc.php:165
msgid "General"
-msgstr ""
+msgstr "Общи"
#: libraries/config/messages.inc.php:166
msgid "Set some commonly used options"
@@ -2765,7 +2777,7 @@ msgstr ""
#: libraries/config/messages.inc.php:170
msgid "Import / export"
-msgstr ""
+msgstr "Импорт / експорт"
#: libraries/config/messages.inc.php:171
msgid "Set import and export directories and compression options"
@@ -2781,7 +2793,7 @@ msgstr "Опции за показване на база данни"
#: libraries/config/messages.inc.php:176 setup/frames/menu.inc.php:18
msgid "Navigation frame"
-msgstr ""
+msgstr "Управляваща рамка"
#: libraries/config/messages.inc.php:177
msgid "Customize appearance of the navigation frame"
@@ -2794,19 +2806,19 @@ msgstr "Сървъри"
#: libraries/config/messages.inc.php:179
msgid "Servers display options"
-msgstr ""
+msgstr "Настройки показване сървъри"
#: libraries/config/messages.inc.php:181
msgid "Tables display options"
-msgstr ""
+msgstr "Настройки показване таблици"
#: libraries/config/messages.inc.php:182 setup/frames/menu.inc.php:19
msgid "Main frame"
-msgstr ""
+msgstr "Главна рамка"
#: libraries/config/messages.inc.php:183
msgid "Microsoft Office"
-msgstr ""
+msgstr "Microsoft Office"
#: libraries/config/messages.inc.php:185
msgid "Open Document"
@@ -2814,15 +2826,15 @@ msgstr "Отваряне на документ"
#: libraries/config/messages.inc.php:187
msgid "Other core settings"
-msgstr ""
+msgstr "Други основни настройки"
#: libraries/config/messages.inc.php:188
msgid "Settings that didn't fit enywhere else"
-msgstr ""
+msgstr "Настройки, които не са за другаде"
#: libraries/config/messages.inc.php:189
msgid "Page titles"
-msgstr ""
+msgstr "Заглавия на страниците"
#: libraries/config/messages.inc.php:190
msgid ""
@@ -2844,7 +2856,7 @@ msgstr ""
#: libraries/config/messages.inc.php:193
msgid "Security"
-msgstr ""
+msgstr "Сигурност"
#: libraries/config/messages.inc.php:194
msgid ""
@@ -2854,7 +2866,7 @@ msgstr ""
#: libraries/config/messages.inc.php:195
msgid "Basic settings"
-msgstr ""
+msgstr "Основни настройки"
#: libraries/config/messages.inc.php:196
msgid "Authentication"
@@ -2866,7 +2878,7 @@ msgstr "Настройки по удостоверяване"
#: libraries/config/messages.inc.php:198
msgid "Server configuration"
-msgstr ""
+msgstr "Сървърна конфигурация"
#: libraries/config/messages.inc.php:199
msgid ""
@@ -2876,11 +2888,11 @@ msgstr ""
#: libraries/config/messages.inc.php:200
msgid "Enter server connection parameters"
-msgstr ""
+msgstr "Параметри за връзка със сървъра"
#: libraries/config/messages.inc.php:201
msgid "Configuration storage"
-msgstr ""
+msgstr "Хранилище за конфигурацията"
#: libraries/config/messages.inc.php:202
msgid ""
@@ -2891,7 +2903,7 @@ msgstr ""
#: libraries/config/messages.inc.php:203
msgid "Changes tracking"
-msgstr ""
+msgstr "Следене за промени"
#: libraries/config/messages.inc.php:204
msgid ""
@@ -4147,7 +4159,7 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:258 libraries/export/ods.php:17
#: libraries/import/ods.php:22
msgid "Open Document Spreadsheet"
-msgstr ""
+msgstr "Open Document Spreadsheet"
#: libraries/config/setup.forms.php:262
#: libraries/config/user_preferences.forms.php:165
@@ -4179,7 +4191,7 @@ msgstr ""
#: libraries/config/setup.forms.php:360
#: libraries/config/user_preferences.forms.php:262 libraries/export/odt.php:21
msgid "Open Document Text"
-msgstr ""
+msgstr "Open Document Text"
#: libraries/config/validate.lib.php:202 libraries/config/validate.lib.php:209
msgid "Could not connect to MySQL server"
@@ -6114,16 +6126,16 @@ msgstr "Търсене в базата от данни"
#: libraries/server_synchronize.lib.php:1339
#: libraries/server_synchronize.lib.php:1362
msgid "Current server"
-msgstr ""
+msgstr "Текущ сървър"
#: libraries/server_synchronize.lib.php:1341
#: libraries/server_synchronize.lib.php:1364
msgid "Remote server"
-msgstr ""
+msgstr "Отдалечен сървър"
#: libraries/server_synchronize.lib.php:1344
msgid "Difference"
-msgstr ""
+msgstr "Различия"
#: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1117
#, fuzzy
@@ -6561,7 +6573,7 @@ msgstr "Колация на MySQL"
#: main.php:119
msgid "Appearance Settings"
-msgstr ""
+msgstr "Визуални настройки"
#: main.php:146 prefs_manage.php:274
#, fuzzy
@@ -6585,7 +6597,7 @@ msgstr "Набор от знаци на MySQL"
#: main.php:181
msgid "Web server"
-msgstr ""
+msgstr "Web сървър"
#: main.php:187
msgid "MySQL client version"
@@ -8185,7 +8197,7 @@ msgstr ""
#: server_status.php:138
msgid "The number of temporary tables currently open by the slave SQL thread."
-msgstr ""
+msgstr "Брой временни таблици отворени от подчинена SQL нишка."
#: server_status.php:139
msgid ""
@@ -8248,7 +8260,7 @@ msgstr ""
#: server_status.php:150
msgid "The number of currently open connections."
-msgstr ""
+msgstr "Брой текущо отворени връзки."
#: server_status.php:151
msgid ""
@@ -8566,7 +8578,7 @@ msgstr "Глобална стойност"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
msgid "Download"
-msgstr ""
+msgstr "Изтегляне"
#: setup/frames/index.inc.php:49
msgid "Cannot load or save configuration"
@@ -8610,31 +8622,31 @@ msgstr ""
#: setup/frames/index.inc.php:144
msgid "New server"
-msgstr ""
+msgstr "Нов сървър"
#: setup/frames/index.inc.php:173
msgid "Default language"
-msgstr ""
+msgstr "Език по подразбиране"
#: setup/frames/index.inc.php:183
msgid "let the user choose"
-msgstr ""
+msgstr "нека потребитлят избере"
#: setup/frames/index.inc.php:194
msgid "- none -"
-msgstr ""
+msgstr "- никой -"
#: setup/frames/index.inc.php:197
msgid "Default server"
-msgstr ""
+msgstr "Сървър по подразбиране"
#: setup/frames/index.inc.php:207
msgid "End of line"
-msgstr ""
+msgstr "Край на ред"
#: setup/frames/index.inc.php:212
msgid "Display"
-msgstr ""
+msgstr "Показване"
#: setup/frames/index.inc.php:216
msgid "Load"
@@ -8647,11 +8659,11 @@ msgstr "phpMyAdmin документация"
#: setup/frames/index.inc.php:228
msgid "Donate"
-msgstr ""
+msgstr "Дарение"
#: setup/frames/servers.inc.php:28
msgid "Edit server"
-msgstr ""
+msgstr "Редакция сървър"
#: setup/frames/servers.inc.php:37
msgid "Add a new server"
@@ -8659,7 +8671,7 @@ msgstr "Добавяне на нов сървър"
#: setup/lib/form_processing.lib.php:42
msgid "Warning"
-msgstr ""
+msgstr "Предупреждение"
#: setup/lib/form_processing.lib.php:43
msgid "Submitted form contains errors"
@@ -8671,7 +8683,7 @@ msgstr ""
#: setup/lib/form_processing.lib.php:47
msgid "Ignore errors"
-msgstr ""
+msgstr "Пренебрегване на грешките"
#: setup/lib/form_processing.lib.php:49
#, fuzzy
@@ -8706,7 +8718,7 @@ msgstr ""
#: setup/lib/index.lib.php:165
msgid "No newer stable version is available"
-msgstr ""
+msgstr "Няма по-нова стабилна версия"
#: setup/lib/index.lib.php:250
#, php-format
@@ -8795,34 +8807,34 @@ msgstr ""
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
-msgstr ""
+msgstr "%sZip архивиране%s изизква функцията (%s), която не е налична."
#: setup/lib/index.lib.php:272
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
-msgstr ""
+msgstr "%sZip разархивиране%s изизква функцията (%s), която не е налична."
#: setup/lib/index.lib.php:296
msgid "You should use SSL connections if your web server supports it."
-msgstr ""
+msgstr "Използвайте SSL ако браузърът ви го поддържа."
#: setup/lib/index.lib.php:306
msgid "You should use mysqli for performance reasons."
-msgstr ""
+msgstr "По причини свързани с производителността използвайте mysqli."
#: setup/lib/index.lib.php:331
msgid "You allow for connecting to the server without a password."
-msgstr ""
+msgstr "Позволено е свързването към сървъра без парола."
#: setup/lib/index.lib.php:351
msgid "Key is too short, it should have at least 8 characters."
-msgstr ""
+msgstr "Ключът е твърде къс, трябва да бъде поне 8 знака."
#: setup/lib/index.lib.php:358
msgid "Key should contain letters, numbers [em]and[/em] special characters."
-msgstr ""
+msgstr "Ключът трябва да съдържа букви, цифри [em]и[/em] специални знаци."
#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
#: tbl_select.php:30 tbl_select.php:33
@@ -8865,7 +8877,7 @@ msgstr "Етикет"
#: tbl_addfield.php:185 tbl_alter.php:99 tbl_indexes.php:97
#, php-format
msgid "Table %1$s has been altered successfully"
-msgstr ""
+msgstr "Таблицата %1$s беше променена"
#: tbl_change.php:283 tbl_change.php:321
msgid "Function"
@@ -8899,7 +8911,7 @@ msgstr ""
#: tbl_change.php:1060
msgid "Show insert query"
-msgstr ""
+msgstr "Показване заявка за вмъкване"
#: tbl_change.php:1071
msgid "and then"
@@ -8947,31 +8959,31 @@ msgstr ""
#: tbl_chart.php:90
msgid "Width"
-msgstr ""
+msgstr "Ширина"
#: tbl_chart.php:94
msgid "Height"
-msgstr ""
+msgstr "Височина"
#: tbl_chart.php:98
msgid "Title"
-msgstr ""
+msgstr "Заглавие"
#: tbl_chart.php:103
msgid "X Axis label"
-msgstr ""
+msgstr "Етикет на X оста"
#: tbl_chart.php:107
msgid "Y Axis label"
-msgstr ""
+msgstr "Етикет на Y оста"
#: tbl_chart.php:112
msgid "Area margins"
-msgstr ""
+msgstr "Граници на диаграмата"
#: tbl_chart.php:122
msgid "Legend margins"
-msgstr ""
+msgstr "Граници на легендата"
#: tbl_chart.php:134
msgid "Bar"
@@ -8979,11 +8991,11 @@ msgstr "Колони"
#: tbl_chart.php:135
msgid "Line"
-msgstr ""
+msgstr "Линия"
#: tbl_chart.php:136
msgid "Radar"
-msgstr ""
+msgstr "Радар"
#: tbl_chart.php:138
#, fuzzy
@@ -9179,7 +9191,7 @@ msgstr ""
#: tbl_operations.php:740
msgid "Analyze"
-msgstr ""
+msgstr "Анализиране"
#: tbl_operations.php:741
#, fuzzy
@@ -9188,7 +9200,7 @@ msgstr "Чешки"
#: tbl_operations.php:742
msgid "Optimize"
-msgstr ""
+msgstr "Оптимизиране"
#: tbl_operations.php:743
msgid "Rebuild"
@@ -9297,19 +9309,19 @@ msgstr "Преглеждане на уникалните стойности"
#: tbl_structure.php:166 tbl_structure.php:167
msgid "Add primary key"
-msgstr ""
+msgstr "Добавяне на първичен ключ"
#: tbl_structure.php:168 tbl_structure.php:169
msgid "Add index"
-msgstr ""
+msgstr "Добавяне на индекс"
#: tbl_structure.php:170 tbl_structure.php:171
msgid "Add unique index"
-msgstr ""
+msgstr "Добавяне на уникален ключ"
#: tbl_structure.php:172 tbl_structure.php:173
msgid "Add FULLTEXT index"
-msgstr ""
+msgstr "Добавяне на пълнотекстов индекс"
#: tbl_structure.php:385
msgctxt "None for default"
@@ -9452,12 +9464,12 @@ msgstr ""
#: tbl_tracking.php:503
msgid "SQL execution"
-msgstr ""
+msgstr "Изпълняване на SQL"
#: tbl_tracking.php:515
#, php-format
msgid "Export as %s"
-msgstr ""
+msgstr "Експорт като %s"
#: tbl_tracking.php:555
msgid "Show versions"
@@ -9474,7 +9486,7 @@ msgstr ""
#: tbl_tracking.php:637
msgid "Deactivate now"
-msgstr ""
+msgstr "Деактивиране сега"
#: tbl_tracking.php:648
#, php-format
@@ -9483,12 +9495,12 @@ msgstr ""
#: tbl_tracking.php:650
msgid "Activate now"
-msgstr ""
+msgstr "Активиране сега"
#: tbl_tracking.php:663
#, php-format
msgid "Create version %s of %s.%s"
-msgstr ""
+msgstr "Създаване на версия %s от %s.%s"
#: tbl_tracking.php:667
msgid "Track these data definition statements:"
diff --git a/po/bn.po b/po/bn.po
index c60f71d..c6d2efd 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.1-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-16 10:31+0200\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
diff --git a/po/bs.po b/po/bs.po
index bab3135..aab0ca6 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.1-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-16 10:31+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
diff --git a/po/ca.po b/po/ca.po
index aa45d34..9e52bee 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.1-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-16 10:31+0200\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
diff --git a/po/cs.po b/po/cs.po
index 42ee340..743d5b0 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -4,7 +4,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.1-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-16 10:31+0200\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
diff --git a/po/cy.po b/po/cy.po
index e9a86df..b81a06e 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.1-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-16 10:31+0200\n"
"PO-Revision-Date: 2010-06-07 20:23+0200\n"
@@ -99,7 +99,7 @@ msgstr "Defnyddiwch y gwerth hwn"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
-msgstr ""
+msgstr "Dim gweinydd ffrydio blob wedi'i ffurfweddu!"
#: bs_disp_as_mime_type.php:35
#, fuzzy
@@ -109,7 +109,7 @@ msgstr "Methu ag ysgrifennu i'r ddisg."
#: bs_disp_as_mime_type.php:41
msgid "Failed to open remote URL"
-msgstr ""
+msgstr "Methu ag agor URL pell"
#: changelog.php:32 license.php:28
#, php-format
@@ -117,6 +117,8 @@ msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
+"Dyw'r ffeil %s ddim ar gael ar y system hon, ewch i www.phpmyadmin.net am "
+"wybodaeth bellach."
#: db_create.php:58
#, php-format
@@ -429,7 +431,7 @@ msgstr ""
#: db_qbe.php:186
msgid "visual builder"
-msgstr ""
+msgstr "adeiladwr gweledol"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
diff --git a/po/da.po b/po/da.po
index d08e519..fcf770b 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.1-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-16 10:31+0200\n"
"PO-Revision-Date: 2011-03-07 01:17+0200\n"
diff --git a/po/de.po b/po/de.po
index 643be2b..7e13d59 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.1-dev\n"
+"Project-Id-Version: phpMyAdmin 3.4.1-rc1\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-16 10:31+0200\n"
"PO-Revision-Date: 2011-04-23 04:28+0200\n"
diff --git a/po/el.po b/po/el.po
index 34ff50f..27e1be0 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,7 +1,7 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.1-dev\n"
+"Project-Id-Version: ph MyAdmin 3.4.1-dev\n"