Git
Threads by month
- ----- 2026 -----
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 6 participants
- 38807 discussions
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-8733-g291e3b6
by Piotr Przybylski 14 Jul '11
by Piotr Przybylski 14 Jul '11
14 Jul '11
The branch, master has been updated
via 291e3b6a9f1024b05306d1c06782a7ef76e5827a (commit)
via bdbb88871356bb2954c74e418fc2c468b34aab3e (commit)
from 8ff9a1bb7860ff30da83f1eca0860f81a767a637 (commit)
- Log -----------------------------------------------------------------
commit 291e3b6a9f1024b05306d1c06782a7ef76e5827a
Author: Piotr Przybylski <piotrprz(a)gmail.com>
Date: Thu Jul 14 22:32:04 2011 +0200
Use PMA_DBI_get_columns in texytext export
commit bdbb88871356bb2954c74e418fc2c468b34aab3e
Author: Piotr Przybylski <piotrprz(a)gmail.com>
Date: Thu Jul 14 22:27:56 2011 +0200
Use PMA_DBI_get_columns in odt export
-----------------------------------------------------------------------
Summary of changes:
libraries/export/odt.php | 33 +++++++++++++++------------------
libraries/export/texytext.php | 35 +++++++++++++++--------------------
2 files changed, 30 insertions(+), 38 deletions(-)
diff --git a/libraries/export/odt.php b/libraries/export/odt.php
index b640ca3..f2b13a0 100644
--- a/libraries/export/odt.php
+++ b/libraries/export/odt.php
@@ -251,9 +251,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
* Gets fields properties
*/
PMA_DBI_select_db($db);
- $local_query = 'SHOW FIELDS FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table);
- $result = PMA_DBI_query($local_query);
- $fields_cnt = PMA_DBI_num_rows($result);
// Check if we can use Relations
if ($do_relation && !empty($cfgRelation['relation'])) {
@@ -318,16 +315,17 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
}
$GLOBALS['odt_buffer'] .= '</table:table-row>';
- while ($row = PMA_DBI_fetch_assoc($result)) {
+ $columns = PMA_DBI_get_columns($db, $table);
+ foreach ($columns as $column) {
+ $field_name = $column['Field'];
$GLOBALS['odt_buffer'] .= '<table:table-row>';
$GLOBALS['odt_buffer'] .= '<table:table-cell office:value-type="string">'
- . '<text:p>' . htmlspecialchars($row['Field']) . '</text:p>'
+ . '<text:p>' . htmlspecialchars($field_name) . '</text:p>'
. '</table:table-cell>';
// reformat mysql query output
// set or enum types: slashes single quotes inside options
- $field_name = $row['Field'];
- $type = $row['Type'];
+ $type = $column['Type'];
if (preg_match('/^(set|enum)\((.+)\)$/i', $type, $tmp)) {
$tmp[2] = substr(preg_replace('/([^,])\'\'/', '\\1\\\'', ',' . $tmp[2]), 1);
$type = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')';
@@ -345,27 +343,27 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
$type = ' ';
}
- $binary = preg_match('/BINARY/i', $row['Type']);
- $unsigned = preg_match('/UNSIGNED/i', $row['Type']);
- $zerofill = preg_match('/ZEROFILL/i', $row['Type']);
+ $binary = preg_match('/BINARY/i', $column['Type']);
+ $unsigned = preg_match('/UNSIGNED/i', $column['Type']);
+ $zerofill = preg_match('/ZEROFILL/i', $column['Type']);
}
$GLOBALS['odt_buffer'] .= '<table:table-cell office:value-type="string">'
. '<text:p>' . htmlspecialchars($type) . '</text:p>'
. '</table:table-cell>';
- if (!isset($row['Default'])) {
- if ($row['Null'] != 'NO') {
- $row['Default'] = 'NULL';
+ if (!isset($column['Default'])) {
+ if ($column['Null'] != 'NO') {
+ $column['Default'] = 'NULL';
} else {
- $row['Default'] = '';
+ $column['Default'] = '';
}
} else {
- $row['Default'] = $row['Default'];
+ $column['Default'] = $column['Default'];
}
$GLOBALS['odt_buffer'] .= '<table:table-cell office:value-type="string">'
- . '<text:p>' . htmlspecialchars(($row['Null'] == '' || $row['Null'] == 'NO') ? __('No') : __('Yes')) . '</text:p>'
+ . '<text:p>' . htmlspecialchars(($column['Null'] == '' || $column['Null'] == 'NO') ? __('No') : __('Yes')) . '</text:p>'
. '</table:table-cell>';
$GLOBALS['odt_buffer'] .= '<table:table-cell office:value-type="string">'
- . '<text:p>' . htmlspecialchars($row['Default']) . '</text:p>'
+ . '<text:p>' . htmlspecialchars($column['Default']) . '</text:p>'
. '</table:table-cell>';
if ($do_relation && $have_rel) {
@@ -399,7 +397,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
}
$GLOBALS['odt_buffer'] .= '</table:table-row>';
} // end while
- PMA_DBI_free_result($result);
$GLOBALS['odt_buffer'] .= '</table:table>';
return true;
diff --git a/libraries/export/texytext.php b/libraries/export/texytext.php
index ceffe4d..6294311 100644
--- a/libraries/export/texytext.php
+++ b/libraries/export/texytext.php
@@ -195,9 +195,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
* Gets fields properties
*/
PMA_DBI_select_db($db);
- $local_query = 'SHOW FIELDS FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table);
- $result = PMA_DBI_query($local_query);
- $fields_cnt = PMA_DBI_num_rows($result);
// Check if we can use Relations
if ($do_relation && ! empty($cfgRelation['relation'])) {
@@ -251,10 +248,11 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
return false;
}
- while ($row = PMA_DBI_fetch_assoc($result)) {
+ $columns = PMA_DBI_get_columns($db, $table);
+ foreach ($columns as $column) {
$text_output = '';
- $type = $row['Type'];
+ $type = $column['Type'];
// reformat mysql query output
// set or enum types: slashes single quotes inside options
if (preg_match('/^(set|enum)\((.+)\)$/i', $type, $tmp)) {
@@ -274,9 +272,9 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
$type = ' ';
}
- $binary = preg_match('/BINARY/i', $row['Type']);
- $unsigned = preg_match('/UNSIGNED/i', $row['Type']);
- $zerofill = preg_match('/ZEROFILL/i', $row['Type']);
+ $binary = preg_match('/BINARY/i', $column['Type']);
+ $unsigned = preg_match('/UNSIGNED/i', $column['Type']);
+ $zerofill = preg_match('/ZEROFILL/i', $column['Type']);
}
$attribute = ' ';
if ($binary) {
@@ -288,30 +286,28 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
if ($zerofill) {
$attribute = 'UNSIGNED ZEROFILL';
}
- if (! isset($row['Default'])) {
- if ($row['Null'] != 'NO') {
- $row['Default'] = 'NULL';
+ if (! isset($column['Default'])) {
+ if ($column['Null'] != 'NO') {
+ $column['Default'] = 'NULL';
}
- } else {
- $row['Default'] = $row['Default'];
}
$fmt_pre = '';
$fmt_post = '';
- if (in_array($row['Field'], $unique_keys)) {
+ if (in_array($column['Field'], $unique_keys)) {
$fmt_pre = '**' . $fmt_pre;
$fmt_post = $fmt_post . '**';
}
- if ($row['Key']=='PRI') {
+ if ($column['Key']=='PRI') {
$fmt_pre = '//' . $fmt_pre;
$fmt_post = $fmt_post . '//';
}
- $text_output .= '|' . $fmt_pre . htmlspecialchars($row['Field']) . $fmt_post;
+ $text_output .= '|' . $fmt_pre . htmlspecialchars($column['Field']) . $fmt_post;
$text_output .= '|' . htmlspecialchars($type);
- $text_output .= '|' . htmlspecialchars(($row['Null'] == '' || $row['Null'] == 'NO') ? __('No') : __('Yes'));
- $text_output .= '|' . htmlspecialchars(isset($row['Default']) ? $row['Default'] : '');
+ $text_output .= '|' . htmlspecialchars(($column['Null'] == '' || $column['Null'] == 'NO') ? __('No') : __('Yes'));
+ $text_output .= '|' . htmlspecialchars(isset($column['Default']) ? $column['Default'] : '');
- $field_name = $row['Field'];
+ $field_name = $column['Field'];
if ($do_relation && $have_rel) {
$text_output .= '|' . (isset($res_rel[$field_name]) ? htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' (' . $res_rel[$field_name]['foreign_field'] . ')') : '');
@@ -329,7 +325,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
return false;
}
} // end while
- PMA_DBI_free_result($result);
return true;
}
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-8731-g8ff9a1b
by Piotr Przybylski 14 Jul '11
by Piotr Przybylski 14 Jul '11
14 Jul '11
The branch, master has been updated
via 8ff9a1bb7860ff30da83f1eca0860f81a767a637 (commit)
via ff7116bf7eed70f8848cdc1ba1702c5cf1cc8125 (commit)
via 4ec9c3b09c0c716c008423efd52ea1202fe36679 (commit)
via f1bcbb500aa38ddd174480da8adee217ce7decfd (commit)
via 94b83dc3e9bc46d090c4f5250294f378bb9cf0c3 (commit)
from 117dd687575b4af0f24ae6f79773122a5a133a23 (commit)
- Log -----------------------------------------------------------------
commit 8ff9a1bb7860ff30da83f1eca0860f81a767a637
Author: Piotr Przybylski <piotrprz(a)gmail.com>
Date: Thu Jul 14 21:30:47 2011 +0200
Whitespace
commit ff7116bf7eed70f8848cdc1ba1702c5cf1cc8125
Author: Piotr Przybylski <piotrprz(a)gmail.com>
Date: Thu Jul 14 21:28:41 2011 +0200
Fix CodeGen export
commit 4ec9c3b09c0c716c008423efd52ea1202fe36679
Author: Piotr Przybylski <piotrprz(a)gmail.com>
Date: Thu Jul 14 21:13:47 2011 +0200
Use PMA_DBI_get_columns in mediawiki export
commit f1bcbb500aa38ddd174480da8adee217ce7decfd
Author: Piotr Przybylski <piotrprz(a)gmail.com>
Date: Thu Jul 14 02:37:21 2011 +0200
Use PMA_DBI_get_columns in latex export
commit 94b83dc3e9bc46d090c4f5250294f378bb9cf0c3
Author: Piotr Przybylski <piotrprz(a)gmail.com>
Date: Thu Jul 14 02:36:09 2011 +0200
Escape column name in PMA_DBI_get_columns_full
-----------------------------------------------------------------------
Summary of changes:
libraries/database_interface.lib.php | 2 +-
libraries/export/codegen.php | 340 ++++++++++++++++++----------------
libraries/export/latex.php | 12 +-
libraries/export/mediawiki.php | 18 +-
4 files changed, 192 insertions(+), 180 deletions(-)
diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php
index ef2783d..ca50600 100644
--- a/libraries/database_interface.lib.php
+++ b/libraries/database_interface.lib.php
@@ -769,7 +769,7 @@ function PMA_DBI_get_columns_full($database = null, $table = null,
$sql = 'SHOW FULL COLUMNS FROM '
. PMA_backquote($database) . '.' . PMA_backquote($table);
if (null !== $column) {
- $sql .= " LIKE '" . $column . "'";
+ $sql .= " LIKE '" . PMA_sqlAddSlashes($column, true) . "'";
}
$columns = PMA_DBI_fetch_result($sql, 'Field', null, $link);
diff --git a/libraries/export/codegen.php b/libraries/export/codegen.php
index fb81cf9..ffed7d1 100644
--- a/libraries/export/codegen.php
+++ b/libraries/export/codegen.php
@@ -123,12 +123,12 @@ function PMA_exportDBCreate($db)
*/
function PMA_exportData($db, $table, $crlf, $error_url, $sql_query)
{
- global $CG_FORMATS, $CG_HANDLERS;
- $format = cgGetOption("format");
- $index = array_search($format, $CG_FORMATS);
- if ($index >= 0)
- return PMA_exportOutputHandler($CG_HANDLERS[$index]($db, $table, $crlf));
- return PMA_exportOutputHandler(sprintf("%s is not supported.", $format));
+ global $CG_FORMATS, $CG_HANDLERS;
+ $format = cgGetOption("format");
+ if (isset($CG_FORMATS[$format])) {
+ return PMA_exportOutputHandler($CG_HANDLERS[$format]($db, $table, $crlf));
+ }
+ return PMA_exportOutputHandler(sprintf("%s is not supported.", $format));
}
/**
@@ -138,162 +138,184 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query)
*/
class TableProperty
{
- public $name;
- public $type;
- public $nullable;
- public $key;
- public $defaultValue;
- public $ext;
- function __construct($row)
- {
- $this->name = trim($row[0]);
- $this->type = trim($row[1]);
- $this->nullable = trim($row[2]);
- $this->key = trim($row[3]);
- $this->defaultValue = trim($row[4]);
- $this->ext = trim($row[5]);
- }
- function getPureType()
- {
- $pos=strpos($this->type, "(");
- if ($pos > 0)
- return substr($this->type, 0, $pos);
- return $this->type;
- }
- function isNotNull()
- {
- return $this->nullable == "NO" ? "true" : "false";
- }
- function isUnique()
- {
- return $this->key == "PRI" || $this->key == "UNI" ? "true" : "false";
- }
- function getDotNetPrimitiveType()
- {
- if (strpos($this->type, "int") === 0) return "int";
- if (strpos($this->type, "long") === 0) return "long";
- if (strpos($this->type, "char") === 0) return "string";
- if (strpos($this->type, "varchar") === 0) return "string";
- if (strpos($this->type, "text") === 0) return "string";
- if (strpos($this->type, "longtext") === 0) return "string";
- if (strpos($this->type, "tinyint") === 0) return "bool";
- if (strpos($this->type, "datetime") === 0) return "DateTime";
- return "unknown";
- }
- function getDotNetObjectType()
- {
- if (strpos($this->type, "int") === 0) return "Int32";
- if (strpos($this->type, "long") === 0) return "Long";
- if (strpos($this->type, "char") === 0) return "String";
- if (strpos($this->type, "varchar") === 0) return "String";
- if (strpos($this->type, "text") === 0) return "String";
- if (strpos($this->type, "longtext") === 0) return "String";
- if (strpos($this->type, "tinyint") === 0) return "Boolean";
- if (strpos($this->type, "datetime") === 0) return "DateTime";
- return "Unknown";
- }
- function getIndexName()
- {
- if (strlen($this->key)>0)
- return "index=\"" . $this->name . "\"";
- return "";
- }
- function isPK()
- {
- return $this->key=="PRI";
- }
- function format($pattern)
- {
- $text=$pattern;
- $text=str_replace("#name#", $this->name, $text);
- $text=str_replace("#type#", $this->getPureType(), $text);
- $text=str_replace("#notNull#", $this->isNotNull(), $text);
- $text=str_replace("#unique#", $this->isUnique(), $text);
- $text=str_replace("#ucfirstName#", ucfirst($this->name), $text);
- $text=str_replace("#dotNetPrimitiveType#", $this->getDotNetPrimitiveType(), $text);
- $text=str_replace("#dotNetObjectType#", $this->getDotNetObjectType(), $text);
- $text=str_replace("#indexName#", $this->getIndexName(), $text);
- return $text;
- }
+ public $name;
+ public $type;
+ public $nullable;
+ public $key;
+ public $defaultValue;
+ public $ext;
+ function __construct($row)
+ {
+ $this->name = trim($row[0]);
+ $this->type = trim($row[1]);
+ $this->nullable = trim($row[2]);
+ $this->key = trim($row[3]);
+ $this->defaultValue = trim($row[4]);
+ $this->ext = trim($row[5]);
+ }
+ function getPureType()
+ {
+ $pos=strpos($this->type, "(");
+ if ($pos > 0)
+ return substr($this->type, 0, $pos);
+ return $this->type;
+ }
+ function isNotNull()
+ {
+ return $this->nullable == "NO" ? "true" : "false";
+ }
+ function isUnique()
+ {
+ return $this->key == "PRI" || $this->key == "UNI" ? "true" : "false";
+ }
+ function getDotNetPrimitiveType()
+ {
+ if (strpos($this->type, "int") === 0) return "int";
+ if (strpos($this->type, "long") === 0) return "long";
+ if (strpos($this->type, "char") === 0) return "string";
+ if (strpos($this->type, "varchar") === 0) return "string";
+ if (strpos($this->type, "text") === 0) return "string";
+ if (strpos($this->type, "longtext") === 0) return "string";
+ if (strpos($this->type, "tinyint") === 0) return "bool";
+ if (strpos($this->type, "datetime") === 0) return "DateTime";
+ return "unknown";
+ }
+ function getDotNetObjectType()
+ {
+ if (strpos($this->type, "int") === 0) return "Int32";
+ if (strpos($this->type, "long") === 0) return "Long";
+ if (strpos($this->type, "char") === 0) return "String";
+ if (strpos($this->type, "varchar") === 0) return "String";
+ if (strpos($this->type, "text") === 0) return "String";
+ if (strpos($this->type, "longtext") === 0) return "String";
+ if (strpos($this->type, "tinyint") === 0) return "Boolean";
+ if (strpos($this->type, "datetime") === 0) return "DateTime";
+ return "Unknown";
+ }
+ function getIndexName()
+ {
+ if (strlen($this->key)>0)
+ return "index=\"" . htmlspecialchars($this->name, ENT_COMPAT, 'UTF-8') . "\"";
+ return "";
+ }
+ function isPK()
+ {
+ return $this->key=="PRI";
+ }
+ function formatCs($text)
+ {
+ $text=str_replace("#name#", cgMakeIdentifier($this->name, false), $text);
+ return $this->format($text);
+ }
+ function formatXml($text)
+ {
+ $text=str_replace("#name#", htmlspecialchars($this->name, ENT_COMPAT, 'UTF-8'), $text);
+ $text=str_replace("#indexName#", $this->getIndexName(), $text);
+ return $this->format($text);
+ }
+ function format($text)
+ {
+ $text=str_replace("#ucfirstName#", cgMakeIdentifier($this->name), $text);
+ $text=str_replace("#dotNetPrimitiveType#", $this->getDotNetPrimitiveType(), $text);
+ $text=str_replace("#dotNetObjectType#", $this->getDotNetObjectType(), $text);
+ $text=str_replace("#type#", $this->getPureType(), $text);
+ $text=str_replace("#notNull#", $this->isNotNull(), $text);
+ $text=str_replace("#unique#", $this->isUnique(), $text);
+ return $text;
+ }
}
- function handleNHibernateCSBody($db, $table, $crlf)
- {
- $lines=array();
- $result=PMA_DBI_query(sprintf("DESC %s.%s", PMA_backquote($db), PMA_backquote($table)));
- if ($result)
- {
- $tableProperties=array();
- while ($row = PMA_DBI_fetch_row($result))
- $tableProperties[] = new TableProperty($row);
- $lines[] = "using System;";
- $lines[] = "using System.Collections;";
- $lines[] = "using System.Collections.Generic;";
- $lines[] = "using System.Text;";
- $lines[] = "namespace ".ucfirst($db);
- $lines[] = "{";
- $lines[] = " #region ".ucfirst($table);
- $lines[] = " public class ".ucfirst($table);
- $lines[] = " {";
- $lines[] = " #region Member Variables";
- foreach ($tableProperties as $tablePropertie)
- $lines[] = $tablePropertie->format(" protected #dotNetPrimitiveType# _#name#;");
- $lines[] = " #endregion";
- $lines[] = " #region Constructors";
- $lines[] = " public ".ucfirst($table)."() { }";
- $temp = array();
- foreach ($tableProperties as $tablePropertie)
- if (! $tablePropertie->isPK())
- $temp[] = $tablePropertie->format("#dotNetPrimitiveType# #name#");
- $lines[] = " public ".ucfirst($table)."(".implode(", ", $temp).")";
- $lines[] = " {";
- foreach ($tableProperties as $tablePropertie)
- if (! $tablePropertie->isPK())
- $lines[] = $tablePropertie->format(" this._#name#=#name#;");
- $lines[] = " }";
- $lines[] = " #endregion";
- $lines[] = " #region Public Properties";
- foreach ($tableProperties as $tablePropertie)
- $lines[] = $tablePropertie->format(" public virtual #dotNetPrimitiveType# _#ucfirstName#\n {\n get {return _#name#;}\n set {_#name#=value;}\n }");
- $lines[] = " #endregion";
- $lines[] = " }";
- $lines[] = " #endregion";
- $lines[] = "}";
- PMA_DBI_free_result($result);
- }
- return implode("\n", $lines);
- }
+ function cgMakeIdentifier($str, $ucfirst = true)
+ {
+ // remove unsafe characters
+ $str = preg_replace('/[^\p{L}\p{Nl}_]/u', '', $str);
+ // make sure first character is a letter or _
+ if (!preg_match('/^\pL/u', $str)) {
+ $str = '_' . $str;
+ }
+ if ($ucfirst) {
+ $str = ucfirst($str);
+ }
+ return $str;
+ }
- function handleNHibernateXMLBody($db, $table, $crlf)
- {
- $lines=array();
- $lines[] = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>";
- $lines[] = "<hibernate-mapping xmlns=\"urn:nhibernate-mapping-2.2\" namespace=\"".ucfirst(htmlspecialchars($db, ENT_COMPAT, 'UTF-8'))."\" assembly=\"".ucfirst(htmlspecialchars($db, ENT_COMPAT, 'UTF-8'))."\">";
- $lines[] = " <class name=\"".ucfirst(htmlspecialchars($table, ENT_COMPAT, 'UTF-8'))."\" table=\"".htmlspecialchars($table, ENT_COMPAT, 'UTF-8')."\">";
- $result = PMA_DBI_query(sprintf("DESC %s.%s", PMA_backquote($db), PMA_backquote($table)));
- if ($result)
- {
- $tableProperties = array();
- while ($row = PMA_DBI_fetch_row($result))
- $tableProperties[] = new TableProperty($row);
- foreach ($tableProperties as $tablePropertie)
- {
- if ($tablePropertie->isPK())
- $lines[] = $tablePropertie->format(" <id name=\"#ucfirstName#\" type=\"#dotNetObjectType#\" unsaved-value=\"0\">\n <column name=\"#name#\" sql-type=\"#type#\" not-null=\"#notNull#\" unique=\"#unique#\" index=\"PRIMARY\"/>\n <generator class=\"native\" />\n </id>");
- else
- $lines[] = $tablePropertie->format(" <property name=\"#ucfirstName#\" type=\"#dotNetObjectType#\">\n <column name=\"#name#\" sql-type=\"#type#\" not-null=\"#notNull#\" #indexName#/>\n </property>");
- }
- PMA_DBI_free_result($result);
- }
- $lines[]=" </class>";
- $lines[]="</hibernate-mapping>";
- return implode("\n", $lines);
- }
+ function handleNHibernateCSBody($db, $table, $crlf)
+ {
+ $lines=array();
+ $result=PMA_DBI_query(sprintf("DESC %s.%s", PMA_backquote($db), PMA_backquote($table)));
+ if ($result)
+ {
+ $tableProperties=array();
+ while ($row = PMA_DBI_fetch_row($result))
+ $tableProperties[] = new TableProperty($row);
+ $lines[] = "using System;";
+ $lines[] = "using System.Collections;";
+ $lines[] = "using System.Collections.Generic;";
+ $lines[] = "using System.Text;";
+ $lines[] = "namespace ".cgMakeIdentifier($db);
+ $lines[] = "{";
+ $lines[] = " #region ".cgMakeIdentifier($table);
+ $lines[] = " public class ".cgMakeIdentifier($table);
+ $lines[] = " {";
+ $lines[] = " #region Member Variables";
+ foreach ($tableProperties as $tablePropertie)
+ $lines[] = $tablePropertie->formatCs(" protected #dotNetPrimitiveType# _#name#;");
+ $lines[] = " #endregion";
+ $lines[] = " #region Constructors";
+ $lines[] = " public ".cgMakeIdentifier($table)."() { }";
+ $temp = array();
+ foreach ($tableProperties as $tablePropertie)
+ if (! $tablePropertie->isPK())
+ $temp[] = $tablePropertie->formatCs("#dotNetPrimitiveType# #name#");
+ $lines[] = " public ".cgMakeIdentifier($table)."(".implode(", ", $temp).")";
+ $lines[] = " {";
+ foreach ($tableProperties as $tablePropertie)
+ if (! $tablePropertie->isPK())
+ $lines[] = $tablePropertie->formatCs(" this._#name#=#name#;");
+ $lines[] = " }";
+ $lines[] = " #endregion";
+ $lines[] = " #region Public Properties";
+ foreach ($tableProperties as $tablePropertie)
+ $lines[] = $tablePropertie->formatCs(" public virtual #dotNetPrimitiveType# #ucfirstName#\n {\n get {return _#name#;}\n set {_#name#=value;}\n }");
+ $lines[] = " #endregion";
+ $lines[] = " }";
+ $lines[] = " #endregion";
+ $lines[] = "}";
+ PMA_DBI_free_result($result);
+ }
+ return implode("\n", $lines);
+ }
- function cgGetOption($optionName)
- {
- global $what;
- return $GLOBALS[$what . "_" . $optionName];
- }
+ function handleNHibernateXMLBody($db, $table, $crlf)
+ {
+ $lines=array();
+ $lines[] = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>";
+ $lines[] = "<hibernate-mapping xmlns=\"urn:nhibernate-mapping-2.2\" namespace=\"".cgMakeIdentifier($db)."\" assembly=\"".cgMakeIdentifier($db)."\">";
+ $lines[] = " <class name=\"".cgMakeIdentifier($table)."\" table=\"".cgMakeIdentifier($table)."\">";
+ $result = PMA_DBI_query(sprintf("DESC %s.%s", PMA_backquote($db), PMA_backquote($table)));
+ if ($result)
+ {
+ $tableProperties = array();
+ while ($row = PMA_DBI_fetch_row($result))
+ $tableProperties[] = new TableProperty($row);
+ foreach ($tableProperties as $tablePropertie)
+ {
+ if ($tablePropertie->isPK())
+ $lines[] = $tablePropertie->formatXml(" <id name=\"#ucfirstName#\" type=\"#dotNetObjectType#\" unsaved-value=\"0\">\n <column name=\"#name#\" sql-type=\"#type#\" not-null=\"#notNull#\" unique=\"#unique#\" index=\"PRIMARY\"/>\n <generator class=\"native\" />\n </id>");
+ else
+ $lines[] = $tablePropertie->formatXml(" <property name=\"#ucfirstName#\" type=\"#dotNetObjectType#\">\n <column name=\"#name#\" sql-type=\"#type#\" not-null=\"#notNull#\" #indexName#/>\n </property>");
+ }
+ PMA_DBI_free_result($result);
+ }
+ $lines[]=" </class>";
+ $lines[]="</hibernate-mapping>";
+ return implode("\n", $lines);
+ }
+
+ function cgGetOption($optionName)
+ {
+ global $what;
+ return $GLOBALS[$what . "_" . $optionName];
+ }
}
?>
diff --git a/libraries/export/latex.php b/libraries/export/latex.php
index 96be536..0742109 100644
--- a/libraries/export/latex.php
+++ b/libraries/export/latex.php
@@ -316,9 +316,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
* Gets fields properties
*/
PMA_DBI_select_db($db);
- $local_query = 'SHOW FIELDS FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table);
- $result = PMA_DBI_query($local_query);
- $fields_cnt = PMA_DBI_num_rows($result);
// Check if we can use Relations
if ($do_relation && !empty($cfgRelation['relation'])) {
@@ -374,8 +371,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
$mime_map = PMA_getMIME($db, $table, true);
}
- $local_buffer = PMA_texEscape($table);
-
// Table caption for first page and label
if (isset($GLOBALS['latex_caption'])) {
$buffer .= ' \\caption{'. PMA_expandUserString($GLOBALS['latex_structure_caption'], 'PMA_texEscape', array('table' => $table, 'database' => $db))
@@ -394,8 +389,8 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
return false;
}
- while ($row = PMA_DBI_fetch_assoc($result)) {
-
+ $fields = PMA_DBI_get_columns($db, $table);
+ foreach ($fields as $row) {
$type = $row['Type'];
// reformat mysql query output
// set or enum types: slashes single quotes inside options
@@ -424,8 +419,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
if ($row['Null'] != 'NO') {
$row['Default'] = 'NULL';
}
- } else {
- $row['Default'] = $row['Default'];
}
$field_name = $row['Field'];
@@ -468,7 +461,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
return false;
}
} // end while
- PMA_DBI_free_result($result);
$buffer = ' \\end{longtable}' . $crlf;
return PMA_exportOutputHandler($buffer);
diff --git a/libraries/export/mediawiki.php b/libraries/export/mediawiki.php
index 76c8b2a..7599df9 100644
--- a/libraries/export/mediawiki.php
+++ b/libraries/export/mediawiki.php
@@ -95,18 +95,16 @@ function PMA_exportDBCreate($db) {
* @access public
*/
function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
- global $mediawiki_export_struct;
- global $mediawiki_export_data;
-
- $result = PMA_DBI_fetch_result("SHOW COLUMNS FROM `" . $db . "`.`" . $table . "`");
- $row_cnt = count($result);
+ $columns = PMA_DBI_get_columns($db, $table);
+ $columns = array_values($columns);
+ $row_cnt = count($columns);
$output = "{| cellpadding=\"10\" cellspacing=\"0\" border=\"1\" style=\"text-align:center;\"\n";
$output .= "|+'''" . $table . "'''\n";
$output .= "|- style=\"background:#ffdead;\"\n";
$output .= "! style=\"background:#ffffff\" | \n";
for ($i = 0; $i < $row_cnt; ++$i) {
- $output .= " | " . $result[$i]['Field'];
+ $output .= " | " . $columns[$i]['Field'];
if (($i + 1) != $row_cnt) {
$output .= "\n";
}
@@ -116,7 +114,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
$output .= "|- style=\"background:#f9f9f9;\"\n";
$output .= "! style=\"background:#f2f2f2\" | Type\n";
for ($i = 0; $i < $row_cnt; ++$i) {
- $output .= " | " . $result[$i]['Type'];
+ $output .= " | " . $columns[$i]['Type'];
if (($i + 1) != $row_cnt) {
$output .= "\n";
}
@@ -126,7 +124,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
$output .= "|- style=\"background:#f9f9f9;\"\n";
$output .= "! style=\"background:#f2f2f2\" | Null\n";
for ($i = 0; $i < $row_cnt; ++$i) {
- $output .= " | " . $result[$i]['Null'];
+ $output .= " | " . $columns[$i]['Null'];
if (($i + 1) != $row_cnt) {
$output .= "\n";
}
@@ -136,7 +134,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
$output .= "|- style=\"background:#f9f9f9;\"\n";
$output .= "! style=\"background:#f2f2f2\" | Default\n";
for ($i = 0; $i < $row_cnt; ++$i) {
- $output .= " | " . $result[$i]['Default'];
+ $output .= " | " . $columns[$i]['Default'];
if (($i + 1) != $row_cnt) {
$output .= "\n";
}
@@ -146,7 +144,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
$output .= "|- style=\"background:#f9f9f9;\"\n";
$output .= "! style=\"background:#f2f2f2\" | Extra\n";
for ($i = 0; $i < $row_cnt; ++$i) {
- $output .= " | " . $result[$i]['Extra'];
+ $output .= " | " . $columns[$i]['Extra'];
if (($i + 1) != $row_cnt) {
$output .= "\n";
}
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-8726-g117dd68
by Michal Čihař 14 Jul '11
by Michal Čihař 14 Jul '11
14 Jul '11
The branch, master has been updated
via 117dd687575b4af0f24ae6f79773122a5a133a23 (commit)
from 509ee82943b2ce606253ce092d32154e4f633fa2 (commit)
- Log -----------------------------------------------------------------
commit 117dd687575b4af0f24ae6f79773122a5a133a23
Author: Michal Čihař <michal(a)cihar.com>
Date: Thu Jul 14 18:40:10 2011 +0200
Refresh po files
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 28 ++++++++--------
po/ar.po | 40 +++++++++++-----------
po/az.po | 28 ++++++++--------
po/be.po | 36 ++++++++++----------
po/be(a)latin.po | 48 ++++++++++++++--------------
po/bg.po | 40 +++++++++++-----------
po/bn.po | 40 +++++++++++-----------
po/br.po | 40 +++++++++++-----------
po/bs.po | 28 ++++++++--------
po/ca.po | 48 ++++++++++++++--------------
po/cs.po | 48 ++++++++++++++--------------
po/cy.po | 32 +++++++++---------
po/da.po | 51 +++++++++++-----------------
po/de.po | 93 ++++++++++++++++------------------------------------
po/el.po | 52 +++++++++++++++---------------
po/en_GB.po | 90 ++++++++++++++++-----------------------------------
po/es.po | 77 +++++++++++--------------------------------
po/et.po | 28 ++++++++--------
po/eu.po | 28 ++++++++--------
po/fa.po | 44 ++++++++++++------------
po/fi.po | 42 ++++++++++++------------
po/fr.po | 55 ++++++++++++++++---------------
po/gl.po | 46 +++++++++++++-------------
po/he.po | 28 ++++++++--------
po/hi.po | 36 ++++++++++----------
po/hr.po | 40 +++++++++++-----------
po/hu.po | 54 +++++++++++++++---------------
po/id.po | 36 ++++++++++----------
po/it.po | 44 ++++++++++++------------
po/ja.po | 41 ++++++++++++-----------
po/ka.po | 54 +++++++++++++++---------------
po/ko.po | 36 ++++++++++----------
po/lt.po | 46 +++++++++++++-------------
po/lv.po | 32 +++++++++---------
po/mk.po | 28 ++++++++--------
po/ml.po | 28 ++++++++--------
po/mn.po | 40 +++++++++++-----------
po/ms.po | 28 ++++++++--------
po/nb.po | 42 ++++++++++++------------
po/nl.po | 40 +++++++++++-----------
po/phpmyadmin.pot | 27 ++++++++-------
po/pl.po | 54 +++++++++++++++---------------
po/pt.po | 36 ++++++++++----------
po/pt_BR.po | 32 +++++++++---------
po/ro.po | 36 ++++++++++----------
po/ru.po | 40 +++++++++++-----------
po/si.po | 40 +++++++++++-----------
po/sk.po | 71 ++++++++++++++++------------------------
po/sl.po | 28 ++++++++--------
po/sq.po | 32 +++++++++---------
po/sr.po | 36 ++++++++++----------
po/sr(a)latin.po | 36 ++++++++++----------
po/sv.po | 44 ++++++++++++------------
po/ta.po | 28 ++++++++--------
po/te.po | 28 ++++++++--------
po/th.po | 32 +++++++++---------
po/tr.po | 87 ++++++++++++++-----------------------------------
po/tt.po | 32 +++++++++---------
po/ug.po | 40 +++++++++++-----------
po/uk.po | 40 +++++++++++-----------
po/ur.po | 36 ++++++++++----------
po/uz.po | 58 ++++++++++++++++----------------
po/uz(a)latin.po | 66 +++++++++++++++++++-------------------
po/zh_CN.po | 36 ++++++++++----------
po/zh_TW.po | 32 +++++++++---------
65 files changed, 1288 insertions(+), 1454 deletions(-)
diff --git a/po/af.po b/po/af.po
index 0fc20b6..5a89451 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-14 09:21-0400\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: afrikaans <af(a)li.org>\n"
+"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -649,8 +649,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@@ -895,8 +895,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@@ -1918,8 +1918,8 @@ msgstr "Welkom by %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -4871,8 +4871,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@@ -5597,8 +5597,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -8396,8 +8396,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/ar.po b/po/ar.po
index f889456..1f08058 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-14 09:21-0400\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-09 03:43+0200\n"
"Last-Translator: Abdullah Al-Saedi <abdullah.10(a)windowslive.com>\n"
"Language-Team: arabic <ar(a)li.org>\n"
+"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -353,8 +353,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
-"s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
+"%s."
#: db_operations.php:600
msgid "Edit or export relational schema"
@@ -634,8 +634,8 @@ msgstr "التتبع غير نشط."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "هذا العرض له ما لا يقل عدد هذه الصفوف يرجى الرجوع إلى %s الوثيقة %s"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@@ -871,8 +871,8 @@ msgstr "تم حفظ الـDump إلى الملف %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"يبدو أنك تحاول رفع ملف كبير الحجم , فضلاً راجع المستند %sdocumentation%s لحل "
"المشكلة."
@@ -1826,8 +1826,8 @@ msgstr "أهلا بك في %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr "يبدو انك لم تنشئ ملف الإعدادات.إستخدم %1$ssetup script%2$s لإنشائه."
#: libraries/auth/config.auth.lib.php:115
@@ -4745,8 +4745,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@@ -5478,8 +5478,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -7624,8 +7624,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
-"s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
+"%s."
#: main.php:314
msgid ""
@@ -8370,8 +8370,8 @@ msgstr "احذف قواعد البيانات التي لها نفس أسماء
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL "
"مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا "
@@ -10683,8 +10683,8 @@ msgstr "أعد تسمية العرض الـ"
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
-#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %"
-#~ "sهنا%s."
+#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط "
+#~ "%sهنا%s."
#~ msgid "Execute bookmarked query"
#~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية"
diff --git a/po/az.po b/po/az.po
index fdd32b7..1107789 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-14 09:21-0400\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -648,8 +648,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@@ -897,8 +897,8 @@ msgstr "Sxem %s faylına qeyd edildi."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@@ -1939,8 +1939,8 @@ msgstr "%s - e Xoş Gelmişsiniz!"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -4929,8 +4929,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@@ -5664,8 +5664,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -8568,8 +8568,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler "
"cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin "
diff --git a/po/be.po b/po/be.po
index fdca541..7dc5cb2 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-14 09:21-0400\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be(a)li.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -647,11 +647,11 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %"
-"sдакумэнтацыі%s."
+"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да "
+"%sдакумэнтацыі%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -903,8 +903,8 @@ msgstr "Дамп захаваны ў файл %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, "
"зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае "
@@ -923,8 +923,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). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
+"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца "
+"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
"канфігурацыі."
#: import.php:335
@@ -1976,8 +1976,8 @@ msgstr "Запрашаем у %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго "
"стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s."
@@ -5028,8 +5028,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна "
"выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя "
@@ -5834,8 +5834,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -8831,8 +8831,8 @@ msgstr "Выдаліць базы дадзеных, якія маюць такі
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц "
"прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, "
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index adedadf..6f9001b 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-14 09:21-0400\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n"
+"Language: be@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: be@latin\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -653,11 +653,11 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %"
-"sdakumentacyi%s."
+"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da "
+"%sdakumentacyi%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -900,8 +900,8 @@ msgstr "Damp zachavany ŭ fajł %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, "
"źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje "
@@ -920,8 +920,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
-"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%"
-"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
+"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca "
+"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
"kanfihuracyi."
#: import.php:335
@@ -1981,8 +1981,8 @@ msgstr "Zaprašajem u %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab "
"jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s."
@@ -5002,8 +5002,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu "
"možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć "
@@ -5811,8 +5811,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -7546,8 +7546,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci "
-"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %"
-"sdakumentacyi%s."
+"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ "
+"%sdakumentacyi%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@@ -7747,8 +7747,8 @@ msgstr ""
"dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar "
"vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar "
"vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo "
-"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U "
-"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
+"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). "
+"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
"parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), "
"a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()."
@@ -8809,8 +8809,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic "
"pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, "
diff --git a/po/bg.po b/po/bg.po
index 56239ae..bccd879 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-14 09:21-0400\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-07 16:45+0200\n"
"Last-Translator: <stoyanster(a)gmail.com>\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
+"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -622,8 +622,8 @@ msgstr "Проследяването е неактивно."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@@ -862,8 +862,8 @@ msgstr "Схемата беше запазена във файл %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се "
"към %sдокументацията%s за да намерите начин да избегнете това ограничение."
@@ -1814,8 +1814,8 @@ msgstr "Добре дошли в %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Изглежда не се създали конфигурационен файл. Вероятно ще искате да "
"използвате %1$sскрипта за настройки%2$s, за да го създадете."
@@ -4687,8 +4687,8 @@ msgstr ", @TABLE@ ще стане името на таблицата"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@@ -5378,8 +5378,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -7041,8 +7041,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL валидаторът не може да бъде инициализиран. Моля проверете дали са "
-"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%"
-"s."
+"инсталирани необходимите PHP разширения, както е описано в %sдокументацията"
+"%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@@ -7716,8 +7716,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез %"
-"sскрипта за настройки%s."
+"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез "
+"%sскрипта за настройки%s."
#: prefs_manage.php:302
msgid "Save to browser's storage"
@@ -8161,8 +8161,8 @@ msgstr "Изтриване на БД, които имат имена като т
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Забележка: phpMyAdmin взема потребителските права директно от таблицата с "
"правата на MySQL. Съдържанието на тази таблица може да се различава от "
@@ -10265,8 +10265,8 @@ msgid ""
"No themes support; please check your configuration and/or your themes in "
"directory %s."
msgstr ""
-"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка %"
-"s."
+"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка "
+"%s."
#: themes.php:41
msgid "Get more themes!"
diff --git a/po/bn.po b/po/bn.po
index 85c825b..a0f67ed 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-14 09:21-0400\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন <nobin(a)cyberbogra.com>\n"
"Language-Team: bangla <bn(a)li.org>\n"
+"Language: bn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: bn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -644,8 +644,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@@ -895,11 +895,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@@ -1956,8 +1956,8 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার "
"করে একটি তৈরী করতে পারেন "
@@ -4992,12 +4992,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:268
msgid "use this for future exports"
@@ -5760,8 +5760,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -8723,13 +8723,13 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
diff --git a/po/br.po b/po/br.po
index 1178162..d74c86a 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-14 09:21-0400\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-13 19:47+0200\n"
"Last-Translator: <fulup.jakez(a)ofis-bzh.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
+"Language: br\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: br\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -626,11 +626,11 @@ msgstr "N'eo ket oberiant an heuliañ."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an %"
-"steulioù titouriñ%s."
+"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an "
+"%steulioù titouriñ%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -867,11 +867,11 @@ msgstr "Enrollet eo bet ar restr ezporzhiañ e%s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an %"
-"steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se."
+"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an "
+"%steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@@ -1824,11 +1824,11 @@ msgstr "Degemer mat e %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar %"
-"1$sskript kefluniañ%2$s da sevel unan."
+"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar "
+"%1$sskript kefluniañ%2$s da sevel unan."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -4713,8 +4713,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@@ -5406,8 +5406,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -8057,8 +8057,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/bs.po b/po/bs.po
index 4dbc62e..5fefb87 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-14 09:21-0400\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs(a)li.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -648,8 +648,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@@ -897,8 +897,8 @@ msgstr "Sadržaj baze je sačuvan u fajl %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@@ -1931,8 +1931,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -4917,8 +4917,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@@ -5651,8 +5651,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -8553,8 +8553,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "
diff --git a/po/ca.po b/po/ca.po
index 26ac767..b41bbfd 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-14 09:21-0400\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
"Last-Translator: Xavier Navarro <xvnavarro(a)gmail.com>\n"
"Language-Team: catalan <ca(a)li.org>\n"
+"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -626,8 +626,8 @@ msgstr "El seguiment no està actiu."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s."
@@ -872,11 +872,11 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Probablement has triat d'enviar un arxiu massa gran. Consulta la %"
-"sdocumentació%s per trobar formes de modificar aquest límit."
+"Probablement has triat d'enviar un arxiu massa gran. Consulta la "
+"%sdocumentació%s per trobar formes de modificar aquest límit."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@@ -1866,8 +1866,8 @@ msgstr "Benvingut a %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"La raó més probable d'aixó és que no heu creat l'arxiu de configuració. "
"Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un."
@@ -4955,12 +4955,12 @@ msgstr ", @TABLE@ serà el nom de la taula"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les "
-"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3"
-"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
+"cadenes de formateig de temps. A més, es faran aquestes transformacions: "
+"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
"per a més detalls."
#: libraries/display_export.lib.php:268
@@ -5743,8 +5743,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Pots trobar la documentació i més informació sobre PBXT a la pàgina "
"principal de %sPrimeBase XT%s."
@@ -7471,8 +7471,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu "
-"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %"
-"sdocumentació%s."
+"instal·lats els mòduls de PHP necessaris tal i com s'indica a la "
+"%sdocumentació%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@@ -8637,8 +8637,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de "
"permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels "
@@ -10203,8 +10203,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%"
-"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
+"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store"
+"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
"igual a ell."
#: setup/lib/index.lib.php:266
@@ -10232,8 +10232,8 @@ msgstr ""
"Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom "
"d'usuari i la contrasenya per connexions automàtiques, que es una opció no "
"recomanable per a servidors actius. Qualsevol que conegui la teva URL de "
-"phpMyAdmin pot accedir al teu panel directament. Estableix el %"
-"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
+"phpMyAdmin pot accedir al teu panel directament. Estableix el "
+"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
#: setup/lib/index.lib.php:270
#, php-format
diff --git a/po/cs.po b/po/cs.po
index 2b21a32..abfe933 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-14 09:21-0400\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-13 14:58+0200\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\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.5\n"
@@ -627,8 +627,8 @@ msgstr "Sledování není zapnuté."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
@@ -867,8 +867,8 @@ msgstr "Výpis byl uložen do souboru %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si "
"prosím %sdokumentaci%s, jak toto omezení obejít."
@@ -1821,8 +1821,8 @@ msgstr "Vítejte v %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho "
"vytvoření by se vám mohl hodit %1$snastavovací skript%2$s."
@@ -4851,8 +4851,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít "
"libovolné řetězce pro formátování data a času. Dále budou provedena "
@@ -5618,8 +5618,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase "
"XT%s."
@@ -7300,8 +7300,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %"
-"spopisy transformací%s"
+"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
+"%spopisy transformací%s"
#: libraries/tbl_properties.inc.php:147
msgid "Transformation options"
@@ -7352,8 +7352,8 @@ msgid ""
"No description is available for this transformation.<br />Please ask the "
"author what %s does."
msgstr ""
-"Pro tuto transformaci není dostupný žádný popis.<br />Zeptejte se autora co %"
-"s dělá."
+"Pro tuto transformaci není dostupný žádný popis.<br />Zeptejte se autora co "
+"%s dělá."
#: libraries/tbl_properties.inc.php:609 tbl_structure.php:678
#, php-format
@@ -7967,8 +7967,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %"
-"sNastavovacího skriptu%s."
+"Více věcí můžete nastavit úpravou config.inc.php, např. použitím "
+"%sNastavovacího skriptu%s."
#: prefs_manage.php:302
msgid "Save to browser's storage"
@@ -8407,8 +8407,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto "
"tabulek se může lišit od oprávnění, která server právě používá, pokud byly "
@@ -9926,8 +9926,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%"
-"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
+"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie"
+"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
"hodnotu než je tato."
#: setup/lib/index.lib.php:266
@@ -9938,8 +9938,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %"
-"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
+"Pokud to považujete za nutné, použijte další možnosti zabezpečení - "
+"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
"založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa "
"dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli."
diff --git a/po/cy.po b/po/cy.po
index 8afdfad..1ef9942 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-14 09:21-0400\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-05-19 21:21+0200\n"
"Last-Translator: <ardavies(a)tiscali.co.uk>\n"
"Language-Team: Welsh <cy(a)li.org>\n"
+"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: cy\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -630,8 +630,8 @@ msgstr "Nid yw tracio'n weithredol"
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s."
@@ -872,8 +872,8 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth"
"%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn."
@@ -1888,11 +1888,11 @@ msgstr "Croeso i %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1"
-"$sgript gosod%2$s er mwyn ei chreu."
+"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r "
+"%1$sgript gosod%2$s er mwyn ei chreu."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -4880,8 +4880,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@@ -5617,8 +5617,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -8397,8 +8397,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/da.po b/po/da.po
index fdf9dfe..d3a77b0 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-14 09:21-0400\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-14 08:33+0200\n"
"Last-Translator: <jacobkamphansen(a)gmail.com>\n"
"Language-Team: danish <da(a)li.org>\n"
+"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -620,8 +620,8 @@ msgstr "Sporing er ikke aktiv."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "Viewet har mindst dette antal rækker. Se venligst %sdokumentationen%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@@ -860,11 +860,11 @@ msgstr "Dump er blevet gemt i filen %s."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %"
-"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
+"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst "
+"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
"begrænsning."
#: import.php:277 import.php:330 libraries/File.class.php:459
@@ -1816,8 +1816,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. "
"Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en."
@@ -2006,7 +2006,6 @@ msgid "Check Privileges"
msgstr "Check Privilegier"
#: libraries/common.inc.php:588
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "Kunne ikke indlæse konfigurationsfilen"
@@ -2221,7 +2220,6 @@ msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s"
#: libraries/common.lib.php:2447
-#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Klik for at skifte"
@@ -3175,12 +3173,10 @@ msgid "Customize links shown in SQL Query boxes"
msgstr "Tilpas links vist i SQL Query-boksen"
#: libraries/config/messages.inc.php:219
-#| msgid "Server variables and settings"
msgid "SQL queries settings"
msgstr "Indstillinger til SQL-forespørgsler"
#: libraries/config/messages.inc.php:220
-#| msgid "SQL history"
msgid "SQL Validator"
msgstr "SQL Validator"
@@ -3209,12 +3205,10 @@ msgid "Choose how you want tabs to work"
msgstr "Vælg hvordan du ønsker at fanerne skal fungere"
#: libraries/config/messages.inc.php:226
-#| msgid "Use text field"
msgid "Text fields"
msgstr "Tekstfelter"
#: libraries/config/messages.inc.php:227
-#| msgid "Use text field"
msgid "Customize text input fields"
msgstr "Tilpas tekstfelter"
@@ -3298,7 +3292,6 @@ msgstr "Brug LOCAL nøgleord"
#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262
#: libraries/config/messages.inc.php:263
-#| msgid "Put fields names in the first row"
msgid "Column names in first row"
msgstr "Indsæt feltnavne i første række"
@@ -3315,7 +3308,6 @@ msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Importér procenter med korrekte decimaler (12.00% bliver til .12)"
#: libraries/config/messages.inc.php:258
-#| msgid "Number of records (queries) to skip from start"
msgid "Number of queries to skip from start"
msgstr "Antal SQL-forespørgsler der skal springes over fra start"
@@ -3325,7 +3317,6 @@ msgstr "Delvis import: Spring over forespørgsler"
# zero = null?
#: libraries/config/messages.inc.php:261
-#| msgid "Add AUTO_INCREMENT value"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Brug ikke AUTO_INCREMENT for 0-værdier"
@@ -3362,7 +3353,6 @@ msgid "Display servers selection"
msgstr "Vis servervalg"
#: libraries/config/messages.inc.php:272
-#| msgid "The number of tables that are open."
msgid "Minimum number of tables to display the table filter box"
msgstr "Mindste antal tabeller der skal vises i tabel-filterboksen"
@@ -3417,8 +3407,8 @@ msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-"Åbn den linkede side i hovedvinduet ([kbd]main[/kbd]) eller i et nyt "
-"([kbd]new[/kbd])"
+"Åbn den linkede side i hovedvinduet ([kbd]main[/kbd]) eller i et nyt ([kbd]"
+"new[/kbd])"
#: libraries/config/messages.inc.php:285
msgid "Logo link target"
@@ -3438,7 +3428,6 @@ msgstr ""
"Højeste antal af tidligere anvendte tabeller; sæt til 0 for at deaktivere"
#: libraries/config/messages.inc.php:289
-#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Tidligere anvendte tabeller"
@@ -4802,8 +4791,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede "
"strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst "
@@ -5566,8 +5555,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -8540,14 +8529,14 @@ msgstr "Drop databaser der har samme navne som brugernes."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs "
"privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra "
"privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle "
-"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%"
-"s før du fortsætter."
+"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne"
+"%s før du fortsætter."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
diff --git a/po/de.po b/po/de.po
index 8caadd1..620c75b 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-07-14 09:21-0400\n"
+"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-14 13:46+0200\n"
"Last-Translator: <mrbendig(a)mrbendig.com>\n"
"Language-Team: german <de(a)li.org>\n"
+"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -353,8 +353,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%"
-"s um herauszufinden warum."
+"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier"
+"%s um herauszufinden warum."
#: db_operations.php:600
msgid "Edit or export relational schema"
@@ -622,8 +622,8 @@ msgstr "Tracking ist nicht aktiviert."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Dieser Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie "
"die %sDokumentation%s."
@@ -866,11 +866,11 @@ msgstr "Dump wurde in Datei %s gespeichert."
#: import.php:57
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %"
-"sDokumentation%s zur Lösung diese Problems."
+"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die "
+"%sDokumentation%s zur Lösung diese Problems."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@@ -1830,8 +1830,8 @@ msgstr "Willkommen bei %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Eine mögliche Ursache wäre, dass Sie noch keine Konfigurationsdatei angelegt "
"haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine "
@@ -2238,7 +2238,6 @@ msgstr ""
"Die Funktion %s wird durch einen bekannten Fehler beeinträchtigt, siehe %s"
#: libraries/common.lib.php:2447
-#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Zum Umschalten anklicken"
@@ -4899,8 +4898,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter "
"für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen "
@@ -5679,8 +5678,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase "
"XT-Website%s verfügbar."
@@ -6577,7 +6576,6 @@ msgid "Generate Password"
msgstr "Passwort generieren"
#: libraries/rte/rte_events.lib.php:58
-#| msgid "Add an event"
msgid "Add event"
msgstr "Ein Ereignis hinzufügen"
@@ -6587,7 +6585,6 @@ msgid "Export of event %s"
msgstr "Export des Ereignisses %s"
#: libraries/rte/rte_events.lib.php:61
-#| msgid "Event"
msgid "event"
msgstr "Ereignis"
@@ -6597,8 +6594,8 @@ msgstr "Ereignis"
msgid "You do not have the necessary privileges to create an event"
msgstr "Sie haben nicht genug Rechte um ein neues Ereignis zu erstellen"
-#: libraries/rte/rte_events.lib.php:29
-#| msgid "No event with name %s found in database %s"
+#: libraries/rte/rte_events.lib.php:63
+#, php-format
msgid "No event with name %1$s found in database %2$s"
msgstr "Es wurde kein Ereignis mit dem Namen %s in Datenbank %s gefunden"
@@ -6618,8 +6615,7 @@ msgstr "Es sind keine Ereignisse vorhanden, die angezeigt werden könnten."
msgid "The following query has failed: \"%s\""
msgstr "Die folgende Abfrage ist fehlgeschlagen: \"%s\""
-#: libraries/rte/rte_events.lib.php:105
-#| msgid "Sorry, we failed to restore the dropped routine."
+#: libraries/rte/rte_events.lib.php:140
msgid "Sorry, we failed to restore the dropped event."
msgstr "Das wiederherstellen des gelöschten Ereignisses schlug fehl."
@@ -6630,13 +6626,11 @@ msgstr "Die gesicherte Abfrage war:"
#: libraries/rte/rte_events.lib.php:145
#, php-format
-#| msgid "Routine %1$s has been modified."
msgid "Event %1$s has been modified."
msgstr "Ereignis %1$s wurde geändert."
#: libraries/rte/rte_events.lib.php:157
#, php-format
-#| msgid "Table %1$s has been created."
msgid "Event %1$s has been created."
msgstr "Ereignis %1$s wurde erzeugt."
@@ -6648,12 +6642,10 @@ msgstr ""
"wurde:</b>"
#: libraries/rte/rte_events.lib.php:205
-#| msgid "Create view"
msgid "Create event"
msgstr "Erzeuge Ereignis"
#: libraries/rte/rte_events.lib.php:209
-#| msgid "Edit server"
msgid "Edit event"
msgstr "Event bearbeiten"
@@ -6670,7 +6662,6 @@ msgid "Details"
msgstr "Details"
#: libraries/rte/rte_events.lib.php:398
-#| msgid "Event type"
msgid "Event name"
msgstr "Ereignis-Name"
@@ -6684,17 +6675,14 @@ msgid "Change to %s"
msgstr "Wechseln zu %s"
#: libraries/rte/rte_events.lib.php:446
-#| msgid "Execute"
msgid "Execute at"
msgstr "Ausführen um"
#: libraries/rte/rte_events.lib.php:454
-#| msgid "Execute"
msgid "Execute every"
msgstr "Abfrage ausführen"
#: libraries/rte/rte_events.lib.php:473
-#| msgid "Startup"
msgid "Start"
msgstr "Anfang"
@@ -6704,7 +6692,6 @@ msgid "Definition"
msgstr "Beschreibung"
#: libraries/rte/rte_events.lib.php:495
-#| msgid "complete inserts"
msgid "On completion preserve"
msgstr "Nach Abschluss erhalten"
@@ -6720,27 +6707,22 @@ msgid "The definer must be in the \"username@hostname\" format"
msgstr "Der Ersteller muss im \"benutzername@hostname\" Format sein"
#: libraries/rte/rte_events.lib.php:549
-#| msgid "You must provide a routine name"
msgid "You must provide an event name"
msgstr "Sie müssen einen Ereignis-Namen angeben"
#: libraries/rte/rte_events.lib.php:561
-#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid interval value for the event."
msgstr "Sie müssen einen gültigen Intervall für dieses Ereignis angeben."
#: libraries/rte/rte_events.lib.php:573
-#| msgid "You must provide a routine definition."
msgid "You must provide a valid execution time for the event."
msgstr "Sie müssen eine gültige Ausführungszeit für dieses Ereignis angeben."
#: libraries/rte/rte_events.lib.php:577
-#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid type for the event."
msgstr "Sie müssen einen gültigen Typ für dieses Event angeben."
#: libraries/rte/rte_events.lib.php:596
-#| msgid "You must provide a routine definition."
msgid "You must provide an event definition."
msgstr "Sie müssen die Definition des Ereignisses angeben."
@@ -6757,12 +6739,10 @@ msgid "ON"
msgstr "AN"
#: libraries/rte/rte_footer.lib.php:108
-#| msgid "The event scheduler is enabled"
msgid "Event scheduler status"
msgstr "Ereignis-Planer-Statistiken"
#: libraries/rte/rte_list.lib.php:52
-#| msgid "Return type"
msgid "Returns"
msgstr "Rückgabe-Wert"
@@ -6785,7 +6765,6 @@ msgid "Export of routine %s"
msgstr "Exportieren der Prozedur %s"
#: libraries/rte/rte_routines.lib.php:46
-#| msgid "Routines"
msgid "routine"
msgstr "Prozedur"
@@ -6810,11 +6789,11 @@ msgid ""
"handling multi queries. <b>The execution of some stored routines may fail!</"
"b> Please use the improved 'mysqli' extension to avoid any problems."
msgstr ""
-"Sie verwenden die von PHP als 'veraltet' gekennzeichnete "
-"'mysql'-Erweiterung, die nicht in der Lage ist, mehrere Abfragen zu "
-"verarbeiten. <b>Die Ausführung von einigen gespeicherten Prozeduren könnte "
-"fehlschlagen!</b> Bitte verwenden Sie die neuere 'mysqli'-Erweiterung um "
-"Probleme zu vermeiden."
+"Sie verwenden die von PHP als 'veraltet' gekennzeichnete 'mysql'-"
+"Erweiterung, die nicht in der Lage ist, mehrere Abfragen zu verarbeiten. "
+"<b>Die Ausführung von einigen gespeicherten Prozeduren könnte fehlschlagen!</"
+"b> Bitte verwenden Sie die neuere 'mysqli'-Erweiterung um Probleme zu "
+"vermeiden."
#: libraries/rte/rte_routines.lib.php:272
#: libraries/rte/rte_routines.lib.php:1052
@@ -6916,7 +6895,6 @@ msgstr ""
"Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben."
#: libraries/rte/rte_routines.lib.php:1126
-#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid return type for the routine."
msgstr ""
"Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben."
@@ -6964,7 +6942,6 @@ msgid "Export of trigger %s"
msgstr "Export des Triggers %s"
#: libraries/rte/rte_triggers.lib.php:42
-#| msgid "Triggers"
msgid "trigger"
msgstr "Trigger"
@@ -6974,9 +6951,8 @@ msgstr "Trigger"
msgid "You do not have the necessary privileges to create a trigger"
msgstr "Sie haben nicht genug Rechte um einen neuen Trigger zu erstellen"
-#: libraries/rte/rte_triggers.lib.php:29
+#: libraries/rte/rte_triggers.lib.php:44
#, php-format
-#| msgid "No routine with name %1$s found in database %2$s"
msgid "No trigger with name %1$s found in database %2$s"
msgstr "Keine Trigger namens %1$s in der Datenbank %2$s gefunden"
@@ -6985,60 +6961,49 @@ msgid "There are no triggers to display."
msgstr "Es sind keine Trigger zum Anzeigen vorhanden."
#: libraries/rte/rte_triggers.lib.php:113
-#| msgid "Sorry, we failed to restore the dropped routine."
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Das Wiederherstellen der gelöschten Trigger schlug fehl."
#: libraries/rte/rte_triggers.lib.php:118
#, php-format
-#| msgid "Routine %1$s has been modified."
msgid "Trigger %1$s has been modified."
msgstr "Trigger %1$s wurde geändert."
#: libraries/rte/rte_triggers.lib.php:130
#, php-format
-#| msgid "Table %1$s has been created."
msgid "Trigger %1$s has been created."
msgstr "Trigger %1$s wurde erzeugt."
#: libraries/rte/rte_triggers.lib.php:181
-#| msgid "Create view"
msgid "Create trigger"
msgstr "Erzeuge Trigger"
#: libraries/rte/rte_triggers.lib.php:185
-#| msgid "Add a trigger"
msgid "Edit trigger"
msgstr "Einen Trigger bearbeiten"
#: libraries/rte/rte_triggers.lib.php:325
-#| msgid "Triggers"
msgid "Trigger name"
msgstr "Trigger-Name"
#: libraries/rte/rte_triggers.lib.php:423
-#| msgid "You must provide a routine name"
msgid "You must provide a trigger name"
msgstr "Sie müssen einen Trigger-Namen angeben"
#: libraries/rte/rte_triggers.lib.php:428
-#| msgid "You must provide a routine name"
msgid "You must provide a valid timing for the trigger"
msgstr "Sie müssen einen Trigger-Namen angeben"
#: libraries/rte/rte_triggers.lib.php:433
-#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid event for the trigger"
msgstr ""
"Sie müssen einen Namen und einen Typ für jeden Trugger-Parameter angeben."
#: libraries/rte/rte_triggers.lib.php:439
-#| msgid "You must provide a routine name"
msgid "You must provide a valid table name"
msgstr "Sie müssen einen gültigen Tabellen-Namen angeben"
#: libraries/rte/rte_triggers.lib.php:445
-#| msgid "You must provide a routine definition."
msgid "You must provide a trigger definition."
msgstr "Sie müssen die D trigger definition."