Git
Threads by month
- ----- 2025 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 11 participants
- 38616 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_2RC1-2941-gbbbf2c4
by Michal Čihař 03 Jun '11
by Michal Čihař 03 Jun '11
03 Jun '11
The branch, master has been updated
via bbbf2c49ed922c73f24b8e9c9c01c0721893cd07 (commit)
from 4841ee9d5f9926187b0eb8b23e6dd87af2daeab4 (commit)
- Log -----------------------------------------------------------------
commit bbbf2c49ed922c73f24b8e9c9c01c0721893cd07
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Jun 3 14:02:02 2011 +0200
Drop $GLOBALS['charset'].
It was anyway always set to utf-8 so it does not make sense to keep it
as a variable.
-----------------------------------------------------------------------
Summary of changes:
export.php | 6 +-
index.php | 4 +-
libraries/File.class.php | 8 +-
libraries/auth/config.auth.lib.php | 2 +-
libraries/auth/cookie.auth.lib.php | 3 +-
libraries/auth/http.auth.lib.php | 2 +-
libraries/database_interface.lib.php | 12 +-
libraries/export/htmlword.php | 4 +-
libraries/export/ods.php | 2 +-
libraries/export/odt.php | 4 +-
libraries/export/sql.php | 6 +-
libraries/export/xml.php | 84 +++++-----
libraries/header_http.inc.php | 2 +-
libraries/header_meta_style.inc.php | 4 +-
libraries/import.lib.php | 176 ++++++++++----------
libraries/schema/Export_Relation_Schema.class.php | 10 +-
libraries/select_lang.lib.php | 3 -
libraries/sql_query_form.lib.php | 1 -
libraries/string.lib.php | 2 +-
navigation.php | 6 +-
pmd_relation_new.php | 2 +-
test/PMA_SQL_parser_test.php | 1 -
test/PMA_STR_sub_test.php | 2 -
test/theme.php | 5 +-
24 files changed, 164 insertions(+), 187 deletions(-)
diff --git a/export.php b/export.php
index 22a6324..1a60151 100644
--- a/export.php
+++ b/export.php
@@ -147,7 +147,7 @@ function PMA_exportOutputHandler($line)
if ($dump_buffer_len > $GLOBALS['memory_limit']) {
if ($GLOBALS['output_charset_conversion']) {
- $dump_buffer = PMA_convert_string($GLOBALS['charset'], $GLOBALS['charset_of_file'], $dump_buffer);
+ $dump_buffer = PMA_convert_string('utf-8', $GLOBALS['charset_of_file'], $dump_buffer);
}
// as bzipped
if ($GLOBALS['compression'] == 'bzip' && @function_exists('bzcompress')) {
@@ -181,7 +181,7 @@ function PMA_exportOutputHandler($line)
} else {
if ($GLOBALS['asfile']) {
if ($GLOBALS['output_charset_conversion']) {
- $line = PMA_convert_string($GLOBALS['charset'], $GLOBALS['charset_of_file'], $line);
+ $line = PMA_convert_string('utf-8', $GLOBALS['charset_of_file'], $line);
}
if ($GLOBALS['save_on_server'] && strlen($line) > 0) {
$write_result = @fwrite($GLOBALS['file_handle'], $line);
@@ -637,7 +637,7 @@ if ($save_on_server && isset($message)) {
if (!empty($asfile)) {
// Convert the charset if required.
if ($output_charset_conversion) {
- $dump_buffer = PMA_convert_string($GLOBALS['charset'], $GLOBALS['charset_of_file'], $dump_buffer);
+ $dump_buffer = PMA_convert_string('utf-8', $GLOBALS['charset_of_file'], $dump_buffer);
}
// Do the compression
diff --git a/index.php b/index.php
index 66f6bf5..36a6118 100644
--- a/index.php
+++ b/index.php
@@ -12,7 +12,6 @@
* or common.inc.php
* @uses $GLOBALS['available_languages'] from common.inc.php (select_lang.lib.php)
* @uses $GLOBALS['db']
- * @uses $GLOBALS['charset']
* @uses $GLOBALS['lang']
* @uses $GLOBALS['text_dir']
* @uses $_ENV['HTTP_HOST']
@@ -102,8 +101,7 @@ include ('./libraries/header_http.inc.php');
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<title>phpMyAdmin <?php echo PMA_VERSION; ?> -
<?php echo htmlspecialchars($HTTP_HOST); ?></title>
-<meta http-equiv="Content-Type"
- content="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex,nofollow" />
<script type="text/javascript">
// <![CDATA[
diff --git a/libraries/File.class.php b/libraries/File.class.php
index 4fd3342..109c188 100644
--- a/libraries/File.class.php
+++ b/libraries/File.class.php
@@ -259,7 +259,7 @@ class PMA_File
* @uses curl_setopt_array()
* @uses PMA_File::$_error_message
* @uses $_FILES
- * @param string $key the md5 hash of the column name
+ * @param string $key the md5 hash of the column name
* @param string $rownumber
* @return boolean success
*/
@@ -378,7 +378,7 @@ class PMA_File
* @uses $_REQUEST
* @uses PMA_File::setLocalSelectedFile()
* @uses is_string()
- * @param string $key the md5 hash of the column name
+ * @param string $key the md5 hash of the column name
* @param string $rownumber
* @return boolean success
*/
@@ -462,7 +462,7 @@ class PMA_File
* @access public
* @uses PMA_File::setUploadedFromTblChangeRequest()
* @uses PMA_File::setSelectedFromTblChangeRequest()
- * @param string $key the md5 hash of the column name
+ * @param string $key the md5 hash of the column name
* @param string $rownumber
* @return boolean success
*/
@@ -820,7 +820,7 @@ class PMA_File
echo '<hr />';
if ($GLOBALS['charset_conversion']) {
- $result = PMA_convert_string($this->getCharset(), $GLOBALS['charset'], $result);
+ $result = PMA_convert_string($this->getCharset(), 'utf-8', $result);
} else {
/**
* Skip possible byte order marks (I do not think we need more
diff --git a/libraries/auth/config.auth.lib.php b/libraries/auth/config.auth.lib.php
index 3a9f82b..dfa2f2c 100644
--- a/libraries/auth/config.auth.lib.php
+++ b/libraries/auth/config.auth.lib.php
@@ -78,7 +78,7 @@ function PMA_auth_fails()
}
// Defines the charset to be used
- header('Content-Type: text/html; charset=' . $GLOBALS['charset']);
+ header('Content-Type: text/html; charset=utf-8');
/* HTML header */
$page_title = __('Access denied');
require './libraries/header_meta_style.inc.php';
diff --git a/libraries/auth/cookie.auth.lib.php b/libraries/auth/cookie.auth.lib.php
index c04d5a2..23b6ff0 100644
--- a/libraries/auth/cookie.auth.lib.php
+++ b/libraries/auth/cookie.auth.lib.php
@@ -110,7 +110,6 @@ function PMA_get_blowfish_secret() {
* @uses $GLOBALS['pma_auth_server']
* @uses $GLOBALS['text_dir']
* @uses $GLOBALS['pmaThemeImage']
- * @uses $GLOBALS['charset']
* @uses $GLOBALS['target']
* @uses $GLOBALS['db']
* @uses $GLOBALS['table']
@@ -162,7 +161,7 @@ function PMA_auth()
$cell_align = ($GLOBALS['text_dir'] == 'ltr') ? 'left' : 'right';
// Defines the charset to be used
- header('Content-Type: text/html; charset=' . $GLOBALS['charset']);
+ header('Content-Type: text/html; charset=utf-8');
// Defines the "item" image depending on text direction
$item_img = $GLOBALS['pmaThemeImage'] . 'item_' . $GLOBALS['text_dir'] . '.png';
diff --git a/libraries/auth/http.auth.lib.php b/libraries/auth/http.auth.lib.php
index b3d305a..f4157b6 100644
--- a/libraries/auth/http.auth.lib.php
+++ b/libraries/auth/http.auth.lib.php
@@ -46,7 +46,7 @@ function PMA_auth()
}
// Defines the charset to be used
- header('Content-Type: text/html; charset=' . $GLOBALS['charset']);
+ header('Content-Type: text/html; charset=utf-8');
/* HTML header */
$page_title = __('Access denied');
require './libraries/header_meta_style.inc.php';
diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php
index 9735a82..91a2283 100644
--- a/libraries/database_interface.lib.php
+++ b/libraries/database_interface.lib.php
@@ -82,7 +82,6 @@ function PMA_DBI_query($query, $link = null, $options = 0, $cache_affected_rows
* and charset names to ISO charset from information_schema.CHARACTER_SETS
*
* @uses $GLOBALS['cfg']['IconvExtraParams']
- * @uses $GLOBALS['charset'] as target charset
* @uses PMA_DBI_fetch_value() to get server_language
* @uses preg_match() to filter server_language
* @uses in_array()
@@ -135,20 +134,20 @@ function PMA_DBI_convert_message($message) {
if ((@stristr(PHP_OS, 'AIX')) && (@strcasecmp(ICONV_IMPL, 'unknown') == 0) && (@strcasecmp(ICONV_VERSION, 'unknown') == 0)) {
require_once './libraries/iconv_wrapper.lib.php';
$message = PMA_aix_iconv_wrapper($encodings[$server_language],
- $GLOBALS['charset'] . $GLOBALS['cfg']['IconvExtraParams'], $message);
+ 'utf-8' . $GLOBALS['cfg']['IconvExtraParams'], $message);
} else {
$message = iconv($encodings[$server_language],
- $GLOBALS['charset'] . $GLOBALS['cfg']['IconvExtraParams'], $message);
+ 'utf-8' . $GLOBALS['cfg']['IconvExtraParams'], $message);
}
} elseif (function_exists('recode_string')) {
- $message = recode_string($encodings[$server_language] . '..' . $GLOBALS['charset'],
+ $message = recode_string($encodings[$server_language] . '..' . 'utf-8',
$message);
} elseif (function_exists('libiconv')) {
- $message = libiconv($encodings[$server_language], $GLOBALS['charset'], $message);
+ $message = libiconv($encodings[$server_language], 'utf-8', $message);
} elseif (function_exists('mb_convert_encoding')) {
// do not try unsupported charsets
if (! in_array($server_language, array('ukrainian', 'greek', 'serbian'))) {
- $message = mb_convert_encoding($message, $GLOBALS['charset'],
+ $message = mb_convert_encoding($message, 'utf-8',
$encodings[$server_language]);
}
}
@@ -919,7 +918,6 @@ function PMA_DBI_get_variable($var, $type = PMA_DBI_GETVAR_SESSION, $link = null
* @uses $GLOBALS['collation_connection']
* @uses $GLOBALS['available_languages']
* @uses $GLOBALS['mysql_charset_map']
- * @uses $GLOBALS['charset']
* @uses $GLOBALS['lang']
* @uses $GLOBALS['cfg']['Lang']
* @uses defined()
diff --git a/libraries/export/htmlword.php b/libraries/export/htmlword.php
index d23640a..b88cb8f 100644
--- a/libraries/export/htmlword.php
+++ b/libraries/export/htmlword.php
@@ -63,7 +63,7 @@ function PMA_exportFooter() {
* @access public
*/
function PMA_exportHeader() {
- global $charset, $charset_of_file;
+ global $charset_of_file;
return PMA_exportOutputHandler('<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:word"
xmlns="http://www.w3.org/TR/REC-html40">
@@ -71,7 +71,7 @@ xmlns="http://www.w3.org/TR/REC-html40">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
- <meta http-equiv="Content-type" content="text/html;charset=' . (isset($charset_of_file) ? $charset_of_file : $charset) . '" />
+ <meta http-equiv="Content-type" content="text/html;charset=' . (isset($charset_of_file) ? $charset_of_file : 'utf-8') . '" />
</head>
<body>');
}
diff --git a/libraries/export/ods.php b/libraries/export/ods.php
index 28a5dfd..0533741 100644
--- a/libraries/export/ods.php
+++ b/libraries/export/ods.php
@@ -68,7 +68,7 @@ function PMA_exportFooter() {
* @access public
*/
function PMA_exportHeader() {
- $GLOBALS['ods_buffer'] .= '<?xml version="1.0" encoding="' . $GLOBALS['charset'] . '"?' . '>'
+ $GLOBALS['ods_buffer'] .= '<?xml version="1.0" encoding="utf-8"?' . '>'
. '<office:document-content '. $GLOBALS['OpenDocumentNS'] . 'office:version="1.0">'
. '<office:automatic-styles>'
. '<number:date-style style:name="N37" number:automatic-order="true">'
diff --git a/libraries/export/odt.php b/libraries/export/odt.php
index d1324f0..7af6013 100644
--- a/libraries/export/odt.php
+++ b/libraries/export/odt.php
@@ -100,7 +100,7 @@ function PMA_exportFooter() {
* @access public
*/
function PMA_exportHeader() {
- $GLOBALS['odt_buffer'] .= '<?xml version="1.0" encoding="' . $GLOBALS['charset'] . '"?' . '>'
+ $GLOBALS['odt_buffer'] .= '<?xml version="1.0" encoding="utf-8"?' . '>'
. '<office:document-content '. $GLOBALS['OpenDocumentNS'] . 'office:version="1.0">'
. '<office:body>'
. '<office:text>';
@@ -236,7 +236,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
*
* @access public
*/
- // @@@ Table structure
+ // @@@ Table structure
function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = false, $do_comments = false, $do_mime = false, $dates = false, $dummy)
{
global $cfgRelation;
diff --git a/libraries/export/sql.php b/libraries/export/sql.php
index 19f9873..3ed1c57 100644
--- a/libraries/export/sql.php
+++ b/libraries/export/sql.php
@@ -183,9 +183,9 @@ if (! isset($sql_backquotes)) {
}
/**
- * Exports routines (procedures and functions)
+ * Exports routines (procedures and functions)
*
- * @param string $db
+ * @param string $db
*
* @return bool Whether it suceeded
*/
@@ -389,7 +389,7 @@ function PMA_exportHeader()
$set_names = $mysql_charset_map[$GLOBALS['charset_of_file']];
} else {
// by default we use the connection charset
- $set_names = $mysql_charset_map[$GLOBALS['charset']];
+ $set_names = $mysql_charset_map['utf-8'];
}
$head .= $crlf
. '/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;' . $crlf
diff --git a/libraries/export/xml.php b/libraries/export/xml.php
index 9bafb09..55b272d 100644
--- a/libraries/export/xml.php
+++ b/libraries/export/xml.php
@@ -3,7 +3,7 @@
/**
* Set of functions used to build XML dumps of tables
*
- * @todo
+ * @todo
* @package phpMyAdmin-Export-XML
*/
if (! defined('PHPMYADMIN')) {
@@ -24,7 +24,7 @@ if (isset($plugin_list)) {
),
'options_text' => __('Options')
);
-
+
/* Export structure */
$plugin_list['xml']['options'][] =
array('type' => 'begin_group', 'name' => 'structure', 'text' => __('Object creation options (all are recommended)'));
@@ -39,7 +39,7 @@ if (isset($plugin_list)) {
$plugin_list['xml']['options'][] =
array('type' => 'bool', 'name' => 'export_views', 'text' => __('Views'));
$plugin_list['xml']['options'][] = array('type' => 'end_group');
-
+
/* Data */
$plugin_list['xml']['options'][] =
array('type' => 'begin_group', 'name' => 'data', 'text' => __('Data dump options'));
@@ -68,7 +68,7 @@ function PMA_exportComment($text) {
*/
function PMA_exportFooter() {
$foot = '</pma_xml_export>';
-
+
return PMA_exportOutputHandler($foot);
}
@@ -86,14 +86,14 @@ function PMA_exportHeader() {
global $db;
global $table;
global $tables;
-
+
$export_struct = isset($GLOBALS[$what . '_export_struc']) ? true : false;
$export_data = isset($GLOBALS[$what . '_export_contents']) ? true : false;
if ($GLOBALS['output_charset_conversion']) {
$charset = $GLOBALS['charset_of_file'];
} else {
- $charset = $GLOBALS['charset'];
+ $charset = 'utf-8';
}
$head = '<?xml version="1.0" encoding="' . $charset . '"?>' . $crlf
@@ -111,53 +111,53 @@ function PMA_exportHeader() {
. '- ' . __('Server version') . ': ' . substr(PMA_MYSQL_INT_VERSION, 0, 1) . '.' . (int) substr(PMA_MYSQL_INT_VERSION, 1, 2) . '.' . (int) substr(PMA_MYSQL_INT_VERSION, 3) . $crlf
. '- ' . __('PHP Version') . ': ' . phpversion() . $crlf
. '-->' . $crlf . $crlf;
-
+
$head .= '<pma_xml_export version="1.0"' . (($export_struct) ? ' xmlns:pma="http://www.phpmyadmin.net/some_doc_url/"' : '') . '>' . $crlf;
-
+
if ($export_struct) {
$result = PMA_DBI_fetch_result('SELECT `DEFAULT_CHARACTER_SET_NAME`, `DEFAULT_COLLATION_NAME` FROM `information_schema`.`SCHEMATA` WHERE `SCHEMA_NAME` = \''.$db.'\' LIMIT 1');
$db_collation = $result[0]['DEFAULT_COLLATION_NAME'];
$db_charset = $result[0]['DEFAULT_CHARACTER_SET_NAME'];
-
+
$head .= ' <!--' . $crlf;
$head .= ' - Structure schemas' . $crlf;
$head .= ' -->' . $crlf;
$head .= ' <pma:structure_schemas>' . $crlf;
$head .= ' <pma:database name="' . $db . '" collation="' . $db_collation . '" charset="' . $db_charset . '">' . $crlf;
-
+
if (count($tables) == 0) {
$tables[] = $table;
}
-
+
foreach ($tables as $table) {
// Export tables and views
$result = PMA_DBI_fetch_result('SHOW CREATE TABLE ' . PMA_backquote($db) . '.' . PMA_backquote($table), 0);
$tbl = $result[$table][1];
-
+
$is_view = PMA_isView($db, $table);
-
+
if ($is_view) {
$type = 'view';
} else {
$type = 'table';
}
-
+
if ($is_view && ! isset($GLOBALS[$what . '_export_views'])) {
continue;
}
-
+
if (! $is_view && ! isset($GLOBALS[$what . '_export_tables'])) {
continue;
}
-
+
$head .= ' <pma:' . $type . ' name="' . $table . '">' . $crlf;
-
+
$tbl = " " . $tbl;
$tbl = str_replace("\n", "\n ", $tbl);
-
+
$head .= $tbl . ';' . $crlf;
$head .= ' </pma:' . $type . '>' . $crlf;
-
+
if (isset($GLOBALS[$what . '_export_triggers']) && $GLOBALS[$what . '_export_triggers']) {
// Export triggers
$triggers = PMA_DBI_get_triggers($db, $table);
@@ -165,78 +165,78 @@ function PMA_exportHeader() {
foreach ($triggers as $trigger) {
$code = $trigger['create'];
$head .= ' <pma:trigger name="' . $trigger['name'] . '">' . $crlf;
-
+
// Do some formatting
$code = substr(rtrim($code), 0, -3);
$code = " " . $code;
$code = str_replace("\n", "\n ", $code);
-
+
$head .= $code . $crlf;
$head .= ' </pma:trigger>' . $crlf;
}
-
+
unset($trigger);
unset($triggers);
}
}
}
-
+
if (isset($GLOBALS[$what . '_export_functions']) && $GLOBALS[$what . '_export_functions']) {
// Export functions
$functions = PMA_DBI_get_procedures_or_functions($db, 'FUNCTION');
if ($functions) {
foreach ($functions as $function) {
$head .= ' <pma:function name="' . $function . '">' . $crlf;
-
+
// Do some formatting
$sql = PMA_DBI_get_definition($db, 'FUNCTION', $function);
$sql = rtrim($sql);
$sql = " " . $sql;
$sql = str_replace("\n", "\n ", $sql);
-
+
$head .= $sql . $crlf;
$head .= ' </pma:function>' . $crlf;
}
-
+
unset($create_func);
unset($function);
unset($functions);
}
}
-
+
if (isset($GLOBALS[$what . '_export_procedures']) && $GLOBALS[$what . '_export_procedures']) {
// Export procedures
$procedures = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE');
if ($procedures) {
foreach ($procedures as $procedure) {
$head .= ' <pma:procedure name="' . $procedure . '">' . $crlf;
-
+
// Do some formatting
$sql = PMA_DBI_get_definition($db, 'PROCEDURE', $procedure);
$sql = rtrim($sql);
$sql = " " . $sql;
$sql = str_replace("\n", "\n ", $sql);
-
+
$head .= $sql . $crlf;
$head .= ' </pma:procedure>' . $crlf;
}
-
+
unset($create_proc);
unset($procedure);
unset($procedures);
}
}
-
+
unset($result);
-
+
$head .= ' </pma:database>' . $crlf;
$head .= ' </pma:structure_schemas>' . $crlf;
-
+
if ($export_data) {
$head .= $crlf;
}
}
-
+
return PMA_exportOutputHandler($head);
}
@@ -252,13 +252,13 @@ function PMA_exportHeader() {
function PMA_exportDBHeader($db) {
global $crlf;
global $what;
-
+
if (isset($GLOBALS[$what . '_export_contents']) && $GLOBALS[$what . '_export_contents']) {
$head = ' <!--' . $crlf
. ' - ' . __('Database') . ': ' . (isset($GLOBALS['use_backquotes']) ? PMA_backquote($db) : '\'' . $db . '\''). $crlf
. ' -->' . $crlf
. ' <database name="' . $db . '">' . $crlf;
-
+
return PMA_exportOutputHandler($head);
}
else
@@ -279,7 +279,7 @@ function PMA_exportDBHeader($db) {
function PMA_exportDBFooter($db) {
global $crlf;
global $what;
-
+
if (isset($GLOBALS[$what . '_export_contents']) && $GLOBALS[$what . '_export_contents']) {
return PMA_exportOutputHandler(' </database>' . $crlf);
}
@@ -318,21 +318,21 @@ function PMA_exportDBCreate($db) {
*/
function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
global $what;
-
+
if (isset($GLOBALS[$what . '_export_contents']) && $GLOBALS[$what . '_export_contents']) {
$result = PMA_DBI_query($sql_query, null, PMA_DBI_QUERY_UNBUFFERED);
-
+
$columns_cnt = PMA_DBI_num_fields($result);
for ($i = 0; $i < $columns_cnt; $i++) {
$columns[$i] = stripslashes(str_replace(' ', '_', PMA_DBI_field_name($result, $i)));
}
unset($i);
-
+
$buffer = ' <!-- ' . __('Table') . ' ' . $table . ' -->' . $crlf;
if (!PMA_exportOutputHandler($buffer)) {
return FALSE;
}
-
+
while ($record = PMA_DBI_fetch_row($result)) {
$buffer = ' <table name="' . htmlspecialchars($table) . '">' . $crlf;
for ($i = 0; $i < $columns_cnt; $i++) {
@@ -344,7 +344,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
. '</column>' . $crlf;
}
$buffer .= ' </table>' . $crlf;
-
+
if (!PMA_exportOutputHandler($buffer)) {
return FALSE;
}
diff --git a/libraries/header_http.inc.php b/libraries/header_http.inc.php
index 9ad890d..f9d7d71 100644
--- a/libraries/header_http.inc.php
+++ b/libraries/header_http.inc.php
@@ -30,6 +30,6 @@ header('Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-ch
header('Pragma: no-cache'); // HTTP/1.0
if (!defined('IS_TRANSFORMATION_WRAPPER')) {
// Define the charset to be used
- header('Content-Type: text/html; charset=' . $GLOBALS['charset']);
+ header('Content-Type: text/html; charset=utf-8');
}
?>
diff --git a/libraries/header_meta_style.inc.php b/libraries/header_meta_style.inc.php
index 0c6633d..5e5c533 100644
--- a/libraries/header_meta_style.inc.php
+++ b/libraries/header_meta_style.inc.php
@@ -28,14 +28,14 @@ if ($GLOBALS['text_dir'] == 'ltr') {
}
// removes the bug with the horizontal scrollbar in IE (it's allways shown, if need it or not)
// xml declaration moves IE into quirks mode, making much trouble with CSS
-/* echo '<?xml version="1.0" encoding="' . $GLOBALS['charset'] . '"?>'; */
+/* echo '<?xml version="1.0" encoding="utf-8"?>'; */
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][1]; ?>" lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][1]; ?>" dir="<?php echo $GLOBALS['text_dir']; ?>">
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<title><?php
diff --git a/libraries/import.lib.php b/libraries/import.lib.php
index 0c77f54..54858a6 100644
--- a/libraries/import.lib.php
+++ b/libraries/import.lib.php
@@ -131,11 +131,11 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false)
$my_die = array();
}
$my_die[] = array('sql' => $import_run_buffer['full'], 'error' => PMA_DBI_getError());
-
+
if ($cfg['VerboseMultiSubmit']) {
$msg .= __('Error');
}
-
+
if (!$cfg['IgnoreMultiSubmitErrors']) {
$error = TRUE;
return;
@@ -156,12 +156,12 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false)
if (!$sql_query_disabled) {
$sql_query .= $msg . "\n";
}
-
+
// If a 'USE <db>' SQL-clause was found and the query succeeded, set our current $db to the new one
if ($result != FALSE) {
list($db, $reload) = PMA_lookForUse($import_run_buffer['sql'], $db, $reload);
}
-
+
if ($result != FALSE && preg_match('@^[\s]*(DROP|CREATE)[\s]+(IF EXISTS[[:space:]]+)?(TABLE|DATABASE)[[:space:]]+(.+)@im', $import_run_buffer['sql'])) {
$reload = TRUE;
}
@@ -206,16 +206,16 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false)
}
/**
- * Looks for the presence of USE to possibly change current db
+ * Looks for the presence of USE to possibly change current db
*
- * @param string buffer to examine
- * @param string current db
- * @param boolean reload
- * @return array (current or new db, whether to reload)
+ * @param string buffer to examine
+ * @param string current db
+ * @param boolean reload
+ * @return array (current or new db, whether to reload)
* @access public
*/
function PMA_lookForUse($buffer, $db, $reload)
-{
+{
if (preg_match('@^[\s]*USE[[:space:]]*([\S]+)@i', $buffer, $match)) {
$db = trim($match[1]);
$db = trim($db,';'); // for example, USE abc;
@@ -241,7 +241,7 @@ function PMA_lookForUse($buffer, $db, $reload)
function PMA_importGetNextChunk($size = 32768)
{
global $compression, $import_handle, $charset_conversion, $charset_of_file,
- $charset, $read_multiply;
+ $read_multiply;
// Add some progression while reading large amount of data
if ($read_multiply <= 8) {
@@ -298,7 +298,7 @@ function PMA_importGetNextChunk($size = 32768)
$GLOBALS['offset'] += $size;
if ($charset_conversion) {
- return PMA_convert_string($charset_of_file, $charset, $result);
+ return PMA_convert_string($charset_of_file, 'utf-8', $result);
} else {
/**
* Skip possible byte order marks (I do not think we need more
@@ -328,9 +328,9 @@ function PMA_importGetNextChunk($size = 32768)
* The column number (1-26) is converted to the responding ASCII character (A-Z) and returned.
*
* If the column number is bigger than 26 (= num of letters in alfabet),
- * an extra character needs to be added. To find this extra character, the number is divided by 26
- * and this value is passed to another instance of the same function (hence recursion).
- * In that new instance the number is evaluated again, and if it is still bigger than 26, it is divided again
+ * an extra character needs to be added. To find this extra character, the number is divided by 26
+ * and this value is passed to another instance of the same function (hence recursion).
+ * In that new instance the number is evaluated again, and if it is still bigger than 26, it is divided again
* and passed to another instance of the same function. This continues until the number is smaller than 26.
* Then the last called function returns the corresponding ASCII character to the function that called it.
* Each time a called function ends an extra character is added to the column name.
@@ -489,10 +489,10 @@ function PMA_getDecimalSize(&$cell) {
$curr_size = strlen((string)$cell);
$decPos = strpos($cell, ".");
$decPrecision = ($curr_size - 1) - $decPos;
-
+
$m = $curr_size - 1;
$d = $decPrecision;
-
+
return array($m, $d, ($m . "," . $d));
}
@@ -525,7 +525,7 @@ function PMA_getDecimalSize(&$cell) {
*/
function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type, &$cell) {
$curr_size = strlen((string)$cell);
-
+
/**
* If the cell is NULL, don't treat it as a varchar
*/
@@ -551,7 +551,7 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type
*/
elseif ($last_cumulative_type == DECIMAL) {
$oldM = PMA_getM($last_cumulative_size);
-
+
if ($curr_size >= $oldM) {
return $curr_size;
} else {
@@ -581,7 +581,7 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type
/**
* TODO: Handle this MUCH more elegantly
*/
-
+
return -1;
}
}
@@ -595,7 +595,7 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type
if ($last_cumulative_type == VARCHAR) {
/* Convert $last_cumulative_size from varchar to decimal format */
$size = PMA_getDecimalSize($cell);
-
+
if ($size[M] >= $last_cumulative_size) {
return $size[M];
} else {
@@ -607,10 +607,10 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type
*/
elseif ($last_cumulative_type == DECIMAL) {
$size = PMA_getDecimalSize($cell);
-
+
$oldM = PMA_getM($last_cumulative_size);
$oldD = PMA_getD($last_cumulative_size);
-
+
/* New val if M or D is greater than current largest */
if ($size[M] > $oldM || $size[D] > $oldD) {
/* Take the largest of both types */
@@ -625,7 +625,7 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type
elseif ($last_cumulative_type == BIGINT || $last_cumulative_type == INT) {
/* Convert $last_cumulative_size from int to decimal format */
$size = PMA_getDecimalSize($cell);
-
+
if ($size[M] >= $last_cumulative_size) {
return $size[FULL];
} else {
@@ -638,7 +638,7 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type
elseif (! isset($last_cumulative_type) || $last_cumulative_type == NONE) {
/* First row of the column */
$size = PMA_getDecimalSize($cell);
-
+
return $size[FULL];
}
/**
@@ -648,7 +648,7 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type
/**
* TODO: Handle this MUCH more elegantly
*/
-
+
return -1;
}
}
@@ -674,7 +674,7 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type
$oldD = PMA_getD($last_cumulative_size);
$oldInt = $oldM - $oldD;
$newInt = strlen((string)$cell);
-
+
/* See which has the larger integer length */
if ($oldInt >= $newInt) {
/* Use old decimal size */
@@ -707,7 +707,7 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type
/**
* TODO: Handle this MUCH more elegantly
*/
-
+
return -1;
}
}
@@ -718,7 +718,7 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type
/**
* TODO: Handle this MUCH more elegantly
*/
-
+
return -1;
}
}
@@ -747,7 +747,7 @@ function PMA_detectType($last_cumulative_type, &$cell) {
* If numeric, determine if decimal, int or bigint
* Else, we call it varchar for simplicity
*/
-
+
if (! strcmp('NULL', $cell)) {
if ($last_cumulative_type === NULL || $last_cumulative_type == NONE) {
return NONE;
@@ -807,7 +807,7 @@ function PMA_analyzeTable(&$table) {
for ($i = 0; $i < $numCols; ++$i) {
$sizes[$i] = 0;
}
-
+
/* Initialize $types to NONE */
for ($i = 0; $i < $numCols; ++$i) {
$types[$i] = NONE;
@@ -816,7 +816,7 @@ function PMA_analyzeTable(&$table) {
/* Temp vars */
$curr_type = NONE;
$curr_size = 0;
-
+
/* If the passed array is not of the correct form, do not process it */
if (is_array($table) && ! is_array($table[TBL_NAME]) && is_array($table[COL_NAMES]) && is_array($table[ROWS])) {
/* Analyze each column */
@@ -827,7 +827,7 @@ function PMA_analyzeTable(&$table) {
$curr_type = PMA_detectType($types[$i], $table[ROWS][$j][$i]);
/* Determine size of the current cell */
$sizes[$i] = PMA_detectSize($sizes[$i], $types[$i], $curr_type, $table[ROWS][$j][$i]);
-
+
/**
* If a type for this column has already been declared,
* only alter it if it was a number and a varchar was found
@@ -851,7 +851,7 @@ function PMA_analyzeTable(&$table) {
}
}
}
-
+
/* Check to ensure that all types are valid */
$len = count($types);
for ($n = 0; $n < $len; ++$n) {
@@ -860,7 +860,7 @@ function PMA_analyzeTable(&$table) {
$sizes[$n] = '10';
}
}
-
+
return array($types, $sizes);
}
else
@@ -868,7 +868,7 @@ function PMA_analyzeTable(&$table) {
/**
* TODO: Handle this better
*/
-
+
return false;
}
}
@@ -913,38 +913,38 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
} else {
$collation = "utf8_general_ci";
}
-
+
if (isset($options['db_charset']) && ! is_null($options['db_charset'])) {
$charset = $options['db_charset'];
} else {
$charset = "utf8";
}
-
+
if (isset($options['create_db'])) {
$create_db = $options['create_db'];
} else {
$create_db = true;
}
-
+
/* Create SQL code to handle the database */
$sql = array();
-
+
if ($create_db) {
$sql[] = "CREATE DATABASE IF NOT EXISTS " . PMA_backquote($db_name) . " DEFAULT CHARACTER SET " . $charset . " COLLATE " . $collation;
}
-
+
/**
* The calling plug-in should include this statement, if necessary, in the $additional_sql parameter
*
* $sql[] = "USE " . PMA_backquote($db_name);
*/
-
+
/* Execute the SQL statements create above */
$sql_len = count($sql);
for ($i = 0; $i < $sql_len; ++$i) {
PMA_importRunQuery($sql[$i], $sql[$i]);
}
-
+
/* No longer needed */
unset($sql);
@@ -952,7 +952,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
if ($additional_sql != NULL) {
/* Clean the SQL first */
$additional_sql_len = count($additional_sql);
-
+
/**
* Only match tables for now, because CREATE IF NOT EXISTS
* syntax is lacking or nonexisting for views, triggers,
@@ -966,7 +966,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
*/
$pattern = '/CREATE .*(TABLE)/';
$replacement = 'CREATE \\1 IF NOT EXISTS';
-
+
/* Change CREATE statements to CREATE IF NOT EXISTS to support inserting into existing structures */
for ($i = 0; $i < $additional_sql_len; ++$i) {
$additional_sql[$i] = preg_replace($pattern, $replacement, $additional_sql[$i]);
@@ -977,12 +977,12 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
if ($analyses != NULL) {
$type_array = array(NONE => "NULL", VARCHAR => "varchar", INT => "int", DECIMAL => "decimal", BIGINT => "bigint");
-
+
/* TODO: Do more checking here to make sure they really are matched */
if (count($tables) != count($analyses)) {
exit();
}
-
+
/* Create SQL code to create the tables */
$tempSQLStr = "";
$num_tables = count($tables);
@@ -994,15 +994,15 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
if ((int)$size == 0) {
$size = 10;
}
-
+
$tempSQLStr .= PMA_backquote($tables[$i][COL_NAMES][$j]) . " " . $type_array[$analyses[$i][TYPES][$j]] . "(" . $size . ")";
-
+
if ($j != (count($tables[$i][COL_NAMES]) - 1)) {
$tempSQLStr .= ", ";
}
}
$tempSQLStr .= ") ENGINE=MyISAM DEFAULT CHARACTER SET " . $charset . " COLLATE " . $collation . ";";
-
+
/**
* Each SQL statement is executed immediately
* after it is formed so that we don't have
@@ -1011,7 +1011,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
PMA_importRunQuery($tempSQLStr, $tempSQLStr);
}
}
-
+
/**
* Create the SQL statements to insert all the data
*
@@ -1023,65 +1023,65 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
for ($i = 0; $i < $num_tables; ++$i) {
$num_cols = count($tables[$i][COL_NAMES]);
$num_rows = count($tables[$i][ROWS]);
-
+
$tempSQLStr = "INSERT INTO " . PMA_backquote($db_name) . '.' . PMA_backquote($tables[$i][TBL_NAME]) . " (";
-
+
for ($m = 0; $m < $num_cols; ++$m) {
$tempSQLStr .= PMA_backquote($tables[$i][COL_NAMES][$m]);
-
+
if ($m != ($num_cols - 1)) {
$tempSQLStr .= ", ";
}
}
-
+
$tempSQLStr .= ") VALUES ";
-
+
for ($j = 0; $j < $num_rows; ++$j) {
$tempSQLStr .= "(";
-
+
for ($k = 0; $k < $num_cols; ++$k) {
if ($analyses != NULL) {
$is_varchar = ($analyses[$i][TYPES][$col_count] === VARCHAR);
} else {
$is_varchar = !is_numeric($tables[$i][ROWS][$j][$k]);
}
-
+
/* Don't put quotes around NULL fields */
if (! strcmp($tables[$i][ROWS][$j][$k], 'NULL')) {
$is_varchar = false;
}
-
+
$tempSQLStr .= (($is_varchar) ? "'" : "");
$tempSQLStr .= PMA_sqlAddslashes((string)$tables[$i][ROWS][$j][$k]);
$tempSQLStr .= (($is_varchar) ? "'" : "");
-
+
if ($k != ($num_cols - 1)) {
$tempSQLStr .= ", ";
}
-
+
if ($col_count == ($num_cols - 1)) {
$col_count = 0;
} else {
$col_count++;
}
-
+
/* Delete the cell after we are done with it */
unset($tables[$i][ROWS][$j][$k]);
}
-
+
$tempSQLStr .= ")";
-
+
if ($j != ($num_rows - 1)) {
$tempSQLStr .= ",\n ";
}
-
+
$col_count = 0;
/* Delete the row after we are done with it */
unset($tables[$i][ROWS][$j]);
}
-
+
$tempSQLStr .= ";";
-
+
/**
* Each SQL statement is executed immediately
* after it is formed so that we don't have
@@ -1089,32 +1089,32 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
*/
PMA_importRunQuery($tempSQLStr, $tempSQLStr);
}
-
+
/* No longer needed */
unset($tempSQLStr);
-
+
/**
* A work in progress
*/
-
+
/* Add the viewable structures from $additional_sql to $tables so they are also displayed */
-
+
$view_pattern = '@VIEW `[^`]+`\.`([^`]+)@';
$table_pattern = '@CREATE TABLE IF NOT EXISTS `([^`]+)`@';
/* Check a third pattern to make sure its not a "USE `db_name`;" statement */
-
+
$regs = array();
-
+
$inTables = false;
-
+
$additional_sql_len = count($additional_sql);
for ($i = 0; $i < $additional_sql_len; ++$i) {
preg_match($view_pattern, $additional_sql[$i], $regs);
-
+
if (count($regs) == 0) {
preg_match($table_pattern, $additional_sql[$i], $regs);
}
-
+
if (count($regs)) {
for ($n = 0; $n < $num_tables; ++$n) {
if (!strcmp($regs[1], $tables[$n][TBL_NAME])) {
@@ -1122,21 +1122,21 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
break;
}
}
-
+
if (!$inTables) {
$tables[] = array(TBL_NAME => $regs[1]);
}
}
-
+
/* Reset the array */
$regs = array();
$inTables = false;
}
-
+
$params = array('db' => (string)$db_name);
$db_url = 'db_structure.php' . PMA_generate_common_url($params);
$db_ops_url = 'db_operations.php' . PMA_generate_common_url($params);
-
+
$message = '<br /><br />';
$message .= '<strong>' . __('The following structures have either been created or altered. Here you can:') . '</strong><br />';
$message .= '<ul><li>' . __('View a structure`s contents by clicking on its name') . '</li>';
@@ -1148,11 +1148,11 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
$db_name,
$db_ops_url,
__('Edit') . ' ' . PMA_backquote($db_name) . ' ' . __('settings'));
-
+
$message .= '<ul>';
-
+
unset($params);
-
+
$num_tables = count($tables);
for ($i = 0; $i < $num_tables; ++$i)
{
@@ -1160,9 +1160,9 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
$tbl_url = 'sql.php' . PMA_generate_common_url($params);
$tbl_struct_url = 'tbl_structure.php' . PMA_generate_common_url($params);
$tbl_ops_url = 'tbl_operations.php' . PMA_generate_common_url($params);
-
+
unset($params);
-
+
if (! PMA_isView($db_name, $tables[$i][TBL_NAME])) {
$message .= sprintf('<li><a href="%s" title="%s">%s</a> (<a href="%s" title="%s">' . __('Structure') . '</a>) (<a href="%s" title="%s">' . __('Options') . '</a>)</li>',
$tbl_url,
@@ -1179,12 +1179,12 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
$tables[$i][TBL_NAME]);
}
}
-
+
$message .= '</ul></ul>';
-
+
global $import_notice;
$import_notice = $message;
-
+
unset($tables);
}
diff --git a/libraries/schema/Export_Relation_Schema.class.php b/libraries/schema/Export_Relation_Schema.class.php
index 2d23c5b..e75b3e8 100644
--- a/libraries/schema/Export_Relation_Schema.class.php
+++ b/libraries/schema/Export_Relation_Schema.class.php
@@ -186,22 +186,14 @@ class PMA_Export_Relation_Schema
* @param string type Schema Type
* @param string error_message the error mesage
* @global array the PMA configuration array
- * @global integer the current server id
- * @global string the current language
- * @global string the charset to convert to
* @global string the current database name
- * @global string the current charset
- * @global string the current text direction
- * @global string a localized string
- * @global string an other localized string
* @access public
* @return void
*/
function dieSchema($pageNumber, $type = '', $error_message = '')
{
global $cfg;
- global $server, $lang, $convcharset, $db;
- global $charset, $text_dir;
+ global $db;
require_once './libraries/header.inc.php';
echo "<p><strong>" . __("SCHEMA ERROR: ") . $type ."</strong></p>" . "\n";
diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php
index 08a5b2f..15945be 100644
--- a/libraries/select_lang.lib.php
+++ b/libraries/select_lang.lib.php
@@ -478,9 +478,6 @@ if (! function_exists('__')) {
die('Bad invocation!');
}
-/* We use only utf-8 */
-$charset = 'utf-8';
-
/* l10n: Text direction, use either ltr or rtl */
$GLOBALS['text_dir'] = __('ltr');
diff --git a/libraries/sql_query_form.lib.php b/libraries/sql_query_form.lib.php
index 25f67cd..80ee79e 100644
--- a/libraries/sql_query_form.lib.php
+++ b/libraries/sql_query_form.lib.php
@@ -464,7 +464,6 @@ function PMA_sqlQueryFormBookmark()
* @uses $GLOBALS['cfg']['BZipDump']
* @uses $GLOBALS['cfg']['UploadDir']
* @uses $GLOBALS['cfg']['AvailableCharsets']
- * @uses $GLOBALS['charset']
* @uses $GLOBALS['max_upload_size']
* @uses PMA_supportedDecompressions()
* @uses PMA_getFileSelectOptions()
diff --git a/libraries/string.lib.php b/libraries/string.lib.php
index e17a935..650a2ef 100644
--- a/libraries/string.lib.php
+++ b/libraries/string.lib.php
@@ -28,7 +28,7 @@ $GLOBALS['PMA_allow_mbstr'] = @function_exists('mb_strlen');
$GLOBALS['PMA_allow_ctype'] = @extension_loaded('ctype');
if ($GLOBALS['PMA_allow_mbstr']) {
- mb_internal_encoding($GLOBALS['charset']);
+ mb_internal_encoding('utf-8');
}
/**
diff --git a/navigation.php b/navigation.php
index e9b2236..76f5b98 100644
--- a/navigation.php
+++ b/navigation.php
@@ -11,7 +11,6 @@
* @uses $GLOBALS['available_languages']
* @uses $GLOBALS['lang']
* @uses $GLOBALS['text_dir']
- * @uses $GLOBALS['charset']
* @uses $GLOBALS['pmaThemeImage']
* @uses $GLOBALS['cfg']['LeftFrameLight']
* @uses $GLOBALS['cfg']['ShowTooltip']
@@ -118,7 +117,7 @@ require_once './libraries/header_http.inc.php';
* Displays the frame
*/
// xml declaration moves IE into quirks mode, making much trouble with CSS
-/* echo '<?xml version="1.0" encoding="' . $GLOBALS['charset'] . '"?>'; */
+/* echo '<?xml version="1.0" encoding="utf-8"?>'; */
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
@@ -131,8 +130,7 @@ require_once './libraries/header_http.inc.php';
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<title>phpMyAdmin</title>
- <meta http-equiv="Content-Type"
- content="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<base target="frame_content" />
<link rel="stylesheet" type="text/css"
href="phpmyadmin.css.php?<?php echo PMA_generate_common_url('', ''); ?>&js_frame=left&nocache=<?php echo $GLOBALS['PMA_Config']->getThemeUniqueValue(); ?>" />
diff --git a/pmd_relation_new.php b/pmd_relation_new.php
index 6ea4485..da92e97 100644
--- a/pmd_relation_new.php
+++ b/pmd_relation_new.php
@@ -91,7 +91,7 @@ if (PMA_foreignkey_supported($type_T1) && PMA_foreignkey_supported($type_T2) &&
function PMD_return_new($b,$ret)
{
global $db,$T1,$F1,$T2,$F2;
- header("Content-Type: text/xml; charset=utf-8");//utf-8 .$_GLOBALS['charset']
+ header("Content-Type: text/xml; charset=utf-8");
header("Cache-Control: no-cache");
die('<root act="relation_new" return="'.$ret.'" b="'.$b.
'" DB1="'.urlencode($db).
diff --git a/test/PMA_SQL_parser_test.php b/test/PMA_SQL_parser_test.php
index aa3299c..d384bd2 100644
--- a/test/PMA_SQL_parser_test.php
+++ b/test/PMA_SQL_parser_test.php
@@ -13,7 +13,6 @@ require_once 'PHPUnit/Framework.php';
define('PHPMYADMIN', 1);
define('TESTSUITE', 1);
-$GLOBALS['charset'] = 'utf-8';
function __($s) {
return $s;
diff --git a/test/PMA_STR_sub_test.php b/test/PMA_STR_sub_test.php
index 7900b92..640c777 100644
--- a/test/PMA_STR_sub_test.php
+++ b/test/PMA_STR_sub_test.php
@@ -33,8 +33,6 @@ if (isset($match) && ! empty($match[1])) {
define('PMA_PHP_INT_VERSION', 0);
}
-$GLOBALS['charset'] = 'UTF-8';
-
require_once './libraries/string.lib.php';
/**
diff --git a/test/theme.php b/test/theme.php
index d49a577..5e0dcb2 100644
--- a/test/theme.php
+++ b/test/theme.php
@@ -17,7 +17,7 @@ require_once './libraries/common.inc.php';
$lang_iso_code = $GLOBALS['available_languages'][$GLOBALS['lang']][1];
// start output
-header('Content-Type: text/html; charset=' . $GLOBALS['charset']);
+header('Content-Type: text/html; charset=utf-8');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
@@ -28,8 +28,7 @@ header('Content-Type: text/html; charset=' . $GLOBALS['charset']);
<head>
<title>phpMyAdmin <?php echo PMA_VERSION; ?> -
<?php echo htmlspecialchars($HTTP_HOST); ?> - Theme Test</title>
- <meta http-equiv="Content-Type"
- content="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css"
href="../phpmyadmin.css.php?<?php echo PMA_generate_common_url(); ?>&js_frame=right&nocache=<?php echo $GLOBALS['PMA_Config']->getThemeUniqueValue(); ?>" />
<link rel="stylesheet" type="text/css" media="print"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_2RC1-2940-g4841ee9
by Michal Čihař 03 Jun '11
by Michal Čihař 03 Jun '11
03 Jun '11
The branch, master has been updated
via 4841ee9d5f9926187b0eb8b23e6dd87af2daeab4 (commit)
from 7bda45ba6614d02b16e2f3812b0932abb9e712fa (commit)
- Log -----------------------------------------------------------------
commit 4841ee9d5f9926187b0eb8b23e6dd87af2daeab4
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Jun 3 13:32:53 2011 +0200
Use standard mechanism for loading javascript to prevent multiple requests to server
-----------------------------------------------------------------------
Summary of changes:
navigation.php | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/navigation.php b/navigation.php
index dc68489..e9b2236 100644
--- a/navigation.php
+++ b/navigation.php
@@ -136,11 +136,13 @@ require_once './libraries/header_http.inc.php';
<base target="frame_content" />
<link rel="stylesheet" type="text/css"
href="phpmyadmin.css.php?<?php echo PMA_generate_common_url('', ''); ?>&js_frame=left&nocache=<?php echo $GLOBALS['PMA_Config']->getThemeUniqueValue(); ?>" />
- <script src="./js/jquery/jquery-1.6.1.js" type="text/javascript"></script>
- <script src="./js/jquery/jquery-ui-1.8.custom.js" type="text/javascript"></script>
- <script type="text/javascript" src="js/navigation.js"></script>
- <script type="text/javascript" src="js/functions.js"></script>
- <script type="text/javascript" src="js/messages.php"></script>
+ <?php
+ echo PMA_includeJS('jquery/jquery-1.6.1.js');
+ echo PMA_includeJS('jquery/jquery-ui-1.8.custom.js');
+ echo PMA_includeJS('navigation.js');
+ echo PMA_includeJS('functions.js');
+ echo PMA_includeJS('messages.php');
+ ?>
<script type="text/javascript">
// <![CDATA[
var image_minus = '<?php echo $GLOBALS['pmaThemeImage']; ?>b_minus.png';
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_2RC1-2939-g7bda45b
by Michal Čihař 03 Jun '11
by Michal Čihař 03 Jun '11
03 Jun '11
The branch, master has been updated
via 7bda45ba6614d02b16e2f3812b0932abb9e712fa (commit)
from bbe878d703b96575308056a788bef72f61d7c9d0 (commit)
- Log -----------------------------------------------------------------
commit 7bda45ba6614d02b16e2f3812b0932abb9e712fa
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Jun 3 11:59:28 2011 +0200
Czech translation update
-----------------------------------------------------------------------
Summary of changes:
po/cs.po | 48 ++++++++++++++++++++++++------------------------
1 files changed, 24 insertions(+), 24 deletions(-)
diff --git a/po/cs.po b/po/cs.po
index 7941f23..af33d25 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,7 +7,7 @@ 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-06-02 11:25-0400\n"
-"PO-Revision-Date: 2011-06-02 10:34+0200\n"
+"PO-Revision-Date: 2011-06-03 11:59+0200\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -618,8 +618,8 @@ msgstr "Sledování není zapnuté."
#: db_structure.php:379 libraries/display_tbl.lib.php:2068
#, 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."
@@ -856,8 +856,8 @@ msgstr "Výpis byl uložen do souboru %s."
#: import.php:58
#, 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."
@@ -1714,8 +1714,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."
@@ -3493,7 +3493,7 @@ msgstr "Jedná se o odkazy Upravit, Upravit zde, Kopírovat a Odstranit"
#: libraries/config/messages.inc.php:318
msgid "Where to show the table row links"
-msgstr ""
+msgstr "Kde zobrazit odkazy s akcemi při procházení"
#: libraries/config/messages.inc.php:319
msgid "Use natural order for sorting table and database names"
@@ -4740,8 +4740,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 "
@@ -5467,8 +5467,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."
@@ -6738,8 +6738,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:143
msgid "Transformation options"
@@ -6790,8 +6790,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:625 tbl_structure.php:636
#, php-format
@@ -7410,8 +7410,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"
@@ -7859,8 +7859,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 "
@@ -9328,8 +9328,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
@@ -9340,8 +9340,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."
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_2RC1-2938-gbbe878d
by Michal Čihař 03 Jun '11
by Michal Čihař 03 Jun '11
03 Jun '11
The branch, master has been updated
via bbe878d703b96575308056a788bef72f61d7c9d0 (commit)
via 3f214f9e7d0177f15d97fb6cf8f6ddeeef69e901 (commit)
via 9ea44da25366e6f787553d4e007ab16fcca9c4d9 (commit)
from e1569f10baa352c204071332869b2b85c3442608 (commit)
- Log -----------------------------------------------------------------
commit bbe878d703b96575308056a788bef72f61d7c9d0
Merge: e1569f10baa352c204071332869b2b85c3442608 3f214f9e7d0177f15d97fb6cf8f6ddeeef69e901
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Jun 3 10:41:30 2011 +0200
Merge remote-tracking branch 'origin/QA_3_4'
-----------------------------------------------------------------------
Summary of changes:
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 6c6647329614a0491a5459055bff1e9d0b75aec6
by Michal Čihař 03 Jun '11
by Michal Čihař 03 Jun '11
03 Jun '11
The branch, master has been updated
via 6c6647329614a0491a5459055bff1e9d0b75aec6 (commit)
from 9d46ce861f17da88aad7af86d1c0b995be4e9871 (commit)
- Log -----------------------------------------------------------------
commit 6c6647329614a0491a5459055bff1e9d0b75aec6
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Jun 3 10:40:53 2011 +0200
Update
-----------------------------------------------------------------------
Summary of changes:
output/ja/Documentation.html | 260 ++--
output/ja/README | 4 +-
output/tr/Documentation.html | 9 +-
po/cs.po | 3511 +++++++++++++++++++++---------------------
po/zh_TW.po | 4 +-
5 files changed, 1870 insertions(+), 1918 deletions(-)
diff --git a/output/ja/Documentation.html b/output/ja/Documentation.html
index 9cbaec7..bb15b18 100644
--- a/output/ja/Documentation.html
+++ b/output/ja/Documentation.html
@@ -246,8 +246,8 @@ chmod o+rw config # 誰でも書き込める権限を与える
cp config.inc.php config/ # 編集するためにカレントにある設定ファイルをコピー
chmod o+w config/config.inc.php # 誰でも書き込める権限を与える
</pre>
- 他のプラットフォームでは、単純にフォルダを作成し、Web サーバに対して読み書きアクセス権があるか確認します。<a
-href="#faq1_26">FAQ 1.26</a> も役立つでしょう。<br /><br />
+ 他のプラットフォームでは、単純にフォルダを作成し、ウェブサーバに対して読み書きアクセス権があるか確認します。<a href="#faq1_26">FAQ
+1.26</a> も役立つでしょう。<br /><br />
Next, open <tt><a href="setup/">setup/</a> </tt>in your browser. Note that
<strong>changes are not saved to disk until explicitly choose
@@ -285,7 +285,7 @@ Protocol">HTTP</abbr>/クッキー認証モードを使用している場合
<li>
一般的には、インストールしている phpMyAdmin
を公開されている場合、検索エンジンロボットに自動的に収集されないようにするために、それらからのアクセスに対してを保護することをお勧めします。そのためには、<code>robots.txt</code>
-ファイルを Web サーバのルートに置くか、もしくは、Web サーバの設定によりアクセス制限を行います。phpMyAdmin の
+ファイルをウェブサーバのルートに置くか、もしくは、ウェブサーバの設定によりアクセス制限を行います。phpMyAdmin の
<code>contrib</code> ディレクトリ内に、<code>.htaccess</code>
ファイルのサンプルがあります。これは、その設定を行うための参考になるでしょう。
</li>
@@ -455,7 +455,7 @@ $cfg['Servers'][$i]['AllowDeny']['rules']</a>
</ul>
<h4 id="swekey">Swekey 認証</h4>
<p>
-Swekey は、Web アプリケーションで使用することができる低コストの USB 認証キーです。<br /><br />
+Swekey は、ウェブアプリケーションで使用することができる低コストの USB 認証キーです。<br /><br />
Swekey 認証が有効にされている場合、phpMyAdmin はログインページに入る前にユーザの Swekey
を接続しておく必要があります(現在はクッキー認証モードのみサポート)。 Swekey 認証は、デフォルトでは無効になっています。<br /><br />
Swekey 認証を有効にするには、<tt>config.inc.php</tt> に以下の行を追加します。
@@ -464,9 +464,10 @@ Swekey 認証を有効にするには、<tt>config.inc.php</tt> に以下の行
$cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey.conf';
</pre>
<p>
-その後、各ユーザと Swekey ID が関連付けられている <tt>swekey.conf</tt> ファイルを作成する必要があります。このファイルを
-Web サーバのドキュメントルート外に置いておくことが重要です(上の例では、<tt>/etc</tt> にあります)。これのサンプルファイルが
-<tt>contrib</tt> ディレクトリにあります。これらはユーザ情報ではありますが、管理者が見たりしても特に問題はありません。<br /><br />
+その後、各ユーザと Swekey ID が関連付けられている <tt>swekey.conf</tt>
+ファイルを作成する必要があります。このファイルをウェブサーバのドキュメントルート外に置いておくことが重要です(上の例では、<tt>/etc</tt>
+にあります)。これのサンプルファイルが <tt>contrib</tt>
+ディレクトリにあります。これらはユーザ情報ではありますが、管理者が見たりしても特に問題はありません。<br /><br />
Swekey を購入したい場合は、<a
href="http://phpmyadmin.net/auth_key">http://phpmyadmin.net/auth_key</a>
より訪問するようお願いいたします。このリンクを通すことにより phpMyAdmin へ紹介料が提供されますので。
@@ -1684,8 +1685,8 @@ Can be turned off by a toggle button on the browse page.</dd>
「左 (left)」と「右 (right)」は、縦表示モードでは「上 (top)」と「下 (bottom)」と解釈されます。</dd>
<dt id="cfg_DefaultDisplay">$cfg['DefaultDisplay'] 文字列</dt>
- <dd>表示モードには横並び (horizontal)、横並び縦ヘッダ (horizontalflipped)、縦並び
-(vertical)の3つがありますが、どれをデフォルトの表示にするかを定義します。横並びモードでは各行の内容を横一列に並べます。横並び縦ヘッダモードでは、ヘッダを
+ <dd>表示モードには水平 (horizontal)、水平縦ヘッダ (horizontalflipped)、垂直
+(vertical)の3つがありますが、どれをデフォルトの表示にするかを定義します。水平モードでは各行の内容を横一列に並べます。水平縦ヘッダモードでは、ヘッダを
90
度回転させることで、フィールドに小さな値しか入っていない場合でも詳細なヘッダを表示できるようにします。縦並びモードでは各行の内容を縦一列に並べます。
</dd>
@@ -1695,7 +1696,7 @@ Can be turned off by a toggle button on the browse page.</dd>
<dt id="cfg_HeaderFlipType">$cfg['HeaderFlipType'] 文字列</dt>
<dd>
- HeaderFlipType に設定できる値は「auto」、「css」、「fake」のいずれかです。「css」の場合、横並び縦ヘッダ
+ HeaderFlipType に設定できる値は「auto」、「css」、「fake」のいずれかです。「css」の場合、水平縦ヘッダ
(horizontalflipped) モードでのヘッダの回転は CSS を通じて行われます。CSS 変形は Internet Explorer
のみ機能します。「fake」の場合は PHP が変換を行いますが、もちろんこの場合、CSS
ほどの見栄えにはなりません。「auto」オプションは、ブラウザがサポートしている場合は CSS 変形を有効しますが、それ以外では PHP
@@ -1704,9 +1705,9 @@ Can be turned off by a toggle button on the browse page.</dd>
<dt id="DefaultPropDisplay">
<span id="cfg_DefaultPropDisplay">$cfg['DefaultPropDisplay']</span> 文字列または整数</dt>
- <dd>テーブルのカラムを修正/新規作成する際、通常はすべてのフィールドが一列に横並びします(デフォルトの「横並び (horizontal)」)。「縦並び
-(vertical)」にすると、各フィールドが上から下へ縦並びになります。こうすると、横幅を大いに節約できるため、スクロールする必要がなくなります。整数を設定すると、これ以下のカラム数を編集しているときは「縦並び
-(vertical)」モードで、これを超えたカラム数を編集しているときは「横並び
+ <dd>テーブルのカラムを修正/新規作成する際、通常はすべてのフィールドが一列に横並びします(デフォルトの「水平 (horizontal)」)。「垂直
+(vertical)」にすると、各フィールドが上から下へ縦並びになります。こうすると、横幅を大いに節約できるため、スクロールする必要がなくなります。整数を設定すると、これ以下のカラム数を編集しているときは「垂直
+(vertical)」モードで、これを超えたカラム数を編集しているときは「水平
(horizontal)」モードで表示されます。このモードは多くのカラム数を編集するとき効果的で、少数のカラムの場合には自動的に全てが見渡せる表示になります。</dd>
<dt id="cfg_ShowBrowseComments">$cfg['ShowBrowseComments'] boolean<br />
@@ -1896,9 +1897,7 @@ COUNT ... LIMIT</code>. The default value of 0 bypasses any row counting.
<dd>データベースやテーブルの名前を自然な順番でソートします(たとえば、t1、t2、t10)。いまのところ左パネル(ライトモード)とデータベース画面のテーブル一覧に実装されています。</dd>
<dt id="cfg_InitialSlidersState">$cfg['InitialSlidersState'] 文字列</dt>
- <dd>If set to <tt>'closed'</tt>, the visual sliders are initially in a closed
-state. A value of <tt>'open'</tt> does the reverse. To completely disable
-all visual sliders, use <tt>'disabled'</tt>.</dd>
+ <dd><tt>「closed」</tt>に設定されている場合、折り畳みのデフォルトは閉じた状態です。<tt>「open」</tt>はその逆です。全ての折り畳みを完全に無効にするには、<tt>「disabled」</tt>にします。</dd>
<dt id="cfg_UserprefsDisallow">$cfg['UserprefsDisallow'] 配列</dt>
<dd>Contains names of configuration options (keys in <tt>$cfg</tt> array) that
@@ -1909,8 +1908,7 @@ users can't set through user preferences. For possible values, refer to
<dt id="cfg_TitleDatabase">$cfg['TitleDatabase'] 文字列</dt>
<dt id="cfg_TitleServer">$cfg['TitleServer'] 文字列</dt>
<dt id="cfg_TitleDefault">$cfg['TitleDefault'] 文字列</dt>
- <dd>Allows you to specify window's title bar. You can use <a
-href="#faq6_27">format string expansion</a>.
+ <dd>ウィンドウのタイトルバーを指定することができます。<a href="#faq6_27">書式の拡張</a>が使用できます。
</dd>
<dt id="cfg_ErrorIconic">$cfg['ErrorIconic'] boolean</dt>
@@ -1927,8 +1925,8 @@ href="#faq6_27">format string expansion</a>.
<dd>テーママネージャが有効な場合、すべてのテーマが収録されているサブディレクトリのパスとして利用します。</dd>
<dt id="cfg_ThemeManager">$cfg['ThemeManager'] boolean</dt>
- <dd>Enables user-selectable themes. See <a href="#faqthemes"> <abbr
-title="Frequently Asked Questions">FAQ</abbr> 2.7</a>.</dd>
+ <dd>ユーザがテーマを選択できるようにします。<a href="#faqthemes"> <abbr title="よくある質問">FAQ</abbr>
+2.7</a> をご覧ください。</dd>
<dt id="cfg_ThemeDefault">$cfg['ThemeDefault'] 文字列</dt>
<dd>デフォルトテーマ(<tt>cfg['ThemePath']</tt> の下にあるサブディレクトリのひとつ)です。</dd>
@@ -1939,33 +1937,30 @@ title="Frequently Asked Questions">FAQ</abbr> 2.7</a>.</dd>
<dt id="cfg_DefaultQueryTable">$cfg['DefaultQueryTable'] 文字列<br />
<span id="cfg_DefaultQueryDatabase">$cfg['DefaultQueryDatabase']</span> 文字列
</dt>
- <dd>Default queries that will be displayed in query boxes when user didn't
-specify any. You can use standard <a href="#faq6_27">format string
-expansion</a>.
+ <dd>ユーザが指定しなかった時の、クエリボックスに表示されるデフォルトのクエリ。標準の<a
+href="#faq6_27">書式の拡張</a>を使用することができます。
</dd>
<dt id="cfg_SQP_fmtType">$cfg['SQP']['fmtType'] 文字列 [<tt>html</tt>|<tt>none</tt>]</dt>
<dd>
- The main use of the new <abbr title="structured query language">SQL</abbr>
-Parser is to pretty-print <abbr title="structured query language">SQL</abbr>
-queries. By default we use HTML to format the query, but you can disable
-this by setting this variable to <tt>'none'</tt>.
+ 新しい <abbr title="structured query language">SQL</abbr> パーサの主な用途は <abbr
+title="structured query language">SQL</abbr> クエリを読みやすくすることです。デフォルトでは HTML
+を使ってクエリを整形しますが、この変数を <tt>「none」</tt> にするとこの機能を無効にできます。
</dd>
<dt id="cfg_SQP_fmtInd">$cfg['SQP']['fmtInd'] float<br />
<span id="cfg_SQP">$cfg['SQP']['fmtIndUnit']</span> 文字列
[<tt>em</tt>|<tt>px</tt>|<tt>pt</tt>|<tt>ex</tt>]</dt>
- <dd>For the pretty-printing of <abbr title="structured query
-language">SQL</abbr> queries, under some cases the part of a query inside a
-bracket is indented. By changing <tt>$cfg['SQP']['fmtInd']</tt> you can
-change the amount of this indent.
+ <dd><abbr title="structured query language">SQL</abbr>
+クエリを読みやすくするために、場合によってはブラケット( [ ]
+)で囲まれたクエリの一部がインデントされるのですが、<tt>$cfg['SQP']['fmtInd']</tt>
+を変更することで、このインデントの量を変更することができます。
<br />それと似た <tt>$cfg['SQP']['fmtIndUnit']</tt>
の方は、指定したインデント量の単位を指定します。スタイルシートで利用するものです。</dd>
- <dt id="cfg_SQP_fmtColor">$cfg['SQP']['fmtColor'] string 組の array</dt>
- <dd>This array is used to define the colours for each type of element of the
-pretty-printed <abbr title="structured query language">SQL</abbr>
-queries. The tuple format is<br />
+ <dt id="cfg_SQP_fmtColor">$cfg['SQP']['fmtColor'] 文字列の連想配列</dt>
+ <dd><abbr title="structured query language">SQL</abbr>
+クエリを読みやすくするために各要素の色定義に、この配列を使用します。色を定義するペア文字列の書式は次の通りです。<br />
<i>クラス名</i> => [<i>HTML の色コード</i> | <i>空の文字列</i>]<br />
空の文字列を指定した場合、そのクラスの色指定は無視されてスタイルシートに反映されません。クラス名は変えないでください。変えるのは色をあらわす文字列のみです。<br />
<b>クラス名:</b>
@@ -1988,8 +1983,8 @@ queries. The tuple format is<br />
<li><b>alpha_columnAttrib</b> データベース/テーブル/カラム属性に一致する識別子</li>
<li><b>alpha_functionName</b> MySQL 関数名に一致する識別子</li>
<li><b>alpha_reservedWord</b> その他の予約語に一致する識別子</li>
- <li><b>alpha_variable</b> Identifiers matching a <abbr title="structured query
-language">SQL</abbr> variable <tt>"@foo"</tt></li>
+ <li><b>alpha_variable</b> <abbr title="structured query language">SQL</abbr> 変数
+<tt>「 @foo 」</tt>に一致する識別子</li>
<li><b>alpha_identifier</b> その他すべての識別子</li>
<li><b>quote</b> 引用符のクラスすべてに適用されます。</li>
<li><b>quote_double</b> ダブルクォート <tt>"</tt></li>
@@ -2000,24 +1995,22 @@ language">SQL</abbr> variable <tt>"@foo"</tt></li>
<dt id="cfg_SQLValidator">$cfg['SQLValidator'] boolean</dt>
<dd><dl><dt id="cfg_SQLValidator_use">$cfg['SQLValidator']['use'] boolean</dt>
- <dd>phpMyAdmin now supports use of the <a
-href="http://developer.mimer.com/validator/index.htm">Mimer <abbr
-title="structured query language">SQL</abbr> Validator</a> service, as
-originally published on <a
-href="http://developers.slashdot.org/article.pl?sid=02/02/19/1720246">Slashdot</a>.
+ <dd>phpMyAdmin は <a href="http://developer.mimer.com/validator/index.htm">Mimer
+<abbr title="structured query language">SQL</abbr>
+検証</a>サービスをサポートするようになりました。これは当初 <a
+href="http://developers.slashdot.org/article.pl?sid=02/02/19/1720246">Slashdot</a>
+で公開されていたものです。
<br />
- For help in setting up your system to use the service, see the <a
-href="#faqsqlvalidator"><abbr title="Frequently Asked Questions">FAQ</abbr>
-6.14</a>.
+ このサービスをお使いのシステムに設定する方法については、<a href="#faqsqlvalidator"><abbr
+title="よくある質問">FAQ</abbr> 6.14</a> をご覧ください。
</dd>
<dt id="cfg_SQLValidator_username">$cfg['SQLValidator']['username'] 文字列<br />
<span id="cfg_SQLValidator_password">$cfg['SQLValidator']['password']</span>
文字列</dt>
- <dd>The SOAP service allows you to log in with <tt>anonymous</tt> and any
-password, so we use those by default. Instead, if you have an account with
-them, you can put your login details here, and it will be used in place of
-the anonymous login.</dd>
+ <dd>SOAP サービスを使うと <tt>anonymous</tt>
+(匿名)ユーザでパスワードによらずログインできるため、デフォルトではそのようになっています。SQL
+検証のアカウントをお持ちであれば、ログイン情報をここに記入することで、匿名でログインする代わりにその情報でログインするようになります。</dd>
</dl>
</dd>
@@ -2026,8 +2019,7 @@ the anonymous login.</dd>
<dt id="cfg_DBG_enable_sql">$cfg['DBG']['sql'] boolean</dt>
<dd><b>開発者限定!</b><br />
- Enable logging queries and execution times to be displayed in the bottom of
-main page (right frame).</dd>
+ メインページ(右フレーム)の下部に、クエリと実行時間の表示を有効にします。</dd>
<dt id="cfg_ColumnTypes">$cfg['ColumnTypes'] 配列</dt>
<dd>MySQL のカラム種別としてとりうるすべての値が入ります。ほとんどの場合、この値を修正する必要はありません。</dd>
@@ -2042,32 +2034,29 @@ main page (right frame).</dd>
<dd>カラム種別と、カラムの内容の表示方法を変えるための関数を結びつけるメタ種別との対応表です。ほとんどの場合、この値を修正する必要はありません。</dd>
<dt id="cfg_RestrictFunctions">$cfg['RestrictFunctions'] 配列</dt>
- <dd>Functions preferred for column meta types as defined in <a
-href="#cfg_RestrictColumnTypes"
-class="configrule">$cfg['RestrictColumnTypes']</a>. In most cases you don't
-need to edit this.</dd>
+ <dd><a href="#cfg_RestrictColumnTypes"
+class="configrule">$cfg['RestrictColumnTypes']</a>
+で定義されたカラムのメタ種別が利用する関数一覧です。ほとんどの場合、この値を修正する必要はありません。</dd>
<dt id="cfg_DefaultFunctions">$cfg['DefaultFunctions'] 配列</dt>
- <dd>Functions selected by default when inserting/changing row, Functions are
-defined for meta types from <a href="#cfg_RestrictColumnTypes"
-class="configrule">$cfg['RestrictColumnTypes']</a> and for
-<code>first_timestamp</code>, which is used for first timestamp column in
-table.</dd>
+ <dd>行を挿入/修正するときにデフォルトで選択される関数です。この関数は <a href="#cfg_RestrictColumnTypes"
+class="configrule">$cfg['RestrictColumnTypes']</a>
+のメタ種別ごとに定義します。<code>first_timestamp</code> については、テーブル内の最初の timestamp
+カラムに適用されます。</dd>
<dt id="cfg_NumOperators">$cfg['NumOperators'] 配列</dt>
<dd>数値や日付カラムの検索に利用できる演算子です。
</dd>
<dt id="cfg_TextOperators">$cfg['TextOperators'] 配列</dt>
- <dd>Operators available for search operations on character columns. Note that
-we put <code>LIKE</code> by default instead of <code>LIKE %...%</code>, to
-avoid unintended performance problems in case of huge tables.</dd>
+ <dd>文字カラムの検索に利用できる演算子です。 なお、デフォルトは <code>LIKE %...%</code> ではなく
+<code>LIKE</code> としてあります。これはテーブルが巨大な場合に不用意にパフォーマンスの問題を起こさないようにするためです。</dd>
<dt id="cfg_EnumOperators">$cfg['EnumOperators'] 配列</dt>
<dd>列挙 (enum) カラムの検索に利用できる演算子です。</dd>
<dt id="cfg_NullOperators">$cfg['NullOperators'] 配列</dt>
- <dd>カラムがヌル (null) になりうるときに利用できる追加の検索用演算子です。</dd>
+ <dd>カラムが NULL になりうるときに利用できる追加の検索用演算子です。</dd>
</dl>
@@ -2087,33 +2076,25 @@ href="#config">「設定」の章</a>をご覧ください。</p>
<p> カラムごとに別々の変換機能を適用できます。変換機能は各カラムの内容を取得してから、選択された機能に定義されている規則に従って変換を行うためです。</p>
-<p> Say you have a column 'filename' which contains a filename. Normally you
-would see in phpMyAdmin only this filename. Using transformations you can
-transform that filename into a HTML link, so you can click inside of the
-phpMyAdmin structure on the column's link and will see the file displayed in
-a new browser window. Using transformation options you can also specify
-strings to append/prepend to a string or the format you want the output
-stored in.</p>
+<p> たとえば、ファイル名を入れる「filename」というカラムがあるとします。ふつう phpMyAdmin
+ではこのファイル名しか表示されませんが、変換機能を使うと、このファイル名を HTML リンクに変換できます。phpMyAdmin
+システムの内部でそのカラムのリンクをクリックすると、新しいブラウザウインドウにそのファイルが表示されます。変換オプションを使えば、その文字列の前後に付け加える文字列や、出力を保存する形式も指定できます。</p>
-<p> For a general overview of all available transformations and their options,
-you can consult your
-<i><www.your-host.com>/<your-install-dir>/transformation_overview.php</i>
-installation.</p>
+<p> 利用できるすべての変換機能とそのオプションについての概略は
+<i><お使いのホスト>/<インストールしたディレクトリ>/transformation_overview.php</i>
+をご覧ください。</p>
<p> 変換機能の効果的な使い方のチュートリアルについては、phpMyAdmin のオフィシャルホームページの <a
href="http://www.phpmyadmin.net/home_page/docs.php">Link セクション</a>をご覧ください。</p>
<h3 id="transformationshowto">2. 使い方</h3>
-<p> Go to your <i>tbl_structure.php</i> page (i.e. reached through clicking on
-the 'Structure' link for a table). There click on "Change" (or
-change icon) and there you will see three new fields at the end of the
-line. They are called 'MIME-type', 'Browser transformation' and
-'Transformation options'.</p>
+<p> <i>tbl_structure.php</i>
+ページに行きます(テーブルの「構造」リンクをクリックでたどり着きます)。「変更」(あるいは変更アイコン)をクリックすると、項目の最後の方に新しいフィールドが
+3 つ表示されます。それぞれ「MIME タイプ」、「ブラウザ変換」、「変換オプション」という名がついています。</p>
- <ul><li>The field 'MIME-type' is a drop-down field. Select the MIME-type that
-corresponds to the column's contents. Please note that transformations are
-inactive as long as no MIME-type is selected.</li>
+ <ul><li>「MIME タイプ」フィールドはドロップダウンになっています。カラムの内容に対応した MIME タイプを選択してください。なお、MIME
+タイプを選択しないと変換機能は有効になりませんので注意ください。</li>
<li>「ブラウザ変換(Browser
transformation)」フィールドはドロップダウンになっています。そのうち数が増えていくであろう定義済みの変換機能を選択できます。自前の変換機能の作り方については下記をご覧ください。<br />
@@ -2152,7 +2133,7 @@ MIME タイプに適用しようとしても無駄です。変換関数は処理
<p> 「<i>global.inc.php</i>」という基本ファイルは、どんな変換機能からでもインクルードできます。これはいくつかの基本的な関数を提供してくれます。</p>
-<p> ファイル名には 5 通りの可能性があります:</p>
+<p> ファイル名には 5 通りの可能性があります。</p>
<ol><li>MIME タイプ+サブタイプ変換機能:<br /><br />
@@ -2297,17 +2278,18 @@ title="よくある質問">FAQ</abbr> 1.1</a> もご覧ください。<br />
<a href="#faq1_3">1.3 (該当しなくなったため取り下げ)。</a></h4>
<h4 id="faq1_4">
- <a href="#faq1_4">1.4 Using phpMyAdmin on <abbr title="Internet Information
-Services">IIS</abbr>, I'm displayed the error message: "The specified
-<abbr title="Common Gateway Interface">CGI</abbr> application misbehaved by
-not returning a complete set of <abbr title="HyperText Transfer
-Protocol">HTTP</abbr> headers ...".</a>
+ <a href="#faq1_4">1.4 phpMyAdmin を <abbr title="Internet Information
+Services">IIS</abbr> 上で使うと、「The specified <abbr title="Common Gateway
+Interface">CGI</abbr> application misbehaved by not returning a complete set
+of <abbr title="HyperText Transfer Protocol">HTTP</abbr> headers ...(指定した
+<abbr title="Common Gateway Interface">CGI</abbr> にはエラーがあります。<abbr
+title="HyperText Transfer Protocol">HTTP</abbr>
+ヘッダが不完全です。)」というエラーメッセージが表示されます。</a>
</h4>
-<p> You just forgot to read the <i>install.txt</i> file from the php
-distribution. Have a look at the last message in this <a
-href="http://bugs.php.net/bug.php?id=12061">bug report</a> from the official
-PHP bug database.</p>
+<p> PHP の配布ファイルに入っている <i>install.txt</i> を読み忘れたのでしょう。こちらの<a
+href="http://bugs.php.net/bug.php?id=12061">バグレポート</a>の最後のメッセージをご覧ください。出典は
+PHP のオフィシャルバグデータベースです。</p>
<h4 id="faq1_5">
<a href="#faq1_5">1.5 phpMyAdmin を <abbr title="Internet Information
@@ -2323,11 +2305,9 @@ title="HyperText Transfer Protocol">HTTP</abbr> 認証モードではなく、
<h4 id="faq1_6">
<a href="#faq1_6">1.6 PWS 上で phpMyAdmin を使えません。何も表示されません!</a></h4>
-<p> This seems to be a PWS bug. Filippo Simoncini found a workaround (at this
-time there is no better fix): remove or comment the <tt>DOCTYPE</tt>
-declarations (2 lines) from the scripts <i>libraries/header.inc.php</i>,
-<i>libraries/header_printview.inc.php</i>, <i>index.php</i>,
-<i>navigation.php</i> and <i>libraries/common.lib.php</i>.</p>
+<p> PWS のバグのようです。Filippo Simoncini
+が次に述べる回避策を見つけています(現時点ではこれ以上の対応策はありません)。<i>libraries/header.inc.php</i>、<i>libraries/header_printview.inc.php</i>、<i>index.php</i>、<i>navigation.php</i>、<i>libraries/common.lib.php</i>
+の <tt>DOCTYPE</tt> 宣言(2 行)を削除するかコメントにしてください。</p>
<h4 id="faq1_7">
<a href="#faq1_7">1.7 どうすればダンプや <abbr title="comma separated
@@ -2344,7 +2324,7 @@ values">CSV</abbr> エクスポートを GZip ないし Bzip 圧縮できるの
変数に定義されている「アップロードディレクトリ(upload dir)」に保存されます(通常システムデフォルトは <i>/tmp</i>
になっています)。<br />
Apache
-サーバをセーフモードで走らせる場合は次のようにセットアップすることをおすすめします。こうすると、ファイルのアップロードを可能にしながらある程度のセキュリティも確保できます:</p>
+サーバをセーフモードで走らせる場合は次のようにセットアップすることをお勧めします。こうすると、ファイルのアップロードを可能にしながらある程度のセキュリティも確保できます。</p>
<ul><li>アップロード用のディレクトリを別に作ります: <tt>mkdir /tmp/php</tt></li>
<li>Apache サーバのユーザ/グループをオーナーします: <tt>chown apache.apache /tmp/php</tt></li>
@@ -2370,11 +2350,11 @@ Internet Explorer、サーバは Apache を使っています。</a></h4>
<a href="#faq1_11">1.11 クエリボックスからファイルをアップロードすると「open_basedir 制限(open_basedir
restriction)」が出ます。</a></h4>
-<p> Since version 2.2.4, phpMyAdmin supports servers with open_basedir
-restrictions. However you need to create temporary directory and configure
-it as <a href="#cfg_TempDir" class="configrule">$cfg['TempDir']</a>. The
-uploaded files will be moved there, and after execution of your <abbr
-title="structured query language">SQL</abbr> commands, removed.</p>
+<p> バージョン 2.2.4 以降、phpMyAdmin はサーバの open_basedir
+制限をサポートしています。しかしながら、一時ディレクトリを作成して、<a href="#cfg_TempDir"
+class="configrule">$cfg['TempDir']</a>
+にそのディレクトリを設定する必要があります。アップロードしたファイルはそこに移され、<abbr title="structured query
+language">SQL</abbr> コマンドの実行が終わったら削除されます。</p>
<h4 id="faq1_12">
<a href="#faq1_12">1.12 MySQL のルートパスワードをなくしてしまいました。どうしたらよいのでしょうか?</a></h4>
@@ -2733,13 +2713,12 @@ directive</a>.
</p>
<h4 id="faq1_39">
- <a href="#faq1_39">1.39 When I try to connect via https, I can log in, but
-then my connection is redirected back to http. What can cause this
-behavior?</a></h4>
+ <a href="#faq1_39">1.39 https を経由して接続すると、ログインすることはできますが、接続が http
+にリダイレクトされてしまいます。何が原因でこの現象が発生するのですか?</a></h4>
-<p> Be sure that you have enabled <tt>SSLOptions</tt> and <tt>StdEnvVars</tt> in
-your Apache configuration. See <a
-href="http://httpd.apache.org/docs/2.0/mod/mod_ssl.html#ssloptions">http://httpd.apache.org/docs/2.0/mod/mod_ssl.html#ssloptions</a>.</p>
+<p> Apache の設定で <tt>SSLOptions</tt> と <tt>StdEnvVars</tt>
+が有効になっていることを確認してください。<a
+href="http://httpd.apache.org/docs/2.0/mod/mod_ssl.html#ssloptions">http://httpd.apache.org/docs/2.0/mod/mod_ssl.html#ssloptions</a>を参照してください。</p>
<h4 id="faq1_40">
<a href="#faq1_40">1.40 Apache のリバースプロキシを介して phpMyAdmin
@@ -2771,11 +2750,10 @@ href="http://httpd.apache.org/docs/2.2/mod/mod_proxy.html">http://httpd.apache.o
を参照してください。</p>
<h4 id="faq1_41">
- <a href="#faq1_41">1.41 When I view a database and ask to see its
-privileges, I get an error about an unknown column.</a></h4>
+ <a href="#faq1_41">1.41 データベースを表示しその権限を参照しようとすると、未知のカラムに関するエラーが表示されます。</a></h4>
-<p> The MySQL server's privilege tables are not up to date, you need to run the
-<tt>mysql_upgrade</tt> command on the server.</p>
+<p> MySQL サーバの権限テーブルが最新の状態にされていないません。サーバ上で <tt>mysql_upgrade</tt>
+コマンドを実行する必要があります。</p>
<h3 id="faqconfig">設定</h3>
@@ -2832,9 +2810,9 @@ $cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock';</a>
また、このファイルのパーミッションを確かめて、ウェブサーバが読み込みできるようにしてください(「0755」など)。</li>
</ul>
-<p> Have also a look at the <a
-href="http://dev.mysql.com/doc/en/can-not-connect-to-server.html">
-corresponding section of the MySQL documentation</a>.</p>
+<p> また、<a
+href="http://dev.mysql.com/doc/refman/4.1/ja/can-not-connect-to-server.html">MySQL
+ドキュメントの該当セクション</a>もご覧ください。</p>
<h4 id="faq2_4">
<a href="#faq2_4">2.4 phpMyAdmin
@@ -2908,7 +2886,7 @@ phpMyAdmin でもうまくいくようにしてください。世代の異なる
<a href="#faqmissingparameters">2.8 「Missing
parameters(パラメータが抜けています)」というエラーが出ます。どうしたらよいのでしょう?</a></h4>
-<p> 確認すべき点はいくつかあります:</p>
+<p> 確認すべき点はいくつかあります。</p>
<ul><li><tt>config.inc.php</tt> の <a href="#cfg_PmaAbsoluteUri"
class="configrule">$cfg['PmaAbsoluteUri']</a> ディレクティブを空にしてみてください。また <a
@@ -2958,12 +2936,10 @@ Protocol">HTTP</abbr> 認証を使っているときにログアウトすると
<h4 id="faq3_2">
<a href="#faq3_2">3.2 大きなテーブルを圧縮モードでダンプするとメモリ制限のエラーや時間制限のエラーが出ます。</a></h4>
-<p> Compressed dumps are built in memory and because of this are limited to
-php's memory limit. For GZip/BZip2 exports this can be overcome since 2.5.4
-using <a href="#cfg_CompressOnFly"
-class="configrule">$cfg['CompressOnFly']</a> (enabled by default). Zip
-exports can not be handled this way, so if you need Zip files for larger
-dump, you have to use another way.</p>
+<p> 圧縮されたダンプがメモリ上に生成されるために、PHP のメモリ制限にひっかかるのが原因です。GZip/BZip2 エクスポートについては 2.5.4
+以降 <a href="#cfg_CompressOnFly" class="configrule">$cfg['CompressOnFly']</a>
+(逐次圧縮)を使うとこの問題を克服できます(デフォルトで有効になっています)。Zip エクスポートではこの方法が行えませんので、大きめのダンプの Zip
+ファイルが必要な場合、別の方法をとる必要があります。</p>
<h4 id="faq3_3">
<a href="#faq3_3">3.3 InnoDB テーブルでテーブルやカラムをリネームすると外部キーのリレーションが切れます。</a></h4>
@@ -3022,16 +2998,12 @@ unable to parse url(警告:urlを解析できません)」というエラ
<h4 id="faq3_8">
<a href="#faq3_8">3.8 カラムに MIME 変換機能を適用したら、(クリッカブルな)HTML フォームが使えなくなります!</a></h4>
-<p> Due to a surrounding form-container (for multi-row delete checkboxes), no
-nested forms can be put inside the table where phpMyAdmin displays the
-results. You can, however, use any form inside of a table if keep the
-parent form-container with the target to tbl_row_delete.php and just put
-your own input-elements inside. If you use a custom submit input field, the
-form will submit itself to the displaying page again, where you can validate
-the $HTTP_POST_VARS in a transformation. For a tutorial on how to
-effectively use transformations, see our <a
-href="http://www.phpmyadmin.net/home_page/docs.php">Link section</a> on the
-official phpMyAdmin-homepage.</p>
+<p> phpMyAdmin
+が結果を表示するテーブルは(複数列削除チェックボックス用の)フォームコンテナに囲まれているため、その中に入れ子にするフォームを置くことはできません。ただし、tbl_row_delete.php
+を対象とした親フォームのコンテナはそのまま残して、その中に独自の入力要素のみ加えるようにすれば、どんなフォームでもテーブルの中に入れられます。送信用の
+input フィールドをカスタマイズするとフォームのデータは表示しているページに再送されますので、変換機能のなかで $HTTP_POST_VARS
+を有効にしてください。 変換機能の効果的な使い方のチュートリアルについては phpMyAdmin のオフィシャルホームページの <a
+href="http://www.phpmyadmin.net/home_page/docs.php">Link セクション</a>をご覧ください。</p>
<h4 id="faq3_9">
<a href="#faq3_9">3.9 MySQL サーバに「--sql_mode=ANSI」を適用するとエラーメッセージが出ます。</a></h4>
@@ -4513,15 +4485,15 @@ should have written their names here.
Schneier 氏によって 1993 年に設計された対称ブロック暗号およびそのキー</li>
<li><a
href="http://ja.wikipedia.org/wiki/%E3%82%A6%E3%82%A7%E3%83%96%E3%83%96%E3%83%A9%…">ブラウザ(ウェブブラウザ)</a>
-- World Wide Web 上の Web サイトで Web
-ページに一般的に置かれているテキスト、画像、その他の情報をユーザに対して表示や双方向通信することができるアプリケーション</li>
+- World Wide Web
+上のウェブサイトでウェブページに一般的に置かれているテキスト、画像、その他の情報をユーザに対して表示や双方向通信することができるアプリケーション</li>
<li><a href="http://ja.wikipedia.org/wiki/Bzip2">bzip2</a> - Julian Seward
により開発されたフリーソフトウェアでオープンソースのデータ圧縮アルゴリズムおよびプログラム</li>
<li><a href="http://ja.wikipedia.org/wiki/Common_Gateway_Interface">CGI (Common
-Gateway Interface)</a> - Web サーバー上で実行されるプログラムでクライアントの Web
-ブラウザのデータを要求に応えることができる重要な World Wide Web 技術</li>
- <li><a href="http://www.wikipedia.org/wiki/Changelog">Changelog</a> - a log or
-record of changes made to a project.</li>
+Gateway Interface)</a> -
+ウェブサーバー上で実行されるプログラムでクライアントのウェブブラウザのデータを要求に応えることができる重要な World Wide Web 技術</li>
+ <li><a href="http://www.wikipedia.org/wiki/Changelog">変更履歴</a> -
+プロジェクトに加えられた変更の記録</li>
<li><a
href="http://ja.wikipedia.org/wiki/%E3%82%AF%E3%83%A9%E3%82%A4%E3%82%A2%E3%83%B3%…">クライアント</a>
- 幾重かのネットワークを介して他のコンピュータ上の(リモート)サービスにアクセスするコンピュータシステムのこと</li>
@@ -4552,7 +4524,7 @@ href="http://ja.wikipedia.org/wiki/%E5%A4%96%E9%83%A8%E3%82%AD%E3%83%BC">外部
<li><a href="http://www.fpdf.org/">FPDF (FreePDF)</a> - フリーの PDF ライブラリ</li>
<li><a id="gd" href="http://ja.wikipedia.org/wiki/GD_Graphics_Library">GD
グラフィックライブラリ</a> - Thomas Boutell 氏他によって開発された動的に画像を操作するためのライブラリ</li>
- <li>GD2 - → <a href="#gd">GD Graphics Library</a></li>
+ <li>GD2 - → <a href="#gd">GD グラフィックライブラリ</a></li>
<li><a href="http://ja.wikipedia.org/wiki/Gzip">gzip</a> - GNU zip の略称で、GNU
フリーソフトウェアファイル圧縮プログラムのこと</li>
<li><a
@@ -4623,8 +4595,8 @@ Extension and Application Repository)</li>
<li><a href="http://php.net/pcre">PCRE (Perl Compatible Regular Expressions)</a>
- Perl 互換の PHP 正規表現関数</li>
<li><a href="http://ja.wikipedia.org/wiki/PHP:_Hypertext_Preprocessor">PHP</a> -
-「PHP: Hypertext Preprocessor」の略称。オープンソース。主にサーバ側のアプリケーション開発と動的な Web
-コンテンツのために使用されるリフレクションプログラミング言語。最近では、ソフトウェアアプリケーションの広い範囲で使われている。</li>
+「PHP: Hypertext
+Preprocessor」の略称。オープンソース。主にサーバ側のアプリケーション開発と動的なウェブコンテンツのために使用されるリフレクションプログラミング言語。最近では、ソフトウェアアプリケーションの広い範囲で使われている。</li>
<li><a
href="http://ja.wikipedia.org/wiki/%E3%83%9D%E3%83%BC%E3%83%88#port">ポート</a>
- これを介してデータが送受信される</li>
@@ -4664,7 +4636,7 @@ Locator)</a> -
位置を示す連続した文字。標準化された形式に準拠しており、インターネット上の文書や画像などのリソースを参照するために使用される。</li>
<li><a
href="http://ja.wikipedia.org/wiki/Web%E3%82%B5%E3%83%BC%E3%83%90">ウェブサーバ</a>
-- クライアントからの HTTP 要求の受け入れおよびそれらに対する Web ページの提供を行っているコンピュータ(プログラム)</li>
+- クライアントからの HTTP 要求の受け入れおよびそれらに対するウェブページの提供を行っているコンピュータ(プログラム)</li>
<li><a href="http://www.wikipedia.org/wiki/XML">XML (Extensible Markup
Language)</a> - a W3C-recommended general-purpose markup language for
creating special-purpose markup languages, capable of describing many
diff --git a/output/ja/README b/output/ja/README
index fe3ed2a..18c7ef2 100644
--- a/output/ja/README
+++ b/output/ja/README
@@ -3,7 +3,7 @@ phpMyAdmin - お読み下さい
バージョン 3.5.0-dev
-Web 上で MySQL を管理することができる PHP プログラムです。
+ウェブ上で MySQL を管理することができる PHP プログラムです。
http://www.phpmyadmin.net/
@@ -47,7 +47,7 @@ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
概要
------
-phpMyAdmin は Web 上で MySQL の管理を処理するためのものです。機能の概要については、Documentation.txt/.html
+phpMyAdmin はウェブ上で MySQL の管理を処理するためのものです。機能の概要については、Documentation.txt/.html
ファイルをご覧ください。
ダウンロード
diff --git a/output/tr/Documentation.html b/output/tr/Documentation.html
index 2bb54f9..cd5ebd6 100644
--- a/output/tr/Documentation.html
+++ b/output/tr/Documentation.html
@@ -1098,9 +1098,8 @@ kullanılabilirdir.<br /><br />
gösterebilirsiniz. Doğrudan tablolar üstünde, veritabanını seçmeye gerek
kalmadan, atlama yapmanıza yardımcı olur ve sonradan tablo seçersiniz. <a
href="#cfg_LeftRecentTable" class="configrule">$cfg['LeftRecentTable']</a>
-kullanarak gösterilen en fazla son tablo sayısını
-yapılandırabilirsiniz. Listeden bir tablo seçtiğinizde, <a
-href="#cfg_LeftDefaultTabTable"
+gösterilen en fazla son tablo sayısını yapılandırabilirsiniz. Listeden bir
+tablo seçtiğinizde, <a href="#cfg_LeftDefaultTabTable"
class="configrule">$cfg['LeftDefaultTabTable']</a> içinde belirtilen sayfaya
atlayacaktır.<br/><br/>
@@ -1614,8 +1613,8 @@ kez kullanmamalısınız.</dd>
görüntüleneceğini tanımlar.</dd>
<dt id="cfg_LeftRecentTable">$cfg['LeftRecentTable'] tam sayı</dt>
- <dd>The maximum number of recently used tables shown in the left navigation
-frame. Set this to 0 (zero) to disable the listing of recent tables.</dd>
+ <dd>Sol rehber çerçevede gösterilen en fazla son kullanılan tablo sayısıdır. Son
+tabloların listelenmesini etkisizleştirmek için bunu 0'a (sıfır) ayarlayın.</dd>
<dt id="cfg_ShowTooltip">$cfg['ShowTooltip'] boolean</dt>
<dd>Sol çerçevede tablo yorumunun araç ipucu olarak görüntülenip
diff --git a/po/cs.po b/po/cs.po
index 2ef7bd2..f25b76e 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -2,10 +2,10 @@
# Copyright (C) 2009 Free Software Foundation, Inc.
# This file is distributed under the same license as the po package.
# Automatically generated, 2009.
-#
+#
# Automatically generated <>, 2009.
# Michal <michal(a)cihar.com>, 20, 2010.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: po 4a\n"
@@ -14,10 +14,10 @@ msgstr ""
"PO-Revision-Date: 2011-05-18 14:05+0200\n"
"Last-Translator: Martin Lacina <martin(a)whistler.sk>\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"
@@ -29,11 +29,11 @@ msgstr "phpMyAdmin @@VER@@ - Dokumentace"
#. type: Content of: <html><body><div><h1>
#: orig-docs/Documentation.html:19
msgid ""
-"<a href=\"http://www.phpmyadmin.net/\">php<span "
-"class=\"myadmin\">MyAdmin</span></a> @@VER@@ Documentation"
+"<a href=\"http://www.phpmyadmin.net/\">php<span class=\"myadmin\">MyAdmin</"
+"span></a> @@VER@@ Documentation"
msgstr ""
-"<a href=\"http://www.phpmyadmin.net/\">php<span "
-"class=\"myadmin\">MyAdmin</span></a> @@VER@@ Dokumentace"
+"<a href=\"http://www.phpmyadmin.net/\">php<span class=\"myadmin\">MyAdmin</"
+"span></a> @@VER@@ Dokumentace"
#. type: Content of: <html><body><ul><li>
#: orig-docs/Documentation.html:27
@@ -73,8 +73,8 @@ msgstr "<a href=\"Documentation.html#transformations\">Transformace</a>"
#. type: Content of: <html><body><ul><li>
#: orig-docs/Documentation.html:34
msgid ""
-"<a href=\"Documentation.html#faq\"><abbr title=\"Frequently Asked "
-"Questions\"> FAQ</abbr></a>"
+"<a href=\"Documentation.html#faq\"><abbr title=\"Frequently Asked Questions"
+"\"> FAQ</abbr></a>"
msgstr ""
"<a href=\"Documentation.html#faq\"><abbr title=\"Často Kladené Dotazy\"> "
"ČKD</abbr></a>"
@@ -110,8 +110,8 @@ msgid ""
"<a href=\"https://sourceforge.net/projects/phpmyadmin/\"> SourceForge "
"phpMyAdmin project page</a>"
msgstr ""
-"<a href=\"https://sourceforge.net/projects/phpmyadmin/\"> Projektová stránka"
-" phpMyAdmina na SourceForge</a>"
+"<a href=\"https://sourceforge.net/projects/phpmyadmin/\"> Projektová stránka "
+"phpMyAdmina na SourceForge</a>"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:47
@@ -151,21 +151,21 @@ msgstr "<b>PHP</b>"
#: orig-docs/Documentation.html:60
#, fuzzy
msgid ""
-"You need PHP 5.2.0 or newer, with <tt>session</tt> support (<a "
-"href=\"#faq1_31\">see <abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
-"1.31</a>) , the Standard PHP Library (SPL) extension and JSON support."
+"You need PHP 5.2.0 or newer, with <tt>session</tt> support (<a href="
+"\"#faq1_31\">see <abbr title=\"Frequently Asked Questions\">FAQ</abbr> 1.31</"
+"a>) , the Standard PHP Library (SPL) extension and JSON support."
msgstr ""
-"Potřebujete PHP 5.2.0 nebo novější, s podporou <tt>session</tt> (<a "
-"href=\"#faq1_31\"> viz <abbr title=\"Frequently Asked Questions\">FAQ</abbr>"
-" 1.31</a>) a rozšířením Standard PHP Library (SPL)."
+"Potřebujete PHP 5.2.0 nebo novější, s podporou <tt>session</tt> (<a href="
+"\"#faq1_31\"> viz <abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
+"1.31</a>) a rozšířením Standard PHP Library (SPL)."
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:65
msgid ""
"To support uploading of ZIP files, you need the PHP <tt>zip</tt> extension."
msgstr ""
-"Pro podporu nahrávání archívů ZIP budete potřebovat rozšíření PHP "
-"<tt>zip</tt>."
+"Pro podporu nahrávání archívů ZIP budete potřebovat rozšíření PHP <tt>zip</"
+"tt>."
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:66
@@ -179,8 +179,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:70
msgid ""
-"You need GD2 support in PHP to display inline thumbnails of JPEGs "
-"("image/jpeg: inline") with their original aspect ratio"
+"You need GD2 support in PHP to display inline thumbnails of JPEGs (""
+"image/jpeg: inline") with their original aspect ratio"
msgstr ""
"V PHP potřebujete pro zobrazení vložených náhledů JPG ("image/jpeg: "
"inline") obrázků se zachováním původních poměrů jejich stran knihovnu "
@@ -189,14 +189,14 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:73
msgid ""
-"When using the "cookie" <a "
-"href=\"#authentication_modes\">authentication method</a>, the <a "
-"href=\"http://www.php.net/mcrypt\"><tt>mcrypt</tt></a> extension is strongly"
-" suggested for most users and is <b>required</b> for 64–bit machines. "
-"Not using mcrypt will cause phpMyAdmin to load pages significantly slower."
+"When using the "cookie" <a href=\"#authentication_modes"
+"\">authentication method</a>, the <a href=\"http://www.php.net/mcrypt"
+"\"><tt>mcrypt</tt></a> extension is strongly suggested for most users and is "
+"<b>required</b> for 64–bit machines. Not using mcrypt will cause "
+"phpMyAdmin to load pages significantly slower."
msgstr ""
-"Pokud používáte ověření pomocí "cookies", <a "
-"href=\"#authentication_modes\">viz</a>, je pro většinu uživatelů doporučeno "
+"Pokud používáte ověření pomocí "cookies", <a href="
+"\"#authentication_modes\">viz</a>, je pro většinu uživatelů doporučeno "
"rozšíření <a href=\"http://www.php.net/mcrypt\"><tt>mcrypt</tt></a> a pro "
"64–bitové stroje je <b>vyžadováno</b>. Nepoužívání rozšíření mcrypt "
"způsobí mnohem pomalejší načítání stránek phpMyAdmin."
@@ -204,8 +204,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:80
msgid ""
-"To support upload progress bars, see <a href=\"#faq2_9\"> <abbr "
-"title=\"Frequently Asked Questions\">FAQ</abbr> 2.9</a>."
+"To support upload progress bars, see <a href=\"#faq2_9\"> <abbr title="
+"\"Frequently Asked Questions\">FAQ</abbr> 2.9</a>."
msgstr ""
"Pro podporu zobrazení stavu nahrávání si přečtěte <a href=\"#faq2_9\"><abbr "
"title=\"Často Kladené Dotazy\">ČKD</abbr> 2.9</a>."
@@ -214,9 +214,8 @@ msgstr ""
#: orig-docs/Documentation.html:82
#, fuzzy
msgid ""
-"To support BLOB streaming, see PHP and MySQL requirements in <a "
-"href=\"#faq6_25\"> <abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
-"6.25</a>."
+"To support BLOB streaming, see PHP and MySQL requirements in <a href="
+"\"#faq6_25\"> <abbr title=\"Frequently Asked Questions\">FAQ</abbr> 6.25</a>."
msgstr ""
"podpora pro mysqli, vylepšené rozšíření pro MySQL <a href=\"#faq1_17\">(viz "
"<abbr title=\"Často Kladené Dotazy\">ČKD</abbr> 1.17)</a>"
@@ -239,8 +238,8 @@ msgstr "Úvod"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:94
msgid ""
-"phpMyAdmin can manage a whole MySQL server (needs a super-user) as well as a"
-" single database. To accomplish the latter you'll need a properly set up "
+"phpMyAdmin can manage a whole MySQL server (needs a super-user) as well as a "
+"single database. To accomplish the latter you'll need a properly set up "
"MySQL user who can read/write only the desired database. It's up to you to "
"look up the appropriate part in the MySQL manual."
msgstr ""
@@ -278,11 +277,11 @@ msgstr "údržba serveru, databází a tabulek s návrhy na konfiguraci serveru"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:107
msgid ""
-"execute, edit and bookmark any <abbr title=\"structured query "
-"language\">SQL</abbr>-statement, even batch-queries"
+"execute, edit and bookmark any <abbr title=\"structured query language"
+"\">SQL</abbr>-statement, even batch-queries"
msgstr ""
-"provádění, úpravy a přidávání do záložek jakéhokoli <abbr title=\"structured"
-" query language\">SQL</abbr> výrazu včetně dávkových příkazů"
+"provádění, úpravy a přidávání do záložek jakéhokoli <abbr title=\"structured "
+"query language\">SQL</abbr> výrazu včetně dávkových příkazů"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:110
@@ -300,38 +299,36 @@ msgstr ""
msgid ""
"export<a href=\"#footnote_1\"><sup>1</sup></a> data to various formats: "
"<abbr title=\"Comma Separated Values\">CSV</abbr>, <abbr title=\"Extensible "
-"Markup Language\">XML</abbr>, <abbr title=\"Portable Document "
-"Format\">PDF</abbr>, <abbr title=\"International Standards "
-"Organisation\">ISO</abbr>/<abbr title=\"International Electrotechnical "
-"Commission\">IEC</abbr> 26300 - OpenDocument Text and Spreadsheet, <abbr "
-"title=\"Microsoft Word 2000\">Word</abbr>, <abbr title=\"Microsoft Excel "
-"97-2003 and Excel 2007\">Excel</abbr> and "
-"L<sup>A</sup>T<sub><big>E</big></sub>X formats"
-msgstr ""
-"export<a href=\"#footnote_1\"><sup>1</sup></a> dat do různých formátů: <abbr"
-" title=\"comma separated values\">CSV</abbr>, <abbr title=\"Extensible "
-"Markup Language\">XML</abbr>, <abbr title=\"Portable Document "
-"Format\">PDF</abbr>, <abbr title=\"International Standards "
-"Organisation\">ISO</abbr>/<abbr title=\"International Electrotechnical "
-"Commission\">IEC</abbr> 26300 - OpenDocument Text and Tabulky, <abbr "
-"title=\"Microsoft Word 2000\">Word</abbr>, <abbr title=\"Microsoft Excel "
-"97-2003 and Excel 2007\">Excel</abbr> and "
-"L<sup>A</sup>T<sub><big>E</big></sub>X"
+"Markup Language\">XML</abbr>, <abbr title=\"Portable Document Format\">PDF</"
+"abbr>, <abbr title=\"International Standards Organisation\">ISO</abbr>/<abbr "
+"title=\"International Electrotechnical Commission\">IEC</abbr> 26300 - "
+"OpenDocument Text and Spreadsheet, <abbr title=\"Microsoft Word 2000\">Word</"
+"abbr>, <abbr title=\"Microsoft Excel 97-2003 and Excel 2007\">Excel</abbr> "
+"and L<sup>A</sup>T<sub><big>E</big></sub>X formats"
+msgstr ""
+"export<a href=\"#footnote_1\"><sup>1</sup></a> dat do různých formátů: <abbr "
+"title=\"comma separated values\">CSV</abbr>, <abbr title=\"Extensible Markup "
+"Language\">XML</abbr>, <abbr title=\"Portable Document Format\">PDF</abbr>, "
+"<abbr title=\"International Standards Organisation\">ISO</abbr>/<abbr title="
+"\"International Electrotechnical Commission\">IEC</abbr> 26300 - "
+"OpenDocument Text and Tabulky, <abbr title=\"Microsoft Word 2000\">Word</"
+"abbr>, <abbr title=\"Microsoft Excel 97-2003 and Excel 2007\">Excel</abbr> "
+"and L<sup>A</sup>T<sub><big>E</big></sub>X"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:123
msgid ""
"import data and MySQL structures from <abbr title=\"Microsoft Excel 97-2003 "
"and Excel 2007\">Microsoft Excel</abbr> and OpenDocument spreadsheets, as "
-"well as <abbr title=\"Extensible Markup Language\">XML</abbr>, <abbr "
-"title=\"Comma Separated Values\">CSV</abbr>, and <abbr title=\"Server Query "
+"well as <abbr title=\"Extensible Markup Language\">XML</abbr>, <abbr title="
+"\"Comma Separated Values\">CSV</abbr>, and <abbr title=\"Server Query "
"Language\">SQL</abbr> files"
msgstr ""
"importovat data a struktury tabulek z <abbr title=\"Microsoft Excel 97-2003 "
-"a Excel 2007\">Microsoft Excel</abbr> a sešitů OpenDocument, stejně tak i ze"
-" souborů <abbr title=\"Extensible Markup Language\">XML</abbr>, <abbr "
-"title=\"Comma Separated Values\">CSV</abbr>, a <abbr title=\"Server Query "
-"Language\">SQL</abbr>"
+"a Excel 2007\">Microsoft Excel</abbr> a sešitů OpenDocument, stejně tak i ze "
+"souborů <abbr title=\"Extensible Markup Language\">XML</abbr>, <abbr title="
+"\"Comma Separated Values\">CSV</abbr>, a <abbr title=\"Server Query Language"
+"\">SQL</abbr>"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:124
@@ -363,8 +360,8 @@ msgid ""
"create <abbr title=\"Portable Document Format\">PDF</abbr> graphics of your "
"Database layout"
msgstr ""
-"vytvoří <abbr title=\"Portable Document Format\">PDF</abbr> grafiku z vašeho"
-" návrhu databáze"
+"vytvoří <abbr title=\"Portable Document Format\">PDF</abbr> grafiku z vašeho "
+"návrhu databáze"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:131
@@ -388,11 +385,11 @@ msgstr "sledování změn databází, tabulek a pohledů"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:136
msgid ""
-"support InnoDB tables and foreign keys <a href=\"#faq3_6\">(see <abbr "
-"title=\"Frequently Asked Questions\">FAQ</abbr> 3.6)</a>"
+"support InnoDB tables and foreign keys <a href=\"#faq3_6\">(see <abbr title="
+"\"Frequently Asked Questions\">FAQ</abbr> 3.6)</a>"
msgstr ""
-"podpora pro tabulky InnoDB a cizí klíče <a href=\"#faq3_6\">(viz <abbr "
-"title=\"Často Kladené Dotazy\">ČKD</abbr> 3.6)</a>"
+"podpora pro tabulky InnoDB a cizí klíče <a href=\"#faq3_6\">(viz <abbr title="
+"\"Často Kladené Dotazy\">ČKD</abbr> 3.6)</a>"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:138
@@ -407,9 +404,8 @@ msgstr ""
#: orig-docs/Documentation.html:140
#, fuzzy
msgid ""
-"communicate in <a "
-"href=\"http://www.phpmyadmin.net/home_page/translations.php\">62 different "
-"languages</a>"
+"communicate in <a href=\"http://www.phpmyadmin.net/home_page/translations.php"
+"\">62 different languages</a>"
msgstr "komunikuje v <a href=\"./translators.html\">58 různých jazycích</a>"
#. type: Content of: <html><body><div><ul><li>
@@ -419,9 +415,8 @@ msgid ""
"href=\"#faq9_1\">(see <abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
"9.1)</a>"
msgstr ""
-"synchronizace dvou databází na rozdílných (i stejných) serverech <a "
-"href=\"#faq9_1\">(viz <abbr title=\"Často Kladené Dotazy\">ČKD</abbr> "
-"9.1)</a>"
+"synchronizace dvou databází na rozdílných (i stejných) serverech <a href="
+"\"#faq9_1\">(viz <abbr title=\"Často Kladené Dotazy\">ČKD</abbr> 9.1)</a>"
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:148
@@ -432,8 +427,8 @@ msgstr "Pár slov o uživatelích:"
#: orig-docs/Documentation.html:149
msgid ""
"Many people have difficulty understanding the concept of user management "
-"with regards to phpMyAdmin. When a user logs in to phpMyAdmin, that username"
-" and password are passed directly to MySQL. phpMyAdmin does no account "
+"with regards to phpMyAdmin. When a user logs in to phpMyAdmin, that username "
+"and password are passed directly to MySQL. phpMyAdmin does no account "
"management on its own (other than allowing one to manipulate the MySQL user "
"account information); all users must be valid MySQL users."
msgstr ""
@@ -448,8 +443,8 @@ msgstr ""
msgid ""
"<sup>1)</sup> phpMyAdmin can compress (Zip, GZip -RFC 1952- or Bzip2 "
"formats) dumps and <abbr title=\"comma separated values\">CSV</abbr> "
-"exports if you use PHP with Zlib support (<tt>--with-zlib</tt>) and/or Bzip2"
-" support (<tt>--with-bz2</tt>). Proper support may also need changes in "
+"exports if you use PHP with Zlib support (<tt>--with-zlib</tt>) and/or Bzip2 "
+"support (<tt>--with-bz2</tt>). Proper support may also need changes in "
"<tt>php.ini</tt>."
msgstr ""
@@ -486,28 +481,29 @@ msgstr "<a href=\"#authentication_modes\">Způsoby přihlašování</a>"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:174
msgid ""
-"phpMyAdmin does not apply any special security methods to the MySQL database"
-" server. It is still the system administrator's job to grant permissions on "
+"phpMyAdmin does not apply any special security methods to the MySQL database "
+"server. It is still the system administrator's job to grant permissions on "
"the MySQL databases properly. phpMyAdmin's "Privileges" page can "
"be used for this."
msgstr ""
-"phpMyAdmin nepoužívá žádné speciální bezpečnostní metody na MySQL databázový"
-" server. Je to stále úkol administrátora systému aby řádně "
-"povoloval/odebíral oprávnění k databázím v MySQL. Stránka v phpMyAdmin "
-""Privileges" může být pro toto použita."
+"phpMyAdmin nepoužívá žádné speciální bezpečnostní metody na MySQL databázový "
+"server. Je to stále úkol administrátora systému aby řádně povoloval/odebíral "
+"oprávnění k databázím v MySQL. Stránka v phpMyAdmin "Privileges" "
+"může být pro toto použita."
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:181
msgid "Warning for <acronym title=\"Apple Macintosh\">Mac</acronym> users:"
-msgstr "Varování pro uživatele <acronym title=\"Apple Macintosh\">Mac</acronym>u:"
+msgstr ""
+"Varování pro uživatele <acronym title=\"Apple Macintosh\">Mac</acronym>u:"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:182
msgid ""
-"if you are on a <acronym title=\"Apple Macintosh\">Mac</acronym> <abbr "
-"title=\"operating system\">OS</abbr> version before <abbr title=\"operating "
-"system\">OS</abbr> X, StuffIt unstuffs with <acronym title=\"Apple "
-"Macintosh\">Mac</acronym> formats."
+"if you are on a <acronym title=\"Apple Macintosh\">Mac</acronym> <abbr title="
+"\"operating system\">OS</abbr> version before <abbr title=\"operating system"
+"\">OS</abbr> X, StuffIt unstuffs with <acronym title=\"Apple Macintosh"
+"\">Mac</acronym> formats."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -515,8 +511,8 @@ msgstr ""
msgid ""
"So you'll have to resave as in BBEdit to Unix style ALL phpMyAdmin scripts "
"before uploading them to your server, as PHP seems not to like <acronym "
-"title=\"Apple Macintosh\">Mac</acronym>-style end of lines character "
-"("<tt>\\r</tt>")."
+"title=\"Apple Macintosh\">Mac</acronym>-style end of lines character (""
+"<tt>\\r</tt>")."
msgstr ""
#. type: Content of: <html><body><div><h3>
@@ -534,8 +530,8 @@ msgid ""
"whose name looks like <tt>phpMyAdmin-x.x.x-all-languages.tar.gz</tt>."
msgstr ""
"Zvolte vhodnou distribuční sadu z možností na stažení na phpmyadmin.net. "
-"Některé sady obsahují jen anglické zprávy, jiné všechny jazyky v UTF-8 (toto"
-" je nejlepší volba ve většině situací), jiné obsahují i jazyky v jiných "
+"Některé sady obsahují jen anglické zprávy, jiné všechny jazyky v UTF-8 (toto "
+"je nejlepší volba ve většině situací), jiné obsahují i jazyky v jiných "
"kódováních. Dále budeme předpokládat, že vámi zvolená sada se jmenuje "
"<tt>phpMyAdmin-x.x.x-all-languages.tar.gz</tt>."
@@ -543,13 +539,13 @@ msgstr ""
#: orig-docs/Documentation.html:199
msgid ""
"Untar or unzip the distribution (be sure to unzip the subdirectories): "
-"<tt>tar -xzvf phpMyAdmin_x.x.x-all-languages.tar.gz</tt> in your webserver's"
-" document root. If you don't have direct access to your document root, put "
+"<tt>tar -xzvf phpMyAdmin_x.x.x-all-languages.tar.gz</tt> in your webserver's "
+"document root. If you don't have direct access to your document root, put "
"the files in a directory on your local machine, and, after step 4, transfer "
"the directory on your web server using, for example, ftp."
msgstr ""
-"Rozblate distribuční sadu (ujistěte se, že rozbalíte i podadresáře): <tt>tar"
-" -xzvf phpMyAdmin_x.x.x-all-languages.tar.gz</tt> v adresáři, který používá "
+"Rozblate distribuční sadu (ujistěte se, že rozbalíte i podadresáře): <tt>tar "
+"-xzvf phpMyAdmin_x.x.x-all-languages.tar.gz</tt> v adresáři, který používá "
"váš webserver. Pokud nemáte přímý přístup k vašemu webserveru, rozbalte "
"soubory na vašem počítači a po kroku 4 je nakopírujte na váš webserver, "
"například pomocí ftp."
@@ -557,23 +553,22 @@ msgstr ""
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:204
msgid ""
-"Ensure that all the scripts have the appropriate owner (if PHP is running in"
-" safe mode, having some scripts with an owner different from the owner of "
-"other scripts will be a problem). See <a href=\"#faq4_2\"> <abbr "
-"title=\"Frequently Asked Questions\">FAQ</abbr> 4.2</a> and <a "
-"href=\"#faq1_26\"><abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
-"1.26</a> for suggestions."
+"Ensure that all the scripts have the appropriate owner (if PHP is running in "
+"safe mode, having some scripts with an owner different from the owner of "
+"other scripts will be a problem). See <a href=\"#faq4_2\"> <abbr title="
+"\"Frequently Asked Questions\">FAQ</abbr> 4.2</a> and <a href="
+"\"#faq1_26\"><abbr title=\"Frequently Asked Questions\">FAQ</abbr> 1.26</a> "
+"for suggestions."
msgstr ""
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:211
msgid ""
"Now you must configure your installation. There are two methods that can be "
-"used. Traditionally, users have hand-edited a copy of "
-"<tt>config.inc.php</tt>, but now a wizard-style setup script is provided for"
-" those who prefer a graphical installation. Creating a "
-"<tt>config.inc.php</tt> is still a quick way to get started and needed for "
-"some advanced features."
+"used. Traditionally, users have hand-edited a copy of <tt>config.inc.php</"
+"tt>, but now a wizard-style setup script is provided for those who prefer a "
+"graphical installation. Creating a <tt>config.inc.php</tt> is still a quick "
+"way to get started and needed for some advanced features."
msgstr ""
#. type: Content of: <html><body><div><ol><li><ul><li>
@@ -585,9 +580,9 @@ msgid ""
"(the one that contains <tt>index.php</tt>). phpMyAdmin first loads "
"<tt>libraries/config.default.php</tt> and then overrides those values with "
"anything found in <tt>config.inc.php</tt>. If the default value is okay for "
-"a particular setting, there is no need to include it in "
-"<tt>config.inc.php</tt>. You'll need a few directives to get going, a "
-"simple configuration may look like this:"
+"a particular setting, there is no need to include it in <tt>config.inc.php</"
+"tt>. You'll need a few directives to get going, a simple configuration may "
+"look like this:"
msgstr ""
#. type: Content of: <html><body><div><ol><li><ul><li><pre>
@@ -640,15 +635,15 @@ msgstr ""
#. type: Content of: <html><body><div><ol><li><ul><li>
#: orig-docs/Documentation.html:247
msgid ""
-"For a full explanation of possible configuration values, see the <a "
-"href=\"#config\">Configuration Section</a> of this document."
+"For a full explanation of possible configuration values, see the <a href="
+"\"#config\">Configuration Section</a> of this document."
msgstr ""
#. type: Content of: <html><body><div><ol><li><ul><li>
#: orig-docs/Documentation.html:249
msgid ""
-"Instead of manually editing <tt>config.inc.php</tt>, you can use the <a "
-"href=\"setup/\">Setup Script</a>. First you must manually create a folder "
+"Instead of manually editing <tt>config.inc.php</tt>, you can use the <a href="
+"\"setup/\">Setup Script</a>. First you must manually create a folder "
"<tt>config</tt> in the phpMyAdmin directory. This is a security measure. On "
"a Linux/Unix system you can use the following commands:"
msgstr ""
@@ -683,26 +678,26 @@ msgstr ""
#. type: Content of: <html><body><div><ol><li><ul><li>
#: orig-docs/Documentation.html:265
msgid ""
-"On other platforms, simply create the folder and ensure that your web server"
-" has read and write access to it. <a href=\"#faq1_26\">FAQ 1.26</a> can help"
-" with this."
+"On other platforms, simply create the folder and ensure that your web server "
+"has read and write access to it. <a href=\"#faq1_26\">FAQ 1.26</a> can help "
+"with this."
msgstr ""
"Na ostatních platformách, prostě vytcořte složku a zkontrolujte jestli má "
-"váš web server do ní možnost zápisu a čtení. <a href=\"#faq1_26\">FAQ "
-"1.26</a> vám stím může pomoci."
+"váš web server do ní možnost zápisu a čtení. <a href=\"#faq1_26\">FAQ 1.26</"
+"a> vám stím může pomoci."
#. type: Content of: <html><body><div><ol><li><ul><li>
#: orig-docs/Documentation.html:269
msgid ""
-"Next, open <tt><a href=\"setup/\">setup/</a> </tt>in your browser. Note that"
-" <strong>changes are not saved to disk until explicitly choose "
-"<tt>Save</tt></strong> from the <i>Configuration</i> area of the screen. "
-"Normally the script saves the new config.inc.php to the <tt>config/</tt> "
-"directory, but if the webserver does not have the proper permissions you may"
-" see the error \"Cannot load or save configuration.\" Ensure that the <tt> "
-"config/</tt> directory exists and has the proper permissions - or use the "
-"<tt>Download</tt> link to save the config file locally and upload (via FTP "
-"or some similar means) to the proper location."
+"Next, open <tt><a href=\"setup/\">setup/</a> </tt>in your browser. Note that "
+"<strong>changes are not saved to disk until explicitly choose <tt>Save</tt></"
+"strong> from the <i>Configuration</i> area of the screen. Normally the "
+"script saves the new config.inc.php to the <tt>config/</tt> directory, but "
+"if the webserver does not have the proper permissions you may see the error "
+"\"Cannot load or save configuration.\" Ensure that the <tt> config/</tt> "
+"directory exists and has the proper permissions - or use the <tt>Download</"
+"tt> link to save the config file locally and upload (via FTP or some similar "
+"means) to the proper location."
msgstr ""
#. type: Content of: <html><body><div><ol><li><ul><li>
@@ -739,12 +734,12 @@ msgid ""
"that you protect the phpMyAdmin installation directory because using config "
"does not require a user to enter a password to access the phpMyAdmin "
"installation. Use of an alternate authentication method is recommended, for "
-"example with HTTP–AUTH in a <a href=\"#glossary\"><i>.htaccess</i></a>"
-" file or switch to using <tt>auth_type</tt> cookie or http. See the <a "
-"href=\"#faqmultiuser\"> multi–user sub–section</a> of this <abbr"
-" title=\"Frequently Asked Questions\">FAQ</abbr> for additional information,"
-" especially <a href=\"#faq4_4\"> <abbr title=\"Frequently Asked "
-"Questions\">FAQ</abbr> 4.4</a>."
+"example with HTTP–AUTH in a <a href=\"#glossary\"><i>.htaccess</i></a> "
+"file or switch to using <tt>auth_type</tt> cookie or http. See the <a href="
+"\"#faqmultiuser\"> multi–user sub–section</a> of this <abbr "
+"title=\"Frequently Asked Questions\">FAQ</abbr> for additional information, "
+"especially <a href=\"#faq4_4\"> <abbr title=\"Frequently Asked Questions"
+"\">FAQ</abbr> 4.4</a>."
msgstr ""
#. type: Content of: <html><body><div><ol><li>
@@ -752,16 +747,16 @@ msgstr ""
msgid ""
"Open the <a href=\"index.php\">main phpMyAdmin directory</a> in your "
"browser. phpMyAdmin should now display a welcome screen and your databases, "
-"or a login dialog if using <abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or cookie authentication mode."
+"or a login dialog if using <abbr title=\"HyperText Transfer Protocol\">HTTP</"
+"abbr> or cookie authentication mode."
msgstr ""
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:308
msgid ""
"You should deny access to the <tt>./libraries</tt> and <tt>./setup/lib</tt> "
-"subfolders in your webserver configuration. For Apache you can use supplied "
-".htaccess file in that folder, for other webservers, you should configure "
+"subfolders in your webserver configuration. For Apache you can use supplied ."
+"htaccess file in that folder, for other webservers, you should configure "
"this yourself. Such configuration prevents from possible path exposure and "
"cross side scripting vulnerabilities that might happen to be found in that "
"code."
@@ -773,9 +768,9 @@ msgid ""
"It is generally good idea to protect public phpMyAdmin installation against "
"access by robots as they usually can not do anything good there. You can do "
"this using <code>robots.txt</code> file in root of your webserver or limit "
-"access by web server configuration. You can find example "
-"<code>.htaccess</code> file which can help you achieve this in "
-"<code>contrib</code> directory in phpMyAdmin."
+"access by web server configuration. You can find example <code>.htaccess</"
+"code> file which can help you achieve this in <code>contrib</code> directory "
+"in phpMyAdmin."
msgstr ""
#. type: Content of: <html><body><div><h3>
@@ -786,12 +781,12 @@ msgstr "Úložiště nastavení phpMyAdmina"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:326
msgid ""
-"For a whole set of new features (bookmarks, comments, <abbr "
-"title=\"structured query language\">SQL</abbr>-history, tracking mechanism, "
-"<abbr title=\"Portable Document Format\">PDF</abbr>-generation, column "
-"contents transformation, etc.) you need to create a set of special tables. "
-"Those tables can be located in your own database, or in a central database "
-"for a multi-user installation (this database would then be accessed by the "
+"For a whole set of new features (bookmarks, comments, <abbr title="
+"\"structured query language\">SQL</abbr>-history, tracking mechanism, <abbr "
+"title=\"Portable Document Format\">PDF</abbr>-generation, column contents "
+"transformation, etc.) you need to create a set of special tables. Those "
+"tables can be located in your own database, or in a central database for a "
+"multi-user installation (this database would then be accessed by the "
"controluser, so no other user should have rights to it)."
msgstr ""
@@ -807,9 +802,9 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:340
msgid ""
-"If you already had this infrastructure and upgraded to MySQL 4.1.2 or newer,"
-" please use <i>./scripts/upgrade_tables_mysql_4_1_2+.sql</i> and then create"
-" new tables by importing <i>./scripts/create_tables.sql</i>."
+"If you already had this infrastructure and upgraded to MySQL 4.1.2 or newer, "
+"please use <i>./scripts/upgrade_tables_mysql_4_1_2+.sql</i> and then create "
+"new tables by importing <i>./scripts/create_tables.sql</i>."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -826,10 +821,10 @@ msgstr ""
msgid ""
"After having imported the <i>./scripts/create_tables.sql</i> file, you "
"should specify the table names in your <i>./config.inc.php</i> file. The "
-"directives used for that can be found in the <a "
-"href=\"#config\">Configuration section</a>. You will also need to have a "
-"controluser with the proper rights to those tables (see section <a "
-"href=\"#authentication_modes\">Using authentication modes</a> below)."
+"directives used for that can be found in the <a href=\"#config"
+"\">Configuration section</a>. You will also need to have a controluser with "
+"the proper rights to those tables (see section <a href="
+"\"#authentication_modes\">Using authentication modes</a> below)."
msgstr ""
#. type: Content of: <html><body><div><h3>
@@ -840,8 +835,8 @@ msgstr "Aktualizace ze starší verze"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:358
msgid ""
-"Simply copy <i>./config.inc.php</i> from your previous installation into the"
-" newly unpacked one. Configuration files from old versions may require some "
+"Simply copy <i>./config.inc.php</i> from your previous installation into the "
+"newly unpacked one. Configuration files from old versions may require some "
"tweaking as some options have been changed or removed; in particular, the "
"definition of <tt>$cfg['AttributeTypes']</tt> has changed so you better "
"remove it from your file and just use the default one. For compatibility "
@@ -862,8 +857,8 @@ msgstr ""
msgid ""
"If you have upgraded your MySQL server from a version previous to 4.1.2 to "
"version 5.x or newer and if you use the phpMyAdmin configuration storage, "
-"you should run the SQL script found in "
-"<tt>scripts/upgrade_tables_mysql_4_1_2+.sql</tt>."
+"you should run the SQL script found in <tt>scripts/"
+"upgrade_tables_mysql_4_1_2+.sql</tt>."
msgstr ""
#. type: Content of: <html><body><div><h3>
@@ -900,8 +895,8 @@ msgstr ""
msgid ""
"<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> and cookie "
"authentication modes are more secure: the MySQL login information does not "
-"need to be set in the phpMyAdmin configuration file (except possibly for the"
-" <a href=\"#controluser\">controluser</a>)."
+"need to be set in the phpMyAdmin configuration file (except possibly for the "
+"<a href=\"#controluser\">controluser</a>)."
msgstr ""
"Ale, mějte na paměti, že heslo je přenášeno jako prostý text, pokud "
"nepoužíváte protokol HTTPS."
@@ -938,22 +933,21 @@ msgstr ""
#: orig-docs/Documentation.html:400
msgid ""
"For '<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr>' and 'cookie' "
-"modes, phpMyAdmin needs a controluser that has <b>only</b> the "
-"<tt>SELECT</tt> privilege on the <i>`mysql`.`user` (all columns except "
-"`Password`)</i>, <i>`mysql`.`db` (all columns)</i>, <i>`mysql`.`host` (all "
-"columns)</i> and <i>`mysql`.`tables_priv` (all columns except `Grantor` and "
-"`Timestamp`)</i> tables."
+"modes, phpMyAdmin needs a controluser that has <b>only</b> the <tt>SELECT</"
+"tt> privilege on the <i>`mysql`.`user` (all columns except `Password`)</i>, "
+"<i>`mysql`.`db` (all columns)</i>, <i>`mysql`.`host` (all columns)</i> and "
+"<i>`mysql`.`tables_priv` (all columns except `Grantor` and `Timestamp`)</i> "
+"tables."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:405
msgid ""
-"You must specify the details for the <a "
-"href=\"#controluser\">controluser</a> in the <tt>config.inc.php</tt> file "
-"under the <tt><a href=\"#cfg_Servers_controluser\" class=\"configrule\"> "
-"$cfg['Servers'][$i]['controluser']</a></tt> and <tt><a "
-"href=\"#cfg_Servers_controlpass\" class=\"configrule\"> "
-"$cfg['Servers'][$i]['controlpass']</a></tt> settings."
+"You must specify the details for the <a href=\"#controluser\">controluser</"
+"a> in the <tt>config.inc.php</tt> file under the <tt><a href="
+"\"#cfg_Servers_controluser\" class=\"configrule\"> $cfg['Servers'][$i]"
+"['controluser']</a></tt> and <tt><a href=\"#cfg_Servers_controlpass\" class="
+"\"configrule\"> $cfg['Servers'][$i]['controlpass']</a></tt> settings."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1010,12 +1004,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li><pre>
#: orig-docs/Documentation.html:437
#, no-wrap
-msgid ""
-"GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db>.* TO "
-"'pma'@'localhost';\n"
-msgstr ""
-"GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db>.* TO "
-"'pma'@'localhost';\n"
+msgid "GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db>.* TO 'pma'@'localhost';\n"
+msgstr "GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db>.* TO 'pma'@'localhost';\n"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:440
@@ -1028,8 +1018,8 @@ msgstr ""
#: orig-docs/Documentation.html:444
msgid ""
"Then each of the <i>true</i> users should be granted a set of privileges on "
-"a set of particular databases. Normally you shouldn't give global privileges"
-" to an ordinary user, unless you understand the impact of those privileges "
+"a set of particular databases. Normally you shouldn't give global privileges "
+"to an ordinary user, unless you understand the impact of those privileges "
"(for example, you are creating a superuser)."
msgstr ""
@@ -1043,18 +1033,14 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li><pre>
#: orig-docs/Documentation.html:452
#, no-wrap
-msgid ""
-"GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost IDENTIFIED BY "
-"'real_password';\n"
-msgstr ""
-"GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost IDENTIFIED BY "
-"'opravdové_heslo';\n"
+msgid "GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost IDENTIFIED BY 'real_password';\n"
+msgstr "GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost IDENTIFIED BY 'opravdové_heslo';\n"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:455
msgid ""
-"What the user may now do is controlled entirely by the MySQL user management"
-" system."
+"What the user may now do is controlled entirely by the MySQL user management "
+"system."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1068,11 +1054,10 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:463
msgid ""
-"'<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr>' authentication "
-"mode"
+"'<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr>' authentication mode"
msgstr ""
-"Přihlašování pomocí '<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr>' autentizace"
+"Přihlašování pomocí '<abbr title=\"HyperText Transfer Protocol\">HTTP</"
+"abbr>' autentizace"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:465
@@ -1085,22 +1070,21 @@ msgstr ""
#: orig-docs/Documentation.html:467
msgid ""
"Is supported with most PHP configurations. For <abbr title=\"Internet "
-"Information Services\">IIS</abbr> (<abbr title=\"Internet Server Application"
-" Programming Interface\">ISAPI</abbr>) support using <abbr title=\"Common "
-"Gateway Interface\">CGI</abbr> PHP see <a href=\"#faq1_32\"><abbr "
-"title=\"Frequently Asked Questions\">FAQ</abbr> 1.32</a>, for using with "
-"Apache <abbr title=\"Common Gateway Interface\">CGI</abbr> see <a "
-"href=\"#faq1_35\"><abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
-"1.35</a>."
+"Information Services\">IIS</abbr> (<abbr title=\"Internet Server Application "
+"Programming Interface\">ISAPI</abbr>) support using <abbr title=\"Common "
+"Gateway Interface\">CGI</abbr> PHP see <a href=\"#faq1_32\"><abbr title="
+"\"Frequently Asked Questions\">FAQ</abbr> 1.32</a>, for using with Apache "
+"<abbr title=\"Common Gateway Interface\">CGI</abbr> see <a href="
+"\"#faq1_35\"><abbr title=\"Frequently Asked Questions\">FAQ</abbr> 1.35</a>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:476
msgid ""
-"See also <a href=\"#faq4_4\"> <abbr title=\"Frequently Asked "
-"Questions\">FAQ</abbr> 4.4</a> about not using the <i>.htaccess</i> "
-"mechanism along with '<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr>' authentication mode."
+"See also <a href=\"#faq4_4\"> <abbr title=\"Frequently Asked Questions"
+"\">FAQ</abbr> 4.4</a> about not using the <i>.htaccess</i> mechanism along "
+"with '<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr>' "
+"authentication mode."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -1133,9 +1117,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:493
msgid ""
-"If you want to log in to arbitrary server see <a "
-"href=\"#AllowArbitraryServer\" class=\"configrule\"> "
-"$cfg['AllowArbitraryServer']</a> directive."
+"If you want to log in to arbitrary server see <a href=\"#AllowArbitraryServer"
+"\" class=\"configrule\"> $cfg['AllowArbitraryServer']</a> directive."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1160,15 +1143,13 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:505
-msgid ""
-"The other application has to store login information into session data."
+msgid "The other application has to store login information into session data."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:507
msgid ""
-"More details in the <a href=\"#cfg_Servers_auth_type\">auth_type</a> "
-"section."
+"More details in the <a href=\"#cfg_Servers_auth_type\">auth_type</a> section."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -1179,28 +1160,27 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:512
msgid ""
-"This mode is the less secure one because it requires you to fill the <a "
-"href=\"#servers_user\" class=\"configrule\"> $cfg['Servers'][$i]['user']</a>"
-" and <a href=\"#servers_user\" class=\"configrule\"> "
-"$cfg['Servers'][$i]['password']</a> fields (and as a result, anyone who can "
-"read your config.inc.php can discover your username and password)."
+"This mode is the less secure one because it requires you to fill the <a href="
+"\"#servers_user\" class=\"configrule\"> $cfg['Servers'][$i]['user']</a> and "
+"<a href=\"#servers_user\" class=\"configrule\"> $cfg['Servers'][$i]"
+"['password']</a> fields (and as a result, anyone who can read your config."
+"inc.php can discover your username and password)."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:519
msgid ""
"But you don't need to setup a "controluser" here: using the <a "
-"href=\"#servers_only_db\" class=\"configrule\"> "
-"$cfg['Servers'][$i]['only_db']</a> might be enough."
+"href=\"#servers_only_db\" class=\"configrule\"> $cfg['Servers'][$i]"
+"['only_db']</a> might be enough."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:522
msgid ""
-"In the <a href=\"#faqmultiuser\"> <abbr title=\"Internet service "
-"provider\">ISP</abbr> <abbr title=\"Frequently Asked "
-"Questions\">FAQ</abbr></a> section, there is an entry explaining how to "
-"protect your configuration file."
+"In the <a href=\"#faqmultiuser\"> <abbr title=\"Internet service provider"
+"\">ISP</abbr> <abbr title=\"Frequently Asked Questions\">FAQ</abbr></a> "
+"section, there is an entry explaining how to protect your configuration file."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -1208,18 +1188,18 @@ msgstr ""
msgid ""
"For additional security in this mode, you may wish to consider the Host "
"authentication <a href=\"#servers_allowdeny_order\" class=\"configrule\"> "
-"$cfg['Servers'][$i]['AllowDeny']['order']</a> and <a "
-"href=\"#servers_allowdeny_rules\" class=\"configrule\"> "
-"$cfg['Servers'][$i]['AllowDeny']['rules']</a> configuration directives."
+"$cfg['Servers'][$i]['AllowDeny']['order']</a> and <a href="
+"\"#servers_allowdeny_rules\" class=\"configrule\"> $cfg['Servers'][$i]"
+"['AllowDeny']['rules']</a> configuration directives."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:533
msgid ""
-"Unlike cookie and http, does not require a user to log in when first loading"
-" the phpMyAdmin site. This is by design but could allow any user to access "
-"your installation. Use of some restriction method is suggested, perhaps a <a"
-" href=\"#glossary\">.htaccess</a> file with the HTTP-AUTH directive or "
+"Unlike cookie and http, does not require a user to log in when first loading "
+"the phpMyAdmin site. This is by design but could allow any user to access "
+"your installation. Use of some restriction method is suggested, perhaps a <a "
+"href=\"#glossary\">.htaccess</a> file with the HTTP-AUTH directive or "
"disallowing incoming HTTP requests at one’s router or firewall will "
"suffice (both of which are beyond the scope of this manual but easily "
"searchable with Google)."
@@ -1241,8 +1221,8 @@ msgstr ""
#: orig-docs/Documentation.html:545
msgid ""
"When Swekey authentication is activated, phpMyAdmin requires the users's "
-"Swekey to be plugged before entering the login page (currently supported for"
-" cookie authentication mode only). Swekey Authentication is disabled by "
+"Swekey to be plugged before entering the login page (currently supported for "
+"cookie authentication mode only). Swekey Authentication is disabled by "
"default."
msgstr ""
@@ -1262,18 +1242,17 @@ msgstr "$cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey.conf';\n"
msgid ""
"You then have to create the <tt>swekey.conf</tt> file that will associate "
"each user with their Swekey Id. It is important to place this file outside "
-"of your web server's document root (in the example, it is located in "
-"<tt>/etc</tt>). A self documented sample file is provided in the "
-"<tt>contrib</tt> directory. Feel free to use it with your own users' "
-"information."
+"of your web server's document root (in the example, it is located in <tt>/"
+"etc</tt>). A self documented sample file is provided in the <tt>contrib</tt> "
+"directory. Feel free to use it with your own users' information."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:560
msgid ""
-"If you want to purchase a Swekey please visit <a "
-"href=\"http://phpmyadmin.net/auth_key\">http://phpmyadmin.net/auth_key</a> "
-"since this link provides funding for phpMyAdmin."
+"If you want to purchase a Swekey please visit <a href=\"http://phpmyadmin."
+"net/auth_key\">http://phpmyadmin.net/auth_key</a> since this link provides "
+"funding for phpMyAdmin."
msgstr ""
#. type: Content of: <html><body><div><h3>
@@ -1284,19 +1263,19 @@ msgstr "Nastavení"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:567
msgid ""
-"<span class=\"important\">Warning for <acronym title=\"Apple "
-"Macintosh\">Mac</acronym> users:</span> PHP does not seem to like <acronym "
-"title=\"Apple Macintosh\">Mac</acronym> end of lines character "
-"("<tt>\\r</tt>"). So ensure you choose the option that allows to "
-"use the *nix end of line character ("<tt>\\n</tt>") in your text "
-"editor before saving a script you have modified."
+"<span class=\"important\">Warning for <acronym title=\"Apple Macintosh"
+"\">Mac</acronym> users:</span> PHP does not seem to like <acronym title="
+"\"Apple Macintosh\">Mac</acronym> end of lines character ("<tt>\\r</"
+"tt>"). So ensure you choose the option that allows to use the *nix end "
+"of line character ("<tt>\\n</tt>") in your text editor before "
+"saving a script you have modified."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:574
msgid ""
-"<span class=\"important\">Configuration note:</span> Almost all configurable"
-" data is placed in <tt>config.inc.php</tt>. If this file does not exist, "
+"<span class=\"important\">Configuration note:</span> Almost all configurable "
+"data is placed in <tt>config.inc.php</tt>. If this file does not exist, "
"please refer to the <a href=\"#setup\">Quick install</a> section to create "
"one. This file only needs to contain the parameters you want to change from "
"their corresponding default value in <tt>libraries/config.default.php</tt>."
@@ -1305,10 +1284,10 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:581
msgid ""
-"The parameters which relate to design (like colors) are placed in "
-"<tt>themes/themename/layout.inc.php</tt>. You might also want to create "
-"<i>config.footer.inc.php</i> and <i>config.header.inc.php</i> files to add "
-"your site specific code to be included on start and end of each page."
+"The parameters which relate to design (like colors) are placed in <tt>themes/"
+"themename/layout.inc.php</tt>. You might also want to create <i>config."
+"footer.inc.php</i> and <i>config.header.inc.php</i> files to add your site "
+"specific code to be included on start and end of each page."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -1323,8 +1302,8 @@ msgid ""
"(with full path) to your phpMyAdmin installation's directory. E.g. "
"<tt>http://www.your_web.net/path_to_your_phpMyAdmin_directory/</tt>. Note "
"also that the <abbr title=\"Uniform Resource Locator\">URL</abbr> on some "
-"web servers are case–sensitive. Don’t forget the trailing slash"
-" at the end."
+"web servers are case–sensitive. Don’t forget the trailing slash "
+"at the end."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -1332,13 +1311,14 @@ msgstr ""
msgid ""
"Starting with version 2.3.0, it is advisable to try leaving this blank. In "
"most cases phpMyAdmin automatically detects the proper setting. Users of "
-"port forwarding will need to set PmaAbsoluteUri (<a "
-"href=\"https://sourceforge.net/tracker/index.php?func=detail&aid=1340187&g…">more"
-" info</a>). A good test is to browse a table, edit a row and save it. There"
-" should be an error message if phpMyAdmin is having trouble "
-"auto–detecting the correct value. If you get an error that this must "
-"be set or if the autodetect code fails to detect your path, please post a "
-"bug report on our bug tracker so we can improve the code."
+"port forwarding will need to set PmaAbsoluteUri (<a href=\"https://"
+"sourceforge.net/tracker/index.php?func=detail&aid=1340187&"
+"group_id=23067&atid=377409\">more info</a>). A good test is to browse a "
+"table, edit a row and save it. There should be an error message if "
+"phpMyAdmin is having trouble auto–detecting the correct value. If you "
+"get an error that this must be set or if the autodetect code fails to detect "
+"your path, please post a bug report on our bug tracker so we can improve the "
+"code."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -1349,18 +1329,17 @@ msgstr "$cfg['PmaNoRelation_DisableWarning'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:605
msgid ""
-"Starting with version 2.3.0 phpMyAdmin offers a lot of features to work with"
-" master / foreign – tables (see <a href=\"#pmadb\" "
-"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>)."
+"Starting with version 2.3.0 phpMyAdmin offers a lot of features to work with "
+"master / foreign – tables (see <a href=\"#pmadb\" class=\"configrule\">"
+"$cfg['Servers'][$i]['pmadb']</a>)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:609
msgid ""
-"If you tried to set this up and it does not work for you, have a look on the"
-" "Structure" page of one database where you would like to use it. "
-"You will find a link that will analyze why those features have been "
-"disabled."
+"If you tried to set this up and it does not work for you, have a look on the "
+""Structure" page of one database where you would like to use it. "
+"You will find a link that will analyze why those features have been disabled."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -1378,8 +1357,8 @@ msgstr "$cfg['SuhosinDisableWarning'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:617
msgid ""
-"A warning is displayed on the main page if Suhosin is detected. You can set"
-" this parameter to <tt>TRUE</tt> to stop this message from appearing."
+"A warning is displayed on the main page if Suhosin is detected. You can set "
+"this parameter to <tt>TRUE</tt> to stop this message from appearing."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -1413,8 +1392,8 @@ msgstr "$cfg['AllowThirdPartyFraming'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:631
msgid ""
-"Setting this to <tt>true</tt> allows a page located on a different domain to"
-" call phpMyAdmin inside a frame, and is a potential security hole allowing "
+"Setting this to <tt>true</tt> allows a page located on a different domain to "
+"call phpMyAdmin inside a frame, and is a potential security hole allowing "
"cross-frame scripting attacks."
msgstr ""
@@ -1456,17 +1435,16 @@ msgstr "$cfg['Servers'] pole"
#: orig-docs/Documentation.html:649
msgid ""
"Since version 1.4.2, phpMyAdmin supports the administration of multiple "
-"MySQL servers. Therefore, a <a href=\"#cfg_Servers\" "
-"class=\"configrule\">$cfg['Servers']</a>-array has been added which contains"
-" the login information for the different servers. The first <a "
-"href=\"#cfg_Servers_host\" "
-"class=\"configrule\">$cfg['Servers'][$i]['host']</a> contains the hostname "
-"of the first server, the second <a href=\"#cfg_Servers_host\" "
-"class=\"configrule\">$cfg['Servers'][$i]['host']</a> the hostname of the "
-"second server, etc. In <tt>./libraries/config.default.php</tt>, there is "
-"only one section for server definition, however you can put as many as you "
-"need in <tt>./config.inc.php</tt>, copy that block or needed parts (you "
-"don't have to define all settings, just those you need to change)."
+"MySQL servers. Therefore, a <a href=\"#cfg_Servers\" class=\"configrule\">"
+"$cfg['Servers']</a>-array has been added which contains the login "
+"information for the different servers. The first <a href=\"#cfg_Servers_host"
+"\" class=\"configrule\">$cfg['Servers'][$i]['host']</a> contains the "
+"hostname of the first server, the second <a href=\"#cfg_Servers_host\" class="
+"\"configrule\">$cfg['Servers'][$i]['host']</a> the hostname of the second "
+"server, etc. In <tt>./libraries/config.default.php</tt>, there is only one "
+"section for server definition, however you can put as many as you need in "
+"<tt>./config.inc.php</tt>, copy that block or needed parts (you don't have "
+"to define all settings, just those you need to change)."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -1493,8 +1471,8 @@ msgid ""
"If you use "localhost" as the hostname, MySQL ignores this port "
"number and connects with the socket, so if you want to connect to a port "
"different from the default port, use "127.0.0.1" or the real "
-"hostname in <a href=\"#cfg_Servers_host\" "
-"class=\"configrule\">$cfg['Servers'][$i]['host']</a>."
+"hostname in <a href=\"#cfg_Servers_host\" class=\"configrule\">$cfg"
+"['Servers'][$i]['host']</a>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -1534,16 +1512,16 @@ msgstr "$cfg['Servers'][$i]['connect_type'] text"
#: orig-docs/Documentation.html:687
msgid ""
"What type connection to use with the MySQL server. Your options are "
-"<tt>'socket'</tt> and <tt>'tcp'</tt>. It defaults to 'tcp' as that is nearly"
-" guaranteed to be available on all MySQL servers, while sockets are not "
+"<tt>'socket'</tt> and <tt>'tcp'</tt>. It defaults to 'tcp' as that is nearly "
+"guaranteed to be available on all MySQL servers, while sockets are not "
"supported on some platforms."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:692
msgid ""
-"To use the socket mode, your MySQL server must be on the same machine as the"
-" Web server."
+"To use the socket mode, your MySQL server must be on the same machine as the "
+"Web server."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -1559,15 +1537,15 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:699
msgid ""
-"<tt><i>mysql</i></tt> : The classic MySQL extension. This is the recommended"
-" and default method at this time."
+"<tt><i>mysql</i></tt> : The classic MySQL extension. This is the recommended "
+"and default method at this time."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:703
msgid ""
-"<tt><i>mysqli</i></tt> : The improved MySQL extension. This extension became"
-" available with php 5.0.0 and is the recommended way to connect to a server "
+"<tt><i>mysqli</i></tt> : The improved MySQL extension. This extension became "
+"available with php 5.0.0 and is the recommended way to connect to a server "
"running MySQL 4.1.x or newer."
msgstr ""
@@ -1591,47 +1569,42 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:714
msgid ""
-"<span "
-"id=\"cfg_Servers_controluser\">$cfg['Servers'][$i]['controluser']</span> "
-"string"
+"<span id=\"cfg_Servers_controluser\">$cfg['Servers'][$i]['controluser']</"
+"span> string"
msgstr ""
-"<span "
-"id=\"cfg_Servers_controluser\">$cfg['Servers'][$i]['controluser']</span> "
-"text"
+"<span id=\"cfg_Servers_controluser\">$cfg['Servers'][$i]['controluser']</"
+"span> text"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:715
msgid ""
-"<span "
-"id=\"cfg_Servers_controlpass\">$cfg['Servers'][$i]['controlpass']</span> "
-"string"
+"<span id=\"cfg_Servers_controlpass\">$cfg['Servers'][$i]['controlpass']</"
+"span> string"
msgstr ""
-"<span "
-"id=\"cfg_Servers_controlpass\">$cfg['Servers'][$i]['controlpass']</span> "
-"text"
+"<span id=\"cfg_Servers_controlpass\">$cfg['Servers'][$i]['controlpass']</"
+"span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:717
msgid ""
"This special account is used for 2 distinct purposes: to make possible all "
-"relational features (see <a href=\"#pmadb\" "
-"class=\"configrule\">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL "
-"server running with <tt>--skip-show-database</tt>, to enable a multi-user "
-"installation (<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or "
-"cookie authentication mode)."
+"relational features (see <a href=\"#pmadb\" class=\"configrule\">$cfg"
+"['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--"
+"skip-show-database</tt>, to enable a multi-user installation (<abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> or cookie authentication mode)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:725
msgid ""
-"When using <abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or cookie"
-" authentication modes (or 'config' authentication mode since phpMyAdmin "
+"When using <abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or cookie "
+"authentication modes (or 'config' authentication mode since phpMyAdmin "
"2.2.1), you need to supply the details of a MySQL account that has "
-"<tt>SELECT</tt> privilege on the <i>mysql.user (all columns except "
-""Password")</i>, <i>mysql.db (all columns)</i> and "
-"<i>mysql.tables_priv (all columns except "Grantor" and "
-""Timestamp") </i>tables. This account is used to check what "
-"databases the user will see at login."
+"<tt>SELECT</tt> privilege on the <i>mysql.user (all columns except ""
+"Password")</i>, <i>mysql.db (all columns)</i> and <i>mysql.tables_priv "
+"(all columns except "Grantor" and "Timestamp") </"
+"i>tables. This account is used to check what databases the user will see at "
+"login."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -1644,8 +1617,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:737
msgid ""
-"In phpMyAdmin versions before 2.2.5, those were called "
-""stduser/stdpass"."
+"In phpMyAdmin versions before 2.2.5, those were called "stduser/"
+"stdpass"."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -1660,9 +1633,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:742
msgid ""
-"Whether config or cookie or <abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> or signon authentication should be used for this "
-"server."
+"Whether config or cookie or <abbr title=\"HyperText Transfer Protocol"
+"\">HTTP</abbr> or signon authentication should be used for this server."
msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
@@ -1678,9 +1650,9 @@ msgid ""
"'cookie' authentication mode (<tt>$auth_type = 'cookie'</tt>) as "
"introduced in 2.2.3 allows you to log in as any valid MySQL user with the "
"help of cookies. Username and password are stored in cookies during the "
-"session and password is deleted when it ends. This can also allow you to log"
-" in in arbitrary server if <tt><a href=\"#AllowArbitraryServer\" "
-"class=\"configrule\">$cfg['AllowArbitraryServer']</a></tt> enabled."
+"session and password is deleted when it ends. This can also allow you to log "
+"in in arbitrary server if <tt><a href=\"#AllowArbitraryServer\" class="
+"\"configrule\">$cfg['AllowArbitraryServer']</a></tt> enabled."
msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
@@ -1689,8 +1661,8 @@ msgid ""
"'<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr>' authentication "
"(was called 'advanced' in previous versions and can be written also as "
"'http') (<tt>$auth_type = '<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr>'</tt>) as introduced in 1.3.0 allows you to log in as"
-" any valid MySQL user via HTTP-Auth."
+"Protocol\">HTTP</abbr>'</tt>) as introduced in 1.3.0 allows you to log in as "
+"any valid MySQL user via HTTP-Auth."
msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
@@ -1699,55 +1671,50 @@ msgid ""
"'signon' authentication mode (<tt>$auth_type = 'signon'</tt>) as "
"introduced in 2.10.0 allows you to log in from prepared PHP session data. "
"This is useful for implementing single signon from another application. "
-"Sample way how to seed session is in signon example: "
-"<code>scripts/signon.php</code>. There is also alternative example using "
-"OpenID - <code>scripts/openid.php</code>. You need to configure <a "
-"href=\"#cfg_Servers_SignonSession\" class=\"configrule\">session name</a> "
-"and <a href=\"#cfg_Servers_SignonURL\" class=\"configrule\">signon URL</a> "
-"to use this authentication method."
+"Sample way how to seed session is in signon example: <code>scripts/signon."
+"php</code>. There is also alternative example using OpenID - <code>scripts/"
+"openid.php</code>. You need to configure <a href="
+"\"#cfg_Servers_SignonSession\" class=\"configrule\">session name</a> and <a "
+"href=\"#cfg_Servers_SignonURL\" class=\"configrule\">signon URL</a> to use "
+"this authentication method."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:777
msgid ""
-"<span "
-"id=\"cfg_Servers_auth_http_realm\">$cfg['Servers'][$i]['auth_http_realm']</span>"
-" string"
+"<span id=\"cfg_Servers_auth_http_realm\">$cfg['Servers'][$i]"
+"['auth_http_realm']</span> string"
msgstr ""
-"<span "
-"id=\"cfg_Servers_auth_http_realm\">$cfg['Servers'][$i]['auth_http_realm']</span>"
-" text"
+"<span id=\"cfg_Servers_auth_http_realm\">$cfg['Servers'][$i]"
+"['auth_http_realm']</span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:780
msgid ""
-"When using auth_type = '<abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr>', this field allows to define a custom <abbr "
-"title=\"HyperText Transfer Protocol\">HTTP</abbr> Basic Auth Realm which "
-"will be displayed to the user. If not explicitly specified in your "
-"configuration, a string combined of \"phpMyAdmin \" and either <a "
-"href=\"#cfg_Servers_verbose\" "
-"class=\"configrule\">$cfg['Servers'][$i]['verbose']</a> or <a "
-"href=\"#cfg_Servers_host\" "
-"class=\"configrule\">$cfg['Servers'][$i]['host']</a> will be used."
+"When using auth_type = '<abbr title=\"HyperText Transfer Protocol\">HTTP</"
+"abbr>', this field allows to define a custom <abbr title=\"HyperText "
+"Transfer Protocol\">HTTP</abbr> Basic Auth Realm which will be displayed to "
+"the user. If not explicitly specified in your configuration, a string "
+"combined of \"phpMyAdmin \" and either <a href=\"#cfg_Servers_verbose\" "
+"class=\"configrule\">$cfg['Servers'][$i]['verbose']</a> or <a href="
+"\"#cfg_Servers_host\" class=\"configrule\">$cfg['Servers'][$i]['host']</a> "
+"will be used."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:787
msgid ""
-"<span "
-"id=\"cfg_Servers_auth_swekey_config\">$cfg['Servers'][$i]['auth_swekey_config']</span>"
-" string"
+"<span id=\"cfg_Servers_auth_swekey_config\">$cfg['Servers'][$i]"
+"['auth_swekey_config']</span> string"
msgstr ""
-"<span "
-"id=\"cfg_Servers_auth_swekey_config\">$cfg['Servers'][$i]['auth_swekey_config']</span>"
-" text"
+"<span id=\"cfg_Servers_auth_swekey_config\">$cfg['Servers'][$i]"
+"['auth_swekey_config']</span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:790
msgid ""
-"The name of the file containing <a href=\"#swekey\">Swekey</a> ids and login"
-" names for hardware authentication. Leave empty to deactivate this feature."
+"The name of the file containing <a href=\"#swekey\">Swekey</a> ids and login "
+"names for hardware authentication. Leave empty to deactivate this feature."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -1761,8 +1728,7 @@ msgid ""
"<span id=\"cfg_Servers_password\">$cfg['Servers'][$i]['password']</span> "
"string"
msgstr ""
-"<span id=\"cfg_Servers_password\">$cfg['Servers'][$i]['password']</span> "
-"text"
+"<span id=\"cfg_Servers_password\">$cfg['Servers'][$i]['password']</span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:798
@@ -1776,11 +1742,11 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:803
msgid ""
-"<span id=\"cfg_Servers_nopassword\">$cfg['Servers'][$i]['nopassword']</span>"
-" boolean"
+"<span id=\"cfg_Servers_nopassword\">$cfg['Servers'][$i]['nopassword']</span> "
+"boolean"
msgstr ""
-"<span id=\"cfg_Servers_nopassword\">$cfg['Servers'][$i]['nopassword']</span>"
-" boolean"
+"<span id=\"cfg_Servers_nopassword\">$cfg['Servers'][$i]['nopassword']</span> "
+"boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:807
@@ -1806,9 +1772,9 @@ msgstr ""
msgid ""
"If set to a (an array of) database name(s), only this (these) database(s) "
"will be shown to the user. Since phpMyAdmin 2.2.1, this/these database(s) "
-"name(s) may contain MySQL wildcards characters ("_" and "
-""%"): if you want to use literal instances of these characters, "
-"escape them (I.E. use <tt>'my\\_db'</tt> and not <tt>'my_db'</tt>)."
+"name(s) may contain MySQL wildcards characters ("_" and ""
+"%"): if you want to use literal instances of these characters, escape "
+"them (I.E. use <tt>'my\\_db'</tt> and not <tt>'my_db'</tt>)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -1817,16 +1783,16 @@ msgid ""
"This setting is an efficient way to lower the server load since the latter "
"does not need to send MySQL requests to build the available database list. "
"But <span class=\"important\">it does not replace the privileges rules of "
-"the MySQL database server</span>. If set, it just means only these databases"
-" will be displayed but <span class=\"important\">not that all other "
-"databases can't be used.</span>"
+"the MySQL database server</span>. If set, it just means only these databases "
+"will be displayed but <span class=\"important\">not that all other databases "
+"can't be used.</span>"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:831
msgid ""
-"An example of using more that one database: "
-"<tt>$cfg['Servers'][$i]['only_db'] = array('db1', 'db2');</tt>"
+"An example of using more that one database: <tt>$cfg['Servers'][$i]"
+"['only_db'] = array('db1', 'db2');</tt>"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -1841,17 +1807,16 @@ msgstr ""
#: orig-docs/Documentation.html:837
msgid ""
"If you want to have certain databases at the top, but don't care about the "
-"others, you do not need to specify all other databases. Use: "
-"<tt>$cfg['Servers'][$i]['only_db'] = array('db3', 'db4', '*');</tt> instead "
-"to tell phpMyAdmin that it should display db3 and db4 on top, and the rest "
-"in alphabetic order."
+"others, you do not need to specify all other databases. Use: <tt>$cfg"
+"['Servers'][$i]['only_db'] = array('db3', 'db4', '*');</tt> instead to tell "
+"phpMyAdmin that it should display db3 and db4 on top, and the rest in "
+"alphabetic order."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:843
msgid ""
-"<span id=\"cfg_Servers_hide_db\">$cfg['Servers'][$i]['hide_db']</span> "
-"string"
+"<span id=\"cfg_Servers_hide_db\">$cfg['Servers'][$i]['hide_db']</span> string"
msgstr ""
"<span id=\"cfg_Servers_hide_db\">$cfg['Servers'][$i]['hide_db']</span> text"
@@ -1890,9 +1855,9 @@ msgstr "$cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$';"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:854
msgid ""
-"More information on regular expressions can be found in the <a "
-"href=\"http://php.net/manual/en/reference.pcre.pattern.syntax.php\"> PCRE "
-"pattern syntax</a> portion of the PHP reference manual."
+"More information on regular expressions can be found in the <a href=\"http://"
+"php.net/manual/en/reference.pcre.pattern.syntax.php\"> PCRE pattern syntax</"
+"a> portion of the PHP reference manual."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -1903,17 +1868,19 @@ msgstr "$cfg['Servers'][$i]['verbose'] text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:860
msgid ""
-"Only useful when using phpMyAdmin with multiple server entries. If set, this"
-" string will be displayed instead of the hostname in the pull-down menu on "
-"the main page. This can be useful if you want to show only certain databases"
-" on your system, for example. For HTTP auth, all non-US-ASCII characters "
-"will be stripped."
+"Only useful when using phpMyAdmin with multiple server entries. If set, this "
+"string will be displayed instead of the hostname in the pull-down menu on "
+"the main page. This can be useful if you want to show only certain databases "
+"on your system, for example. For HTTP auth, all non-US-ASCII characters will "
+"be stripped."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:867
-msgid "<span id=\"cfg_Servers_pmadb\">$cfg['Servers'][$i]['pmadb']</span> string"
-msgstr "<span id=\"cfg_Servers_pmadb\">$cfg['Servers'][$i]['pmadb']</span> text"
+msgid ""
+"<span id=\"cfg_Servers_pmadb\">$cfg['Servers'][$i]['pmadb']</span> string"
+msgstr ""
+"<span id=\"cfg_Servers_pmadb\">$cfg['Servers'][$i]['pmadb']</span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:869
@@ -1942,19 +1909,17 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:885
msgid ""
-"<span "
-"id=\"cfg_Servers_bookmarktable\">$cfg['Servers'][$i]['bookmarktable']</span>"
-" string"
+"<span id=\"cfg_Servers_bookmarktable\">$cfg['Servers'][$i]['bookmarktable']</"
+"span> string"
msgstr ""
-"<span "
-"id=\"cfg_Servers_bookmarktable\">$cfg['Servers'][$i]['bookmarktable']</span>"
-" text"
+"<span id=\"cfg_Servers_bookmarktable\">$cfg['Servers'][$i]['bookmarktable']</"
+"span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:887
msgid ""
-"Since release 2.2.0 phpMyAdmin allows users to bookmark queries. This can be"
-" useful for queries you often run."
+"Since release 2.2.0 phpMyAdmin allows users to bookmark queries. This can be "
+"useful for queries you often run."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -1988,8 +1953,7 @@ msgid ""
"<span id=\"cfg_Servers_relation\">$cfg['Servers'][$i]['relation']</span> "
"string"
msgstr ""
-"<span id=\"cfg_Servers_relation\">$cfg['Servers'][$i]['relation']</span> "
-"text"
+"<span id=\"cfg_Servers_relation\">$cfg['Servers'][$i]['relation']</span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:900
@@ -2002,16 +1966,16 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:903
msgid ""
-"make clickable, when you browse the master table, the data values that point"
-" to the foreign table;"
+"make clickable, when you browse the master table, the data values that point "
+"to the foreign table;"
msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:905
msgid ""
-"display in an optional tool-tip the "display column" when browsing"
-" the master table, if you move the mouse to a column containing a foreign "
-"key (use also the 'table_info' table);"
+"display in an optional tool-tip the "display column" when browsing "
+"the master table, if you move the mouse to a column containing a foreign key "
+"(use also the 'table_info' table);"
msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
@@ -2031,8 +1995,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:912
msgid ""
-"(see <a href=\"#faq6_21\"><abbr title=\"Frequently Asked Questions\"> "
-"FAQ</abbr> 6.21</a>)"
+"(see <a href=\"#faq6_21\"><abbr title=\"Frequently Asked Questions\"> FAQ</"
+"abbr> 6.21</a>)"
msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
@@ -2063,40 +2027,39 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:929
-msgid ""
-"put the relation table name in <tt>$cfg['Servers'][$i]['relation']</tt>"
+msgid "put the relation table name in <tt>$cfg['Servers'][$i]['relation']</tt>"
msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:931
msgid ""
-"now as normal user open phpMyAdmin and for each one of your tables where you"
-" want to use this feature, click "Structure/Relation view/" and "
+"now as normal user open phpMyAdmin and for each one of your tables where you "
+"want to use this feature, click "Structure/Relation view/" and "
"choose foreign columns."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:938
msgid ""
-"Please note that in the current version, <tt>master_db</tt> must be the same"
-" as <tt>foreign_db</tt>. Those columns have been put in future development "
-"of the cross-db relations."
+"Please note that in the current version, <tt>master_db</tt> must be the same "
+"as <tt>foreign_db</tt>. Those columns have been put in future development of "
+"the cross-db relations."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:944
msgid ""
-"<span id=\"cfg_Servers_table_info\">$cfg['Servers'][$i]['table_info']</span>"
-" string"
+"<span id=\"cfg_Servers_table_info\">$cfg['Servers'][$i]['table_info']</span> "
+"string"
msgstr ""
-"<span id=\"cfg_Servers_table_info\">$cfg['Servers'][$i]['table_info']</span>"
-" text"
+"<span id=\"cfg_Servers_table_info\">$cfg['Servers'][$i]['table_info']</span> "
+"text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:947
msgid ""
-"Since release 2.3.0 you can describe, in a special 'table_info' table, which"
-" column is to be displayed as a tool-tip when moving the cursor over the "
+"Since release 2.3.0 you can describe, in a special 'table_info' table, which "
+"column is to be displayed as a tool-tip when moving the cursor over the "
"corresponding key."
msgstr ""
@@ -2117,9 +2080,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:956
msgid ""
-"then for each table where you want to use this feature, click "
-""Structure/Relation view/Choose column to display" to choose the "
-"column."
+"then for each table where you want to use this feature, click ""
+"Structure/Relation view/Choose column to display" to choose the column."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2130,13 +2092,11 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:963
msgid ""
-"<span "
-"id=\"cfg_Servers_table_coords\">$cfg['Servers'][$i]['table_coords']</span> "
-"string"
+"<span id=\"cfg_Servers_table_coords\">$cfg['Servers'][$i]['table_coords']</"
+"span> string"
msgstr ""
-"<span "
-"id=\"cfg_Servers_table_coords\">$cfg['Servers'][$i]['table_coords']</span> "
-"text"
+"<span id=\"cfg_Servers_table_coords\">$cfg['Servers'][$i]['table_coords']</"
+"span> text"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:964
@@ -2153,10 +2113,10 @@ msgid ""
"Since release 2.3.0 you can have phpMyAdmin create <abbr title=\"Portable "
"Document Format\">PDF</abbr> pages showing the relations between your "
"tables. To do this it needs two tables "pdf_pages" (storing "
-"information about the available <abbr title=\"Portable Document "
-"Format\">PDF</abbr> pages) and "table_coords" (storing coordinates"
-" where each table will be placed on a <abbr title=\"Portable Document "
-"Format\">PDF</abbr> schema output)."
+"information about the available <abbr title=\"Portable Document Format"
+"\">PDF</abbr> pages) and "table_coords" (storing coordinates where "
+"each table will be placed on a <abbr title=\"Portable Document Format\">PDF</"
+"abbr> schema output)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2174,22 +2134,20 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:985
msgid ""
-"Usage tips: <a href=\"#faqpdf\"><abbr title=\"Portable Document "
-"Format\">PDF</abbr> output</a>."
+"Usage tips: <a href=\"#faqpdf\"><abbr title=\"Portable Document Format"
+"\">PDF</abbr> output</a>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:989
msgid ""
-"<span "
-"id=\"cfg_Servers_column_info\">$cfg['Servers'][$i]['column_info']</span> "
-"string"
+"<span id=\"cfg_Servers_column_info\">$cfg['Servers'][$i]['column_info']</"
+"span> string"
msgstr ""
-"<span "
-"id=\"cfg_Servers_column_info\">$cfg['Servers'][$i]['column_info']</span> "
-"text"
+"<span id=\"cfg_Servers_column_info\">$cfg['Servers'][$i]['column_info']</"
+"span> text"
-#. This part requires a content update!
+#. This part requires a content update!
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:992
msgid ""
@@ -2203,8 +2161,8 @@ msgid ""
"Starting with release 2.5.0, comments are consequently used on the table "
"property pages and table browse view, showing up as tool-tips above the "
"column name (properties page) or embedded within the header of table in "
-"browse view. They can also be shown in a table dump. Please see the relevant"
-" configuration directives later on."
+"browse view. They can also be shown in a table dump. Please see the relevant "
+"configuration directives later on."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2213,8 +2171,8 @@ msgid ""
"Also new in release 2.5.0 is a MIME-transformation system which is also "
"based on the following table structure. See <a href=\"#transformations\"> "
"Transformations</a> for further information. To use the MIME-transformation "
-"system, your column_info table has to have the three new columns 'mimetype',"
-" 'transformation', 'transformation_options'."
+"system, your column_info table has to have the three new columns 'mimetype', "
+"'transformation', 'transformation_options'."
msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
@@ -2246,24 +2204,22 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1023
msgid ""
-"and remember that the Variable in <i>config.inc.php</i> has been renamed "
-"from"
+"and remember that the Variable in <i>config.inc.php</i> has been renamed from"
msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1025
msgid ""
-"<tt>$cfg['Servers'][$i]['column_comments']</tt> to "
-"<tt>$cfg['Servers'][$i]['column_info']</tt>"
+"<tt>$cfg['Servers'][$i]['column_comments']</tt> to <tt>$cfg['Servers'][$i]"
+"['column_info']</tt>"
msgstr ""
-"<tt>$cfg['Servers'][$i]['column_comments']</tt> na "
-"<tt>$cfg['Servers'][$i]['column_info']</tt>"
+"<tt>$cfg['Servers'][$i]['column_comments']</tt> na <tt>$cfg['Servers'][$i]"
+"['column_info']</tt>"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1031
msgid ""
-"<span id=\"cfg_Servers_history\">$cfg['Servers'][$i]['history']</span> "
-"string"
+"<span id=\"cfg_Servers_history\">$cfg['Servers'][$i]['history']</span> string"
msgstr ""
"<span id=\"cfg_Servers_history\">$cfg['Servers'][$i]['history']</span> text"
@@ -2280,17 +2236,15 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1040
msgid ""
-"Using <a href=\"#cfg_QueryHistoryMax\" "
-"class=\"configrule\">$cfg['QueryHistoryMax']</a> you can specify an amount "
-"of history items you want to have on hold. On every login, this list gets "
-"cut to the maximum amount."
+"Using <a href=\"#cfg_QueryHistoryMax\" class=\"configrule\">$cfg"
+"['QueryHistoryMax']</a> you can specify an amount of history items you want "
+"to have on hold. On every login, this list gets cut to the maximum amount."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1045
msgid ""
-"The query history is only available if JavaScript is enabled in your "
-"browser."
+"The query history is only available if JavaScript is enabled in your browser."
msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
@@ -2304,20 +2258,20 @@ msgstr ""
#: orig-docs/Documentation.html:1058
msgid ""
"<span id=\"cfg_Servers_recent\">$cfg['Servers'][$i]['recent']</span> string"
-msgstr "<span id=\"cfg_Servers_recent\">$cfg['Servers'][$i]['recent']</span> text"
+msgstr ""
+"<span id=\"cfg_Servers_recent\">$cfg['Servers'][$i]['recent']</span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1061
msgid ""
-"Since release 3.5.0 you can show recently used tables in the left navigation"
-" frame. It helps you to jump across table directly, without the need to "
-"select the database, and then select the table. Using <a "
-"href=\"#cfg_LeftRecentTable\" "
-"class=\"configrule\">$cfg['LeftRecentTable']</a> you can configure the "
-"maximum number of recent tables shown. When you select a table from the "
-"list, it will jump to the page specified in <a "
-"href=\"#cfg_LeftDefaultTabTable\" "
-"class=\"configrule\">$cfg['LeftDefaultTabTable']</a>."
+"Since release 3.5.0 you can show recently used tables in the left navigation "
+"frame. It helps you to jump across table directly, without the need to "
+"select the database, and then select the table. Using <a href="
+"\"#cfg_LeftRecentTable\" class=\"configrule\">$cfg['LeftRecentTable']</a> "
+"you can configure the maximum number of recent tables shown. When you select "
+"a table from the list, it will jump to the page specified in <a href="
+"\"#cfg_LeftDefaultTabTable\" class=\"configrule\">$cfg['LeftDefaultTabTable']"
+"</a>."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2337,22 +2291,20 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1081
msgid ""
-"<span "
-"id=\"cfg_Servers_table_uiprefs\">$cfg['Servers'][$i]['table_uiprefs']</span>"
-" string"
+"<span id=\"cfg_Servers_table_uiprefs\">$cfg['Servers'][$i]['table_uiprefs']</"
+"span> string"
msgstr ""
-"<span "
-"id=\"cfg_Servers_table_uiprefs\">$cfg['Servers'][$i]['table_uiprefs']</span>"
-" text"
+"<span id=\"cfg_Servers_table_uiprefs\">$cfg['Servers'][$i]['table_uiprefs']</"
+"span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1084
msgid ""
"Since release 3.5.0 phpMyAdmin can be configured to remember several things "
-"(table sorting <a href=\"#cfg_RememberSorting\" "
-"class=\"configrule\">$cfg['RememberSorting']</a> , etc.) for browsing "
-"tables. Without configuring the storage, these features still can be used, "
-"but the values will disappear after you logout."
+"(table sorting <a href=\"#cfg_RememberSorting\" class=\"configrule\">$cfg"
+"['RememberSorting']</a> , etc.) for browsing tables. Without configuring "
+"the storage, these features still can be used, but the values will disappear "
+"after you logout."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2373,8 +2325,7 @@ msgid ""
"<span id=\"cfg_Servers_tracking\">$cfg['Servers'][$i]['tracking']</span> "
"string"
msgstr ""
-"<span id=\"cfg_Servers_tracking\">$cfg['Servers'][$i]['tracking']</span> "
-"text"
+"<span id=\"cfg_Servers_tracking\">$cfg['Servers'][$i]['tracking']</span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1103
@@ -2410,9 +2361,9 @@ msgid ""
"Of course you can view the tracked changes. On the \"Tracking\" page a "
"complete report is available for every version. For the report you can use "
"filters, for example you can get a list of statements within a date range. "
-"When you want to filter usernames you can enter * for all names or you enter"
-" a list of names separated by ','. In addition you can export the "
-"(filtered) report to a file or to a temporary database."
+"When you want to filter usernames you can enter * for all names or you enter "
+"a list of names separated by ','. In addition you can export the (filtered) "
+"report to a file or to a temporary database."
msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
@@ -2425,13 +2376,11 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1130
msgid ""
-"<span "
-"id=\"cfg_Servers_tracking_version_auto_create\">$cfg['Servers'][$i]['tracking_version_auto_create']</span>"
-" boolean"
+"<span id=\"cfg_Servers_tracking_version_auto_create\">$cfg['Servers'][$i]"
+"['tracking_version_auto_create']</span> boolean"
msgstr ""
-"<span "
-"id=\"cfg_Servers_tracking_version_auto_create\">$cfg['Servers'][$i]['tracking_version_auto_create']</span>"
-" boolean"
+"<span id=\"cfg_Servers_tracking_version_auto_create\">$cfg['Servers'][$i]"
+"['tracking_version_auto_create']</span> boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1133
@@ -2465,13 +2414,11 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1147
msgid ""
-"<span "
-"id=\"cfg_Servers_tracking_default_statements\">$cfg['Servers'][$i]['tracking_default_statements']</span>"
-" string"
+"<span id=\"cfg_Servers_tracking_default_statements\">$cfg['Servers'][$i]"
+"['tracking_default_statements']</span> string"
msgstr ""
-"<span "
-"id=\"cfg_Servers_tracking_default_statements\">$cfg['Servers'][$i]['tracking_default_statements']</span>"
-" text"
+"<span id=\"cfg_Servers_tracking_default_statements\">$cfg['Servers'][$i]"
+"['tracking_default_statements']</span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1150
@@ -2499,13 +2446,11 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1161
msgid ""
-"<span "
-"id=\"cfg_Servers_tracking_add_drop_view\">$cfg['Servers'][$i]['tracking_add_drop_view']</span>"
-" boolean"
+"<span id=\"cfg_Servers_tracking_add_drop_view\">$cfg['Servers'][$i]"
+"['tracking_add_drop_view']</span> boolean"
msgstr ""
-"<span "
-"id=\"cfg_Servers_tracking_add_drop_view\">$cfg['Servers'][$i]['tracking_add_drop_view']</span>"
-" boolean"
+"<span id=\"cfg_Servers_tracking_add_drop_view\">$cfg['Servers'][$i]"
+"['tracking_add_drop_view']</span> boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1164
@@ -2517,13 +2462,11 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1170
msgid ""
-"<span "
-"id=\"cfg_Servers_tracking_add_drop_table\">$cfg['Servers'][$i]['tracking_add_drop_table']</span>"
-" boolean"
+"<span id=\"cfg_Servers_tracking_add_drop_table\">$cfg['Servers'][$i]"
+"['tracking_add_drop_table']</span> boolean"
msgstr ""
-"<span "
-"id=\"cfg_Servers_tracking_add_drop_table\">$cfg['Servers'][$i]['tracking_add_drop_table']</span>"
-" boolean"
+"<span id=\"cfg_Servers_tracking_add_drop_table\">$cfg['Servers'][$i]"
+"['tracking_add_drop_table']</span> boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1173
@@ -2535,13 +2478,11 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1178
msgid ""
-"<span "
-"id=\"cfg_Servers_tracking_add_drop_database\">$cfg['Servers'][$i]['tracking_add_drop_database']</span>"
-" boolean"
+"<span id=\"cfg_Servers_tracking_add_drop_database\">$cfg['Servers'][$i]"
+"['tracking_add_drop_database']</span> boolean"
msgstr ""
-"<span "
-"id=\"cfg_Servers_tracking_add_drop_database\">$cfg['Servers'][$i]['tracking_add_drop_database']</span>"
-" boolean"
+"<span id=\"cfg_Servers_tracking_add_drop_database\">$cfg['Servers'][$i]"
+"['tracking_add_drop_database']</span> boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1181
@@ -2553,11 +2494,11 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1186
msgid ""
-"<span id=\"cfg_Servers_userconfig\">$cfg['Servers'][$i]['userconfig']</span>"
-" string"
+"<span id=\"cfg_Servers_userconfig\">$cfg['Servers'][$i]['userconfig']</span> "
+"string"
msgstr ""
-"<span id=\"cfg_Servers_userconfig\">$cfg['Servers'][$i]['userconfig']</span>"
-" text"
+"<span id=\"cfg_Servers_userconfig\">$cfg['Servers'][$i]['userconfig']</span> "
+"text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1189
@@ -2582,13 +2523,11 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1208
msgid ""
-"<span "
-"id=\"cfg_Servers_designer_coords\">$cfg['Servers'][$i]['designer_coords']</span>"
-" string"
+"<span id=\"cfg_Servers_designer_coords\">$cfg['Servers'][$i]"
+"['designer_coords']</span> string"
msgstr ""
-"<span "
-"id=\"cfg_Servers_designer_coords\">$cfg['Servers'][$i]['designer_coords']</span>"
-" text"
+"<span id=\"cfg_Servers_designer_coords\">$cfg['Servers'][$i]"
+"['designer_coords']</span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1210
@@ -2607,20 +2546,18 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1222
msgid ""
-"<span "
-"id=\"cfg_Servers_verbose_check\">$cfg['Servers'][$i]['verbose_check']</span>"
-" boolean"
+"<span id=\"cfg_Servers_verbose_check\">$cfg['Servers'][$i]['verbose_check']</"
+"span> boolean"
msgstr ""
-"<span "
-"id=\"cfg_Servers_verbose_check\">$cfg['Servers'][$i]['verbose_check']</span>"
-" boolean"
+"<span id=\"cfg_Servers_verbose_check\">$cfg['Servers'][$i]['verbose_check']</"
+"span> boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1224
msgid ""
"Because release 2.5.0 introduced the new MIME-transformation support, the "
-"column_info table got enhanced with three new columns. If the above variable"
-" is set to <tt>TRUE</tt> (default) phpMyAdmin will check if you have the "
+"column_info table got enhanced with three new columns. If the above variable "
+"is set to <tt>TRUE</tt> (default) phpMyAdmin will check if you have the "
"latest table structure available. If not, it will emit a warning to the "
"superuser."
msgstr ""
@@ -2658,39 +2595,35 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1239
msgid ""
-"<span "
-"id=\"cfg_Servers_AllowNoPassword\">$cfg['Servers'][$i]['AllowNoPassword']</span>"
-" boolean"
+"<span id=\"cfg_Servers_AllowNoPassword\">$cfg['Servers'][$i]"
+"['AllowNoPassword']</span> boolean"
msgstr ""
-"<span "
-"id=\"cfg_Servers_AllowNoPassword\">$cfg['Servers'][$i]['AllowNoPassword']</span>"
-" boolean"
+"<span id=\"cfg_Servers_AllowNoPassword\">$cfg['Servers'][$i]"
+"['AllowNoPassword']</span> boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1241
msgid ""
-"Whether to allow logins without a password. The default value of "
-"<tt>false</tt> for this parameter prevents unintended access to a MySQL "
-"server with was left with an empty password for root or on which an "
-"anonymous (blank) user is defined."
+"Whether to allow logins without a password. The default value of <tt>false</"
+"tt> for this parameter prevents unintended access to a MySQL server with was "
+"left with an empty password for root or on which an anonymous (blank) user "
+"is defined."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1247
msgid ""
-"<span "
-"id=\"cfg_Servers_AllowDeny_order\">$cfg['Servers'][$i]['AllowDeny']['order']</span>"
-" string"
+"<span id=\"cfg_Servers_AllowDeny_order\">$cfg['Servers'][$i]['AllowDeny']"
+"['order']</span> string"
msgstr ""
-"<span "
-"id=\"cfg_Servers_AllowDeny_order\">$cfg['Servers'][$i]['AllowDeny']['order']</span>"
-" text"
+"<span id=\"cfg_Servers_AllowDeny_order\">$cfg['Servers'][$i]['AllowDeny']"
+"['order']</span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1249
msgid ""
-"If your rule order is empty, then <abbr title=\"Internet "
-"Protocol\">IP</abbr> authorization is disabled."
+"If your rule order is empty, then <abbr title=\"Internet Protocol\">IP</"
+"abbr> authorization is disabled."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2732,13 +2665,11 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1275
msgid ""
-"<span "
-"id=\"cfg_Servers_AllowDeny_rules\">$cfg['Servers'][$i]['AllowDeny']['rules']</span>"
-" array of strings"
+"<span id=\"cfg_Servers_AllowDeny_rules\">$cfg['Servers'][$i]['AllowDeny']"
+"['rules']</span> array of strings"
msgstr ""
-"<span "
-"id=\"cfg_Servers_AllowDeny_rules\">$cfg['Servers'][$i]['AllowDeny']['rules']</span>"
-" pole textů"
+"<span id=\"cfg_Servers_AllowDeny_rules\">$cfg['Servers'][$i]['AllowDeny']"
+"['rules']</span> pole textů"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1277
@@ -2801,22 +2732,22 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1303
msgid ""
-"<tt>xxx.xxx.xxx.xxx</tt> (an exact <abbr title=\"Internet "
-"Protocol\">IP</abbr> address)"
+"<tt>xxx.xxx.xxx.xxx</tt> (an exact <abbr title=\"Internet Protocol\">IP</"
+"abbr> address)"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1304
msgid ""
-"<tt>xxx.xxx.xxx.[yyy-zzz]</tt> (an <abbr title=\"Internet "
-"Protocol\">IP</abbr> address range)"
+"<tt>xxx.xxx.xxx.[yyy-zzz]</tt> (an <abbr title=\"Internet Protocol\">IP</"
+"abbr> address range)"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1305
msgid ""
-"<tt>xxx.xxx.xxx.xxx/nn</tt> (CIDR, Classless Inter-Domain Routing type <abbr"
-" title=\"Internet Protocol\">IP</abbr> addresses)"
+"<tt>xxx.xxx.xxx.xxx/nn</tt> (CIDR, Classless Inter-Domain Routing type <abbr "
+"title=\"Internet Protocol\">IP</abbr> addresses)"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2827,8 +2758,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1307
msgid ""
-"<tt>xxx.xxx.xxx.xx[yyy-zzz]</tt> (partial <abbr title=\"Internet "
-"Protocol\">IP</abbr> address range)"
+"<tt>xxx.xxx.xxx.xx[yyy-zzz]</tt> (partial <abbr title=\"Internet Protocol"
+"\">IP</abbr> address range)"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2849,40 +2780,36 @@ msgstr ""
#: orig-docs/Documentation.html:1312
msgid ""
"Disable using <tt>INFORMATION_SCHEMA</tt> to retrieve information (use "
-"<tt>SHOW</tt> commands instead), because of speed issues when many databases"
-" are present. Currently used in some parts of the code, more to come."
+"<tt>SHOW</tt> commands instead), because of speed issues when many databases "
+"are present. Currently used in some parts of the code, more to come."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1314
msgid ""
-"<span "
-"id=\"cfg_Servers_ShowDatabasesCommand\">$cfg['Servers'][$i]['ShowDatabasesCommand']</span>"
-" string"
+"<span id=\"cfg_Servers_ShowDatabasesCommand\">$cfg['Servers'][$i]"
+"['ShowDatabasesCommand']</span> string"
msgstr ""
-"<span "
-"id=\"cfg_Servers_ShowDatabasesCommand\">$cfg['Servers'][$i]['ShowDatabasesCommand']</span>"
-" text"
+"<span id=\"cfg_Servers_ShowDatabasesCommand\">$cfg['Servers'][$i]"
+"['ShowDatabasesCommand']</span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1315
msgid ""
-"On a server with a huge number of databases, the default <tt>SHOW "
-"DATABASES</tt> command used to fetch the name of available databases will "
-"probably be too slow, so it can be replaced by faster commands (see "
-"<tt>libraries/config.default.php</tt> for examples)."
+"On a server with a huge number of databases, the default <tt>SHOW DATABASES</"
+"tt> command used to fetch the name of available databases will probably be "
+"too slow, so it can be replaced by faster commands (see <tt>libraries/config."
+"default.php</tt> for examples)."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1320
msgid ""
-"<span "
-"id=\"cfg_Servers_CountTables\">$cfg['Servers'][$i]['CountTables']</span> "
-"boolean"
+"<span id=\"cfg_Servers_CountTables\">$cfg['Servers'][$i]['CountTables']</"
+"span> boolean"
msgstr ""
-"<span "
-"id=\"cfg_Servers_CountTables\">$cfg['Servers'][$i]['CountTables']</span> "
-"boolean"
+"<span id=\"cfg_Servers_CountTables\">$cfg['Servers'][$i]['CountTables']</"
+"span> boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1321
@@ -2894,20 +2821,18 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1323
msgid ""
-"<span "
-"id=\"cfg_Servers_SignonSession\">$cfg['Servers'][$i]['SignonSession']</span>"
-" string"
+"<span id=\"cfg_Servers_SignonSession\">$cfg['Servers'][$i]['SignonSession']</"
+"span> string"
msgstr ""
-"<span "
-"id=\"cfg_Servers_SignonSession\">$cfg['Servers'][$i]['SignonSession']</span>"
-" text"
+"<span id=\"cfg_Servers_SignonSession\">$cfg['Servers'][$i]['SignonSession']</"
+"span> text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1324
msgid ""
"Name of session which will be used for signon authentication method. You "
-"should use something different than <code>phpMyAdmin</code>, because this is"
-" session which phpMyAdmin uses internally."
+"should use something different than <code>phpMyAdmin</code>, because this is "
+"session which phpMyAdmin uses internally."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -2950,10 +2875,10 @@ msgstr "$cfg['ServerDefault'] číslo"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1336
msgid ""
-"If you have more than one server configured, you can set "
-"<tt>$cfg['ServerDefault']</tt> to any one of them to autoconnect to that "
-"server when phpMyAdmin is started, or set it to 0 to be given a list of "
-"servers without logging in."
+"If you have more than one server configured, you can set <tt>$cfg"
+"['ServerDefault']</tt> to any one of them to autoconnect to that server when "
+"phpMyAdmin is started, or set it to 0 to be given a list of servers without "
+"logging in."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -2972,8 +2897,8 @@ msgstr "$cfg['AjaxEnable'] boolean"
#: orig-docs/Documentation.html:1344
msgid ""
"Defines whether to refresh only parts of certain pages using Ajax "
-"techniques. Applies only where a non-Ajax behavior is possible; for example,"
-" the Designer feature is Ajax-only so this directive does not apply to it."
+"techniques. Applies only where a non-Ajax behavior is possible; for example, "
+"the Designer feature is Ajax-only so this directive does not apply to it."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -2996,8 +2921,8 @@ msgstr "$cfg['MaxDbList'] číslo"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1354
msgid ""
-"The maximum number of database names to be displayed in the navigation frame"
-" and the database list."
+"The maximum number of database names to be displayed in the navigation frame "
+"and the database list."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3098,9 +3023,8 @@ msgstr "$cfg['SessionSavePath'] text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1391
msgid ""
-"Path for storing session data (<a "
-"href=\"http://php.net/session_save_path\">session_save_path PHP "
-"parameter</a>)."
+"Path for storing session data (<a href=\"http://php.net/session_save_path"
+"\">session_save_path PHP parameter</a>)."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3150,8 +3074,8 @@ msgstr "$cfg['ShowSQL'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1408
msgid ""
-"Defines whether <abbr title=\"structured query language\">SQL</abbr> queries"
-" generated by phpMyAdmin should be displayed or not."
+"Defines whether <abbr title=\"structured query language\">SQL</abbr> queries "
+"generated by phpMyAdmin should be displayed or not."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3162,11 +3086,11 @@ msgstr "$cfg['AllowUserDropDatabase'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1412
msgid ""
-"Defines whether normal users (non-administrator) are allowed to delete their"
-" own database or not. If set as FALSE, the link "Drop Database" "
+"Defines whether normal users (non-administrator) are allowed to delete their "
+"own database or not. If set as FALSE, the link "Drop Database" "
"will not be shown, and even a "DROP DATABASE mydatabase" will be "
-"rejected. Quite practical for <abbr title=\"Internet service "
-"provider\">ISP</abbr>'s with many customers."
+"rejected. Quite practical for <abbr title=\"Internet service provider\">ISP</"
+"abbr>'s with many customers."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -3205,8 +3129,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1432
msgid ""
-"This is automatically disabled if you do not have configured <tt><a "
-"href=\"#cfg_blowfish_secret\">$cfg['blowfish_secret']</a></tt>."
+"This is automatically disabled if you do not have configured <tt><a href="
+"\"#cfg_blowfish_secret\">$cfg['blowfish_secret']</a></tt>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3218,12 +3142,11 @@ msgstr "$cfg['LoginCookieValidity'] číslo [number of seconds]"
#: orig-docs/Documentation.html:1437
msgid ""
"Define how long is login cookie valid. Please note that php configuration "
-"option <a "
-"href=\"http://php.net/manual/en/session.configuration.php#ini.session.gc-"
-"maxlifetime\">session.gc_maxlifetime</a> might limit session validity and if"
-" session is lost, login cookie is also invalidated. So it is a good idea to "
-"set <code>session.gc_maxlifetime</code> not lower than the value of "
-"$cfg['LoginCookieValidity']."
+"option <a href=\"http://php.net/manual/en/session.configuration.php#ini."
+"session.gc-maxlifetime\">session.gc_maxlifetime</a> might limit session "
+"validity and if session is lost, login cookie is also invalidated. So it is "
+"a good idea to set <code>session.gc_maxlifetime</code> not lower than the "
+"value of $cfg['LoginCookieValidity']."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3252,8 +3175,8 @@ msgstr "$cfg['LoginCookieDeleteAll'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1449
msgid ""
-"If enabled (default), logout deletes cookies for all servers, otherwise only"
-" for current one. Setting this to false makes it easy to forget to log out "
+"If enabled (default), logout deletes cookies for all servers, otherwise only "
+"for current one. Setting this to false makes it easy to forget to log out "
"from other server, when you are using more of them."
msgstr ""
@@ -3275,8 +3198,8 @@ msgstr "$cfg['IgnoreMultiSubmitErrors'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1458
msgid ""
-"Define whether phpMyAdmin will continue executing a multi-query statement if"
-" one of the queries fails. Default is to abort execution."
+"Define whether phpMyAdmin will continue executing a multi-query statement if "
+"one of the queries fails. Default is to abort execution."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3288,8 +3211,8 @@ msgstr "$cfg['VerboseMultiSubmit'] boolean"
#: orig-docs/Documentation.html:1462
msgid ""
"Define whether phpMyAdmin will output the results of each query of a multi-"
-"query statement embedded into the <abbr title=\"structured query "
-"language\">SQL</abbr> output as inline comments. Defaults to <tt>TRUE</tt>."
+"query statement embedded into the <abbr title=\"structured query language"
+"\">SQL</abbr> output as inline comments. Defaults to <tt>TRUE</tt>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3346,9 +3269,9 @@ msgstr "$cfg['LeftFrameLight'] boolean"
msgid ""
"Defines whether to use a select-based menu and display only the current "
"tables in the left frame (smaller page). Only in Non-Lightmode you can use "
-"the feature to display nested folders using <a "
-"href=\"#cfg_LeftFrameTableSeparator\" "
-"class=\"configrule\">$cfg['LeftFrameTableSeparator']</a>"
+"the feature to display nested folders using <a href="
+"\"#cfg_LeftFrameTableSeparator\" class=\"configrule\">$cfg"
+"['LeftFrameTableSeparator']</a>"
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3360,8 +3283,8 @@ msgstr "$cfg['LeftFrameDBTree'] boolean"
#: orig-docs/Documentation.html:1490
msgid ""
"In light mode, defines whether to display the names of databases (in the "
-"selector) using a tree, see also <a href=\"#cfg_LeftFrameDBSeparator\" "
-"class=\"configrule\">$cfg['LeftFrameDBSeparator']</a>."
+"selector) using a tree, see also <a href=\"#cfg_LeftFrameDBSeparator\" class="
+"\"configrule\">$cfg['LeftFrameDBSeparator']</a>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3372,9 +3295,9 @@ msgstr "$cfg['LeftFrameDBSeparator'] text nebo pole"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1497
msgid ""
-"The string used to separate the parts of the database name when showing them"
-" in a tree. Alternatively you can specify more strings in an array and all "
-"of them will be used as a separator."
+"The string used to separate the parts of the database name when showing them "
+"in a tree. Alternatively you can specify more strings in an array and all of "
+"them will be used as a separator."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3386,8 +3309,8 @@ msgstr "$cfg['LeftFrameTableSeparator'] text"
#: orig-docs/Documentation.html:1502
msgid ""
"Defines a string to be used to nest table spaces. Defaults to '__'. This "
-"means if you have tables like 'first__second__third' this will be shown as a"
-" three-level hierarchy like: first > second > third. If set to FALSE "
+"means if you have tables like 'first__second__third' this will be shown as a "
+"three-level hierarchy like: first > second > third. If set to FALSE "
"or empty, the feature is disabled. NOTE: You should not use this separator "
"at the beginning or end of a table name or multiple times after another "
"without any other characters in between."
@@ -3436,9 +3359,9 @@ msgstr "$cfg['ShowTooltipAliasDB'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1523
msgid ""
-"If tool-tips are enabled and a DB comment is set, this will flip the comment"
-" and the real name. That means that if you have a table called 'user0001' "
-"and add the comment 'MyName' on it, you will see the name 'MyName' used "
+"If tool-tips are enabled and a DB comment is set, this will flip the comment "
+"and the real name. That means that if you have a table called 'user0001' and "
+"add the comment 'MyName' on it, you will see the name 'MyName' used "
"consequently in the left frame and the tool-tip shows the real name of the "
"DB."
msgstr ""
@@ -3451,13 +3374,12 @@ msgstr "$cfg['ShowTooltipAliasTB'] boolean/text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1530
msgid ""
-"Same as <a href=\"#cfg_ShowTooltipAliasDB\" "
-"class=\"configrule\">$cfg['ShowTooltipAliasDB']</a>, except this works for "
-"table names. When setting this to 'nested', the Alias of the Tablename is "
-"only used to split/nest the tables according to the <a "
-"href=\"#cfg_LeftFrameTableSeparator\" "
-"class=\"configrule\">$cfg['LeftFrameTableSeparator']</a> directive. So only "
-"the folder is called like the Alias, the tablename itself stays the real "
+"Same as <a href=\"#cfg_ShowTooltipAliasDB\" class=\"configrule\">$cfg"
+"['ShowTooltipAliasDB']</a>, except this works for table names. When setting "
+"this to 'nested', the Alias of the Tablename is only used to split/nest the "
+"tables according to the <a href=\"#cfg_LeftFrameTableSeparator\" class="
+"\"configrule\">$cfg['LeftFrameTableSeparator']</a> directive. So only the "
+"folder is called like the Alias, the tablename itself stays the real "
"tablename."
msgstr ""
@@ -3469,8 +3391,8 @@ msgstr "$cfg['LeftDisplayLogo'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1539
msgid ""
-"Defines whether or not to display the phpMyAdmin logo at the top of the left"
-" frame. Defaults to <tt>TRUE</tt>."
+"Defines whether or not to display the phpMyAdmin logo at the top of the left "
+"frame. Defaults to <tt>TRUE</tt>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3558,10 +3480,9 @@ msgstr "$cfg['LeftDefaultTabTable'] text"
#: orig-docs/Documentation.html:1570
msgid ""
"Defines the tab displayed by default when clicking the small icon next to "
-"each table name in the navigation panel. Possible values: "
-""tbl_structure.php", "tbl_sql.php", "
-""tbl_select.php", "tbl_change.php" or "
-""sql.php"."
+"each table name in the navigation panel. Possible values: ""
+"tbl_structure.php", "tbl_sql.php", "tbl_select."
+"php", "tbl_change.php" or "sql.php"."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3572,8 +3493,8 @@ msgstr "$cfg['ShowStats'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1577
msgid ""
-"Defines whether or not to display space usage and statistics about databases"
-" and tables."
+"Defines whether or not to display space usage and statistics about databases "
+"and tables."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -3592,8 +3513,8 @@ msgstr "<span id=\"cfg_ShowServerInfo\">$cfg['ShowServerInfo'] </span>boolean"
#: orig-docs/Documentation.html:1583
msgid ""
"Defines whether to display detailed server information on main page. You "
-"can additionally hide more information by using <tt><a "
-"href=\"#cfg_Servers_verbose\">$cfg['Servers'][$i]['verbose']</a></tt>."
+"can additionally hide more information by using <tt><a href="
+"\"#cfg_Servers_verbose\">$cfg['Servers'][$i]['verbose']</a></tt>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3604,7 +3525,8 @@ msgstr "<span id=\"cfg_ShowPhpInfo\">$cfg['ShowPhpInfo'] </span>boolean"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1589
msgid "<span id=\"cfg_ShowChgPassword\">$cfg['ShowChgPassword'] </span>boolean"
-msgstr "<span id=\"cfg_ShowChgPassword\">$cfg['ShowChgPassword'] </span>boolean"
+msgstr ""
+"<span id=\"cfg_ShowChgPassword\">$cfg['ShowChgPassword'] </span>boolean"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1590
@@ -3623,8 +3545,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1597
msgid ""
-"Please note that to block the usage of phpinfo() in scripts, you have to put"
-" this in your <i>php.ini</i>:"
+"Please note that to block the usage of phpinfo() in scripts, you have to put "
+"this in your <i>php.ini</i>:"
msgstr ""
#. type: Content of: <html><body><div><dl><dd><pre>
@@ -3692,8 +3614,8 @@ msgid ""
"shown."
msgstr ""
"Počet řádků, které se zobrazí při procházení množiny výsledků. Pokud je "
-"množina výsledků delší, zobrazí se odkazy "Předchozí" a "
-""Další"."
+"množina výsledků delší, zobrazí se odkazy "Předchozí" a ""
+"Další"."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1624
@@ -3717,8 +3639,8 @@ msgstr "$cfg['DisplayBinaryAsHex'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1631
msgid ""
-"Defines whether the "Show binary contents as HEX" browse option is"
-" ticked by default."
+"Defines whether the "Show binary contents as HEX" browse option is "
+"ticked by default."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3771,8 +3693,8 @@ msgstr "$cfg['ShowFieldTypesInDataEditView'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1651
msgid ""
-"Defines whether or not type fields should be initially displayed in "
-"edit/insert mode. The user can toggle this setting from the interface."
+"Defines whether or not type fields should be initially displayed in edit/"
+"insert mode. The user can toggle this setting from the interface."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3788,8 +3710,8 @@ msgid ""
"columns. Possible values are:"
msgstr ""
"Definuje, který typ ovládacích prvků má být použit při editaci polí typu "
-"CHAR a VARCHAR; [kbd]vstup[/kbd] - umožňuje omezit délku vstupu, "
-"[kbd]textová oblast[/kbd] - umožní použít odřádkování"
+"CHAR a VARCHAR; [kbd]vstup[/kbd] - umožňuje omezit délku vstupu, [kbd]"
+"textová oblast[/kbd] - umožní použít odřádkování"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:1659
@@ -3829,9 +3751,9 @@ msgstr "$cfg['ForeignKeyMaxLimit'] číslo"
#: orig-docs/Documentation.html:1670
msgid ""
"If there are fewer items than this in the set of foreign keys, then a drop-"
-"down box of foreign keys is presented, in the style described by the <a "
-"href=\"#cfg_ForeignKeyDropdownOrder\" "
-"class=\"configrule\">$cfg['ForeignKeyDropdownOrder']</a> setting."
+"down box of foreign keys is presented, in the style described by the <a href="
+"\"#cfg_ForeignKeyDropdownOrder\" class=\"configrule\">$cfg"
+"['ForeignKeyDropdownOrder']</a> setting."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3844,8 +3766,8 @@ msgstr "$cfg['ForeignKeyDropdownOrder'] pole"
msgid ""
"For the foreign key drop-down fields, there are several methods of display, "
"offering both the key and value data. The contents of the array should be "
-"one or both of the following strings: <i>'content-id'</i>, <i>'id-"
-"content'</i>."
+"one or both of the following strings: <i>'content-id'</i>, <i>'id-content'</"
+"i>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3866,8 +3788,8 @@ msgstr "<span id=\"cfg_BZipDump\">$cfg['BZipDump'] </span>boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1685
msgid ""
-"Defines whether to allow the use of zip/GZip/BZip2 compression when creating"
-" a dump file"
+"Defines whether to allow the use of zip/GZip/BZip2 compression when creating "
+"a dump file"
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3879,8 +3801,8 @@ msgstr "<span id=\"cfg_CompressOnFly\">$cfg['CompressOnFly'] </span>boolean"
#: orig-docs/Documentation.html:1690
msgid ""
"Defines whether to allow on the fly compression for GZip/BZip2 compressed "
-"exports. This doesn't affect smaller dumps and allows users to create larger"
-" dumps that won't otherwise fit in memory due to php memory limit. Produced "
+"exports. This doesn't affect smaller dumps and allows users to create larger "
+"dumps that won't otherwise fit in memory due to php memory limit. Produced "
"files contain more GZip/BZip2 headers, but all normal programs handle this "
"correctly."
msgstr ""
@@ -3893,8 +3815,8 @@ msgstr "$cfg['LightTabs'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1697
msgid ""
-"If set to <tt>TRUE</tt>, use less graphically intense tabs on the top of the"
-" mainframe."
+"If set to <tt>TRUE</tt>, use less graphically intense tabs on the top of the "
+"mainframe."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3905,8 +3827,8 @@ msgstr "$cfg['PropertiesIconic'] text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1701
msgid ""
-"If set to <tt>TRUE</tt>, will display icons instead of text for db and table"
-" properties links (like 'Browse', 'Select', 'Insert', ...)."
+"If set to <tt>TRUE</tt>, will display icons instead of text for db and table "
+"properties links (like 'Browse', 'Select', 'Insert', ...)."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -3928,8 +3850,8 @@ msgstr "$cfg['PropertiesNumColumns'] číslo"
#: orig-docs/Documentation.html:1707
msgid ""
"How many columns will be utilized to display the tables on the database "
-"property view? Default is 1 column. When setting this to a value larger than"
-" 1, the type of the database will be omitted for more display space."
+"property view? Default is 1 column. When setting this to a value larger than "
+"1, the type of the database will be omitted for more display space."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3940,11 +3862,10 @@ msgstr "$cfg['DefaultTabServer'] text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1714
msgid ""
-"Defines the tab displayed by default on server view. Possible values: "
-""main.php" (recommended for multi-user setups), "
-""server_databases.php", "server_status.php", "
-""server_variables.php", "server_privileges.php" or "
-""server_processlist.php"."
+"Defines the tab displayed by default on server view. Possible values: ""
+"main.php" (recommended for multi-user setups), "server_databases."
+"php", "server_status.php", "server_variables.php", "
+""server_privileges.php" or "server_processlist.php"."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3956,8 +3877,8 @@ msgstr "$cfg['DefaultTabDatabase'] text"
#: orig-docs/Documentation.html:1721
msgid ""
"Defines the tab displayed by default on database view. Possible values: "
-""db_structure.php", "db_sql.php" or "
-""db_search.php"."
+""db_structure.php", "db_sql.php" or "db_search."
+"php"."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3968,10 +3889,9 @@ msgstr "$cfg['DefaultTabTable'] text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1726
msgid ""
-"Defines the tab displayed by default on table view. Possible values: "
-""tbl_structure.php", "tbl_sql.php", "
-""tbl_select.php", "tbl_change.php" or "
-""sql.php"."
+"Defines the tab displayed by default on table view. Possible values: ""
+"tbl_structure.php", "tbl_sql.php", "tbl_select."
+"php", "tbl_change.php" or "sql.php"."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -3983,10 +3903,9 @@ msgstr "$cfg['MySQLManualBase'] text"
#: orig-docs/Documentation.html:1732
msgid ""
"If set to an <abbr title=\"Uniform Resource Locator\">URL</abbr> which "
-"points to the MySQL documentation (type depends on <a "
-"href=\"#cfg_MySQLManualType\" "
-"class=\"configrule\">$cfg['MySQLManualType']</a>), appropriate help links "
-"are generated."
+"points to the MySQL documentation (type depends on <a href="
+"\"#cfg_MySQLManualType\" class=\"configrule\">$cfg['MySQLManualType']</a>), "
+"appropriate help links are generated."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -4046,8 +3965,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1752 orig-docs/Documentation.html:1764
msgid ""
-"The corresponding language file needs to be in "
-"locale/<i>code</i>/LC_MESSAGES/phpmyadmin.mo."
+"The corresponding language file needs to be in locale/<i>code</i>/"
+"LC_MESSAGES/phpmyadmin.mo."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -4063,8 +3982,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1759
msgid ""
-"See the <a href=\"http://dev.mysql.com/doc/mysql/en/charset-"
-"charsets.html\">MySQL documentation</a> for list of possible values."
+"See the <a href=\"http://dev.mysql.com/doc/mysql/en/charset-charsets.html"
+"\">MySQL documentation</a> for list of possible values."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -4133,9 +4052,9 @@ msgstr "Výchozí je auto."
#: orig-docs/Documentation.html:1784
msgid ""
"Enabled charset conversion activates a pull-down menu in the Export and "
-"Import pages, to choose the character set when exporting a file. The default"
-" value in this menu comes from <tt>$cfg['Export']['charset']</tt> and "
-"<tt>$cfg['Import']['charset']</tt>."
+"Import pages, to choose the character set when exporting a file. The default "
+"value in this menu comes from <tt>$cfg['Export']['charset']</tt> and <tt>$cfg"
+"['Import']['charset']</tt>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -4146,10 +4065,10 @@ msgstr "$cfg['IconvExtraParams'] text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1791
msgid ""
-"Specify some parameters for iconv used in charset conversion. See <a "
-"href=\"http://www.gnu.org/software/libiconv/documentation/libiconv/iconv_open.3.ht…">iconv"
-" documentation</a> for details. By default <code>//TRANSLIT</code> is used, "
-"so that invalid characters will be transliterated."
+"Specify some parameters for iconv used in charset conversion. See <a href="
+"\"http://www.gnu.org/software/libiconv/documentation/libiconv/iconv_open.3."
+"html\">iconv documentation</a> for details. By default <code>//TRANSLIT</"
+"code> is used, so that invalid characters will be transliterated."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -4174,9 +4093,9 @@ msgstr "$cfg['TrustedProxies'] pole"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1803
msgid ""
-"Lists proxies and HTTP headers which are trusted for <a "
-"href=\"#servers_allowdeny_order\">IP Allow/Deny</a>. This list is by default"
-" empty, you need to fill in some trusted proxy servers if you want to use "
+"Lists proxies and HTTP headers which are trusted for <a href="
+"\"#servers_allowdeny_order\">IP Allow/Deny</a>. This list is by default "
+"empty, you need to fill in some trusted proxy servers if you want to use "
"rules for IP addresses behind proxy."
msgstr ""
@@ -4184,8 +4103,8 @@ msgstr ""
#: orig-docs/Documentation.html:1808
msgid ""
"The following example specifies that phpMyAdmin should trust a "
-"HTTP_X_FORWARDED_FOR (<tt>X-Forwarded-For</tt>) header coming from the proxy"
-" 1.2.3.4:"
+"HTTP_X_FORWARDED_FOR (<tt>X-Forwarded-For</tt>) header coming from the proxy "
+"1.2.3.4:"
msgstr ""
#. type: Content of: <html><body><div><dl><dd><pre>
@@ -4201,8 +4120,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1814
msgid ""
-"The $cfg['Servers'][$i]['AllowDeny']['rules'] directive uses the client's IP"
-" address as usual."
+"The $cfg['Servers'][$i]['AllowDeny']['rules'] directive uses the client's IP "
+"address as usual."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -4264,8 +4183,8 @@ msgstr "$cfg['LinkLengthLimit'] číslo"
#: orig-docs/Documentation.html:1842
msgid ""
"Limit for length of URL in links. When length would be above this limit, it "
-"is replaced by form with button. This is required as some web servers (IIS)"
-" have problems with long URLs. Default is <code>1000</code>."
+"is replaced by form with button. This is required as some web servers (IIS) "
+"have problems with long URLs. Default is <code>1000</code>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -4300,8 +4219,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1855
msgid ""
-"The background styles used for both the frames. See "
-"<tt>themes/themename/layout.inc.php</tt>."
+"The background styles used for both the frames. See <tt>themes/themename/"
+"layout.inc.php</tt>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -4321,8 +4240,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1860
msgid ""
-"The style used for the pointer in the navi frame. See "
-"<tt>themes/themename/layout.inc.php</tt>."
+"The style used for the pointer in the navi frame. See <tt>themes/themename/"
+"layout.inc.php</tt>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -4361,8 +4280,8 @@ msgstr "<span id=\"cfg_ThColor\">$cfg['ThColor']</span> text [CSS barva]"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1873
msgid ""
-"The style used for table headers. See "
-"<tt>themes/themename/layout.inc.php</tt>."
+"The style used for table headers. See <tt>themes/themename/layout.inc.php</"
+"tt>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -4373,8 +4292,8 @@ msgstr "$cfg['BgOne'] text [CSS barva]"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1877
msgid ""
-"The color (HTML) #1 for table rows. See "
-"<tt>themes/themename/layout.inc.php</tt>."
+"The color (HTML) #1 for table rows. See <tt>themes/themename/layout.inc.php</"
+"tt>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -4385,24 +4304,24 @@ msgstr "$cfg['BgTwo'] text [CSS barva]"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1881
msgid ""
-"The color (HTML) #2 for table rows. See "
-"<tt>themes/themename/layout.inc.php</tt>."
+"The color (HTML) #2 for table rows. See <tt>themes/themename/layout.inc.php</"
+"tt>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1884
msgid ""
-"<span id=\"cfg_BrowsePointerBackground\">$cfg['BrowsePointerBackground'] "
-"</span>string [CSS color]"
+"<span id=\"cfg_BrowsePointerBackground\">$cfg['BrowsePointerBackground'] </"
+"span>string [CSS color]"
msgstr ""
-"<span id=\"cfg_BrowsePointerBackground\">$cfg['BrowsePointerBackground'] "
-"</span>text [CSS barva]"
+"<span id=\"cfg_BrowsePointerBackground\">$cfg['BrowsePointerBackground'] </"
+"span>text [CSS barva]"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1885
msgid ""
-"<span id=\"cfg_BrowsePointerColor\">$cfg['BrowsePointerColor'] </span>string"
-" [CSS color]"
+"<span id=\"cfg_BrowsePointerColor\">$cfg['BrowsePointerColor'] </span>string "
+"[CSS color]"
msgstr ""
"<span id=\"cfg_BrowsePointerColor\">$cfg['BrowsePointerColor'] </span>text "
"[CSS barva]"
@@ -4410,11 +4329,11 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1886
msgid ""
-"<span id=\"cfg_BrowseMarkerBackground\">$cfg['BrowseMarkerBackground'] "
-"</span>string [CSS color]"
+"<span id=\"cfg_BrowseMarkerBackground\">$cfg['BrowseMarkerBackground'] </"
+"span>string [CSS color]"
msgstr ""
-"<span id=\"cfg_BrowseMarkerBackground\">$cfg['BrowseMarkerBackground'] "
-"</span>text [CSS barva]"
+"<span id=\"cfg_BrowseMarkerBackground\">$cfg['BrowseMarkerBackground'] </"
+"span>text [CSS barva]"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1887
@@ -4501,13 +4420,17 @@ msgstr "<span id=\"cfg_TextareaRows\">$cfg['TextareaRows'] </span>číslo"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1915
-msgid "<span id=\"cfg_CharTextareaCols\">$cfg['CharTextareaCols'] </span>integer"
-msgstr "<span id=\"cfg_CharTextareaCols\">$cfg['CharTextareaCols'] </span>číslo"
+msgid ""
+"<span id=\"cfg_CharTextareaCols\">$cfg['CharTextareaCols'] </span>integer"
+msgstr ""
+"<span id=\"cfg_CharTextareaCols\">$cfg['CharTextareaCols'] </span>číslo"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1916
-msgid "<span id=\"cfg_CharTextareaRows\">$cfg['CharTextareaRows'] </span>integer"
-msgstr "<span id=\"cfg_CharTextareaRows\">$cfg['CharTextareaRows'] </span>číslo"
+msgid ""
+"<span id=\"cfg_CharTextareaRows\">$cfg['CharTextareaRows'] </span>integer"
+msgstr ""
+"<span id=\"cfg_CharTextareaRows\">$cfg['CharTextareaRows'] </span>číslo"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1918
@@ -4518,26 +4441,25 @@ msgstr ""
#: orig-docs/Documentation.html:1919
msgid ""
"This value will be emphasized (*2) for <abbr title=\"structured query "
-"language\">SQL</abbr> query textareas and (*1.25) for <abbr "
-"title=\"structured query language\">SQL</abbr> textareas inside the query "
-"window."
+"language\">SQL</abbr> query textareas and (*1.25) for <abbr title="
+"\"structured query language\">SQL</abbr> textareas inside the query window."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1921
msgid ""
-"The Char* values are used for CHAR and VARCHAR editing (if configured via <a"
-" href=\"#cfg_CharEditing\">$cfg['CharEditing']</a>)."
+"The Char* values are used for CHAR and VARCHAR editing (if configured via <a "
+"href=\"#cfg_CharEditing\">$cfg['CharEditing']</a>)."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1924
msgid ""
-"<span id=\"cfg_LongtextDoubleTextarea\">$cfg['LongtextDoubleTextarea'] "
-"</span>boolean"
+"<span id=\"cfg_LongtextDoubleTextarea\">$cfg['LongtextDoubleTextarea'] </"
+"span>boolean"
msgstr ""
-"<span id=\"cfg_LongtextDoubleTextarea\">$cfg['LongtextDoubleTextarea'] "
-"</span>boolean"
+"<span id=\"cfg_LongtextDoubleTextarea\">$cfg['LongtextDoubleTextarea'] </"
+"span>boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1926
@@ -4547,11 +4469,9 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1928
msgid ""
-"<span id=\"cfg_TextareaAutoSelect\">$cfg['TextareaAutoSelect'] "
-"</span>boolean"
+"<span id=\"cfg_TextareaAutoSelect\">$cfg['TextareaAutoSelect'] </span>boolean"
msgstr ""
-"<span id=\"cfg_TextareaAutoSelect\">$cfg['TextareaAutoSelect'] "
-"</span>boolean"
+"<span id=\"cfg_TextareaAutoSelect\">$cfg['TextareaAutoSelect'] </span>boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1930
@@ -4567,28 +4487,28 @@ msgstr "$cfg['LimitChars'] číslo"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1934
msgid ""
-"Maximum number of characters shown in any non-numeric field on browse view."
-" Can be turned off by a toggle button on the browse page."
+"Maximum number of characters shown in any non-numeric field on browse view. "
+"Can be turned off by a toggle button on the browse page."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1937
msgid ""
-"<span id=\"cfg_ModifyDeleteAtLeft\">$cfg['ModifyDeleteAtLeft'] "
-"</span>boolean <span "
-"id=\"cfg_ModifyDeleteAtRight\">$cfg['ModifyDeleteAtRight'] </span>boolean"
+"<span id=\"cfg_ModifyDeleteAtLeft\">$cfg['ModifyDeleteAtLeft'] </"
+"span>boolean <span id=\"cfg_ModifyDeleteAtRight\">$cfg"
+"['ModifyDeleteAtRight'] </span>boolean"
msgstr ""
-"<span id=\"cfg_ModifyDeleteAtLeft\">$cfg['ModifyDeleteAtLeft'] "
-"</span>boolean <span "
-"id=\"cfg_ModifyDeleteAtRight\">$cfg['ModifyDeleteAtRight'] </span>boolean"
+"<span id=\"cfg_ModifyDeleteAtLeft\">$cfg['ModifyDeleteAtLeft'] </"
+"span>boolean <span id=\"cfg_ModifyDeleteAtRight\">$cfg"
+"['ModifyDeleteAtRight'] </span>boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1940
msgid ""
"Defines the place where table row links (Edit, Inline edit, Copy, Delete) "
-"would be put when tables contents are displayed (you may have them displayed"
-" both at the left and at the right). "Left" and "right""
-" are parsed as "top" and "bottom" with vertical display "
+"would be put when tables contents are displayed (you may have them displayed "
+"both at the left and at the right). "Left" and "right" "
+"are parsed as "top" and "bottom" with vertical display "
"mode."
msgstr ""
@@ -4638,8 +4558,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1971
msgid ""
-"<span id=\"cfg_DefaultPropDisplay\">$cfg['DefaultPropDisplay']</span> string"
-" or integer"
+"<span id=\"cfg_DefaultPropDisplay\">$cfg['DefaultPropDisplay']</span> string "
+"or integer"
msgstr ""
"<span id=\"cfg_DefaultPropDisplay\">$cfg['DefaultPropDisplay']</span> text "
"nebo číslo"
@@ -4649,9 +4569,9 @@ msgstr ""
msgid ""
"When editing/creating new columns in a table all fields normally get lined "
"up one field a line. (default: 'horizontal'). If you set this to 'vertical' "
-"you can have each field lined up vertically beneath each other. You can save"
-" up a lot of place on the horizontal direction and no longer have to scroll."
-" If you set this to integer, editing of fewer columns will appear in "
+"you can have each field lined up vertically beneath each other. You can save "
+"up a lot of place on the horizontal direction and no longer have to scroll. "
+"If you set this to integer, editing of fewer columns will appear in "
"'vertical' mode, while editing of more columns still in 'horizontal' mode. "
"This way you can still effectively edit large number of columns, while "
"having full view on few of them."
@@ -4665,11 +4585,11 @@ msgstr "$cfg['ShowBrowseComments'] boolean"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:1983
msgid ""
-"<span id=\"cfg_ShowPropertyComments\">$cfg['ShowPropertyComments'] "
-"</span>boolean"
+"<span id=\"cfg_ShowPropertyComments\">$cfg['ShowPropertyComments'] </"
+"span>boolean"
msgstr ""
-"<span id=\"cfg_ShowPropertyComments\">$cfg['ShowPropertyComments'] "
-"</span>boolean"
+"<span id=\"cfg_ShowPropertyComments\">$cfg['ShowPropertyComments'] </"
+"span>boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1985
@@ -4688,8 +4608,7 @@ msgstr "$cfg['SQLQuery']['Edit'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:1993
-msgid ""
-"Whether to display an edit link to change a query in any SQL Query box."
+msgid "Whether to display an edit link to change a query in any SQL Query box."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -4744,10 +4663,10 @@ msgstr "$cfg['UploadDir'] text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2010
msgid ""
-"The name of the directory where <abbr title=\"structured query "
-"language\">SQL</abbr> files have been uploaded by other means than "
-"phpMyAdmin (for example, ftp). Those files are available under a drop-down "
-"box when you click the database or table name, then the Import tab."
+"The name of the directory where <abbr title=\"structured query language"
+"\">SQL</abbr> files have been uploaded by other means than phpMyAdmin (for "
+"example, ftp). Those files are available under a drop-down box when you "
+"click the database or table name, then the Import tab."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -4783,8 +4702,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2032
msgid ""
-"See also <a href=\"#faq1_16\"> <abbr title=\"Frequently Asked "
-"Questions\">FAQ</abbr> 1.16</a> for alternatives."
+"See also <a href=\"#faq1_16\"> <abbr title=\"Frequently Asked Questions"
+"\">FAQ</abbr> 1.16</a> for alternatives."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -4819,9 +4738,8 @@ msgstr ""
msgid ""
"This is needed for native MS Excel export, see <a href=\"#faq6_23\"><abbr "
"title=\"Frequently Asked Questions\">FAQ</abbr> 6.23</a> and to work around "
-"limitations of <tt>open_basedir</tt> for uploaded files, see <a "
-"href=\"#faq1_11\"><abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
-"1.11</a>."
+"limitations of <tt>open_basedir</tt> for uploaded files, see <a href="
+"\"#faq1_11\"><abbr title=\"Frequently Asked Questions\">FAQ</abbr> 1.11</a>."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -4840,9 +4758,9 @@ msgstr ""
#: orig-docs/Documentation.html:2074
msgid ""
"This directory should have as strict permissions as possible as the only "
-"user required to access this directory is the one who runs the webserver. If"
-" you have root privileges, simply make this user owner of this directory and"
-" make it accessible only by it:"
+"user required to access this directory is the one who runs the webserver. If "
+"you have root privileges, simply make this user owner of this directory and "
+"make it accessible only by it:"
msgstr ""
#. type: Content of: <html><body><div><dl><dd><pre>
@@ -4858,8 +4776,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2085
msgid ""
-"If you cannot change owner of the directory, you can achieve a similar setup"
-" using <abbr title=\"Access Control List\">ACL</abbr>:"
+"If you cannot change owner of the directory, you can achieve a similar setup "
+"using <abbr title=\"Access Control List\">ACL</abbr>:"
msgstr ""
#. type: Content of: <html><body><div><dl><dd><pre>
@@ -4955,14 +4873,17 @@ msgstr "$cfg['EditInWindow'] boolean"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:2129
-msgid "<span id=\"cfg_QueryWindowWidth\">$cfg['QueryWindowWidth'] </span>integer"
-msgstr "<span id=\"cfg_QueryWindowWidth\">$cfg['QueryWindowWidth'] </span>číslo"
+msgid ""
+"<span id=\"cfg_QueryWindowWidth\">$cfg['QueryWindowWidth'] </span>integer"
+msgstr ""
+"<span id=\"cfg_QueryWindowWidth\">$cfg['QueryWindowWidth'] </span>číslo"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:2130
msgid ""
"<span id=\"cfg_QueryWindowHeight\">$cfg['QueryWindowHeight'] </span>integer"
-msgstr "<span id=\"cfg_QueryWindowHeight\">$cfg['QueryWindowHeight'] </span>číslo"
+msgstr ""
+"<span id=\"cfg_QueryWindowHeight\">$cfg['QueryWindowHeight'] </span>číslo"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:2131
@@ -4971,8 +4892,10 @@ msgstr "<span id=\"cfg_QueryHistoryDB\">$cfg['QueryHistoryDB'] </span>boolean"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:2132
-msgid "<span id=\"cfg_QueryWindowDefTab\">$cfg['QueryWindowDefTab'] </span>string"
-msgstr "<span id=\"cfg_QueryWindowDefTab\">$cfg['QueryWindowDefTab'] </span>text"
+msgid ""
+"<span id=\"cfg_QueryWindowDefTab\">$cfg['QueryWindowDefTab'] </span>string"
+msgstr ""
+"<span id=\"cfg_QueryWindowDefTab\">$cfg['QueryWindowDefTab'] </span>text"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:2133
@@ -4982,8 +4905,8 @@ msgstr "<span id=\"cfg_QueryHistoryMax\">$cfg['QueryHistoryMax'] </span>číslo"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2136
msgid ""
-"All those variables affect the query window feature. A <tt><abbr "
-"title=\"structured query language\">SQL</abbr></tt> link or icon is always "
+"All those variables affect the query window feature. A <tt><abbr title="
+"\"structured query language\">SQL</abbr></tt> link or icon is always "
"displayed on the left panel. If JavaScript is enabled in your browser, a "
"click on this opens a distinct query window, which is a direct interface to "
"enter <abbr title=\"structured query language\">SQL</abbr> queries. "
@@ -4993,10 +4916,10 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2142
msgid ""
-"The size of this query window can be customized with "
-"<tt>$cfg['QueryWindowWidth']</tt> and <tt>$cfg['QueryWindowHeight']</tt> - "
-"both integers for the size in pixels. Note that normally, those parameters "
-"will be modified in <tt>layout.inc.php</tt> for the theme you are using."
+"The size of this query window can be customized with <tt>$cfg"
+"['QueryWindowWidth']</tt> and <tt>$cfg['QueryWindowHeight']</tt> - both "
+"integers for the size in pixels. Note that normally, those parameters will "
+"be modified in <tt>layout.inc.php</tt> for the theme you are using."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -5005,28 +4928,28 @@ msgid ""
"If <tt>$cfg['EditInWindow']</tt> is set to true, a click on [Edit] from the "
"results page (in the "Showing Rows" section) opens the query "
"window and puts the current query inside it. If set to false, clicking on "
-"the link puts the <abbr title=\"structured query language\">SQL</abbr> query"
-" in the right panel's query box."
+"the link puts the <abbr title=\"structured query language\">SQL</abbr> query "
+"in the right panel's query box."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2154
msgid ""
"The usage of the JavaScript query window is recommended if you have a "
-"JavaScript enabled browser. Basic functions are used to exchange quite a few"
-" variables, so most 4th generation browsers should be capable to use that "
-"feature. It currently is only tested with Internet Explorer 6 and Mozilla "
-"1.x."
+"JavaScript enabled browser. Basic functions are used to exchange quite a few "
+"variables, so most 4th generation browsers should be capable to use that "
+"feature. It currently is only tested with Internet Explorer 6 and Mozilla 1."
+"x."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2160
msgid ""
-"If <tt>$cfg['QueryHistoryDB']</tt> is set to <tt>TRUE</tt>, all your Queries"
-" are logged to a table, which has to be created by you (see <a "
-"href=\"#history\" class=\"configrule\">$cfg['Servers'][$i]['history']</a>)."
-" If set to FALSE, all your queries will be appended to the form, but only "
-"as long as your window is opened they remain saved."
+"If <tt>$cfg['QueryHistoryDB']</tt> is set to <tt>TRUE</tt>, all your Queries "
+"are logged to a table, which has to be created by you (see <a href=\"#history"
+"\" class=\"configrule\">$cfg['Servers'][$i]['history']</a>). If set to "
+"FALSE, all your queries will be appended to the form, but only as long as "
+"your window is opened they remain saved."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -5036,8 +4959,8 @@ msgid ""
"when you click on a new table/db to browse and will focus if you click on "
"\"Edit <abbr title=\"structured query language\">SQL</abbr>\" after using a "
"query. You can suppress updating the query window by checking the box \"Do "
-"not overwrite this query from outside the window\" below the query textarea."
-" Then you can browse tables/databases in the background without losing the "
+"not overwrite this query from outside the window\" below the query textarea. "
+"Then you can browse tables/databases in the background without losing the "
"contents of the textarea, so this is especially useful when composing a "
"query with tables you first have to look in. The checkbox will get "
"automatically checked whenever you change the contents of the textarea. "
@@ -5055,10 +4978,10 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2181
msgid ""
-"The query window also has a custom tabbed look to group the features. Using"
-" the variable <tt>$cfg['QueryWindowDefTab']</tt> you can specify the default"
-" tab to be used when opening the query window. It can be set to either "
-"'sql', 'files', 'history' or 'full'."
+"The query window also has a custom tabbed look to group the features. Using "
+"the variable <tt>$cfg['QueryWindowDefTab']</tt> you can specify the default "
+"tab to be used when opening the query window. It can be set to either 'sql', "
+"'files', 'history' or 'full'."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -5079,8 +5002,8 @@ msgstr "$cfg['MaxExactCount'] číslo"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2190
msgid ""
-"For InnoDB tables, determines for how large tables phpMyAdmin should get the"
-" exact row count using <code>SELECT COUNT</code>. If the approximate row "
+"For InnoDB tables, determines for how large tables phpMyAdmin should get the "
+"exact row count using <code>SELECT COUNT</code>. If the approximate row "
"count as returned by <code>SHOW TABLE STATUS</code> is smaller than this "
"value, <code>SELECT COUNT</code> will be used, otherwise the approximate "
"count will be used."
@@ -5095,8 +5018,8 @@ msgstr "$cfg['MaxExactCountViews'] číslo"
#: orig-docs/Documentation.html:2198
msgid ""
"For VIEWs, since obtaining the exact count could have an impact on "
-"performance, this value is the maximum to be displayed, using a <code>SELECT"
-" COUNT ... LIMIT</code>. The default value of 0 bypasses any row counting."
+"performance, this value is the maximum to be displayed, using a <code>SELECT "
+"COUNT ... LIMIT</code>. The default value of 0 bypasses any row counting."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -5161,8 +5084,8 @@ msgstr "$cfg['TitleDefault'] text"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2223
msgid ""
-"Allows you to specify window's title bar. You can use <a "
-"href=\"#faq6_27\">format string expansion</a>."
+"Allows you to specify window's title bar. You can use <a href="
+"\"#faq6_27\">format string expansion</a>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -5215,8 +5138,8 @@ msgstr "$cfg['ThemeManager'] boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2242
msgid ""
-"Enables user-selectable themes. See <a href=\"#faqthemes\"> <abbr "
-"title=\"Frequently Asked Questions\">FAQ</abbr> 2.7</a>."
+"Enables user-selectable themes. See <a href=\"#faqthemes\"> <abbr title="
+"\"Frequently Asked Questions\">FAQ</abbr> 2.7</a>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -5269,10 +5192,10 @@ msgstr "$cfg['SQP']['fmtType'] text [<tt>html</tt>|<tt>none</tt>]"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2261
msgid ""
-"The main use of the new <abbr title=\"structured query language\">SQL</abbr>"
-" Parser is to pretty-print <abbr title=\"structured query "
-"language\">SQL</abbr> queries. By default we use HTML to format the query, "
-"but you can disable this by setting this variable to <tt>'none'</tt>."
+"The main use of the new <abbr title=\"structured query language\">SQL</abbr> "
+"Parser is to pretty-print <abbr title=\"structured query language\">SQL</"
+"abbr> queries. By default we use HTML to format the query, but you can "
+"disable this by setting this variable to <tt>'none'</tt>."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -5283,27 +5206,26 @@ msgstr "$cfg['SQP']['fmtInd'] float"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:2267
msgid ""
-"<span id=\"cfg_SQP\">$cfg['SQP']['fmtIndUnit']</span> string "
-"[<tt>em</tt>|<tt>px</tt>|<tt>pt</tt>|<tt>ex</tt>]"
+"<span id=\"cfg_SQP\">$cfg['SQP']['fmtIndUnit']</span> string [<tt>em</tt>|"
+"<tt>px</tt>|<tt>pt</tt>|<tt>ex</tt>]"
msgstr ""
-"<span id=\"cfg_SQP\">$cfg['SQP']['fmtIndUnit']</span> text "
-"[<tt>em</tt>|<tt>px</tt>|<tt>pt</tt>|<tt>ex</tt>]"
+"<span id=\"cfg_SQP\">$cfg['SQP']['fmtIndUnit']</span> text [<tt>em</tt>|"
+"<tt>px</tt>|<tt>pt</tt>|<tt>ex</tt>]"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2268
msgid ""
-"For the pretty-printing of <abbr title=\"structured query "
-"language\">SQL</abbr> queries, under some cases the part of a query inside a"
-" bracket is indented. By changing <tt>$cfg['SQP']['fmtInd']</tt> you can "
-"change the amount of this indent."
+"For the pretty-printing of <abbr title=\"structured query language\">SQL</"
+"abbr> queries, under some cases the part of a query inside a bracket is "
+"indented. By changing <tt>$cfg['SQP']['fmtInd']</tt> you can change the "
+"amount of this indent."
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2271
msgid ""
-"Related in purpose is <tt>$cfg['SQP']['fmtIndUnit']</tt> which specifies the"
-" units of the indent amount that you specified. This is used via "
-"stylesheets."
+"Related in purpose is <tt>$cfg['SQP']['fmtIndUnit']</tt> which specifies the "
+"units of the indent amount that you specified. This is used via stylesheets."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -5315,8 +5237,8 @@ msgstr "$cfg['SQP']['fmtColor'] pole nebo dvojice textů"
#: orig-docs/Documentation.html:2276
msgid ""
"This array is used to define the colours for each type of element of the "
-"pretty-printed <abbr title=\"structured query language\">SQL</abbr> queries."
-" The tuple format is"
+"pretty-printed <abbr title=\"structured query language\">SQL</abbr> queries. "
+"The tuple format is"
msgstr ""
#. type: Content of: <html><body><div><dl><dd>
@@ -5479,19 +5401,18 @@ msgstr "$cfg['SQLValidator']['use'] boolean"
#. type: Content of: <html><body><div><dl><dd><dl><dd>
#: orig-docs/Documentation.html:2313
msgid ""
-"phpMyAdmin now supports use of the <a "
-"href=\"http://developer.mimer.com/validator/index.htm\">Mimer <abbr "
-"title=\"structured query language\">SQL</abbr> Validator</a> service, as "
-"originally published on <a "
-"href=\"http://developers.slashdot.org/article.pl?sid=02/02/19/1720246\">Slashdot</a>."
+"phpMyAdmin now supports use of the <a href=\"http://developer.mimer.com/"
+"validator/index.htm\">Mimer <abbr title=\"structured query language\">SQL</"
+"abbr> Validator</a> service, as originally published on <a href=\"http://"
+"developers.slashdot.org/article.pl?sid=02/02/19/1720246\">Slashdot</a>."
msgstr ""
#. type: Content of: <html><body><div><dl><dd><dl><dd>
#: orig-docs/Documentation.html:2317
msgid ""
-"For help in setting up your system to use the service, see the <a "
-"href=\"#faqsqlvalidator\"><abbr title=\"Frequently Asked "
-"Questions\">FAQ</abbr> 6.14</a>."
+"For help in setting up your system to use the service, see the <a href="
+"\"#faqsqlvalidator\"><abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
+"6.14</a>."
msgstr ""
#. type: Content of: <html><body><div><dl><dd><dl><dt>
@@ -5502,13 +5423,11 @@ msgstr "$cfg['SQLValidator']['username'] text"
#. type: Content of: <html><body><div><dl><dd><dl><dt>
#: orig-docs/Documentation.html:2322
msgid ""
-"<span "
-"id=\"cfg_SQLValidator_password\">$cfg['SQLValidator']['password']</span> "
-"string"
+"<span id=\"cfg_SQLValidator_password\">$cfg['SQLValidator']['password']</"
+"span> string"
msgstr ""
-"<span "
-"id=\"cfg_SQLValidator_password\">$cfg['SQLValidator']['password']</span> "
-"text"
+"<span id=\"cfg_SQLValidator_password\">$cfg['SQLValidator']['password']</"
+"span> text"
#. type: Content of: <html><body><div><dl><dd><dl><dd>
#: orig-docs/Documentation.html:2323
@@ -5596,10 +5515,9 @@ msgstr "$cfg['RestrictFunctions'] pole"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:2355
msgid ""
-"Functions preferred for column meta types as defined in <a "
-"href=\"#cfg_RestrictColumnTypes\" "
-"class=\"configrule\">$cfg['RestrictColumnTypes']</a>. In most cases you "
-"don't need to edit this."
+"Functions preferred for column meta types as defined in <a href="
+"\"#cfg_RestrictColumnTypes\" class=\"configrule\">$cfg['RestrictColumnTypes']"
+"</a>. In most cases you don't need to edit this."
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -5611,8 +5529,8 @@ msgstr "$cfg['DefaultFunctions'] pole"
#: orig-docs/Documentation.html:2360
msgid ""
"Functions selected by default when inserting/changing row, Functions are "
-"defined for meta types from <a href=\"#cfg_RestrictColumnTypes\" "
-"class=\"configrule\">$cfg['RestrictColumnTypes']</a> and for "
+"defined for meta types from <a href=\"#cfg_RestrictColumnTypes\" class="
+"\"configrule\">$cfg['RestrictColumnTypes']</a> and for "
"<code>first_timestamp</code>, which is used for first timestamp column in "
"table."
msgstr ""
@@ -5709,8 +5627,8 @@ msgid ""
"Say you have a column 'filename' which contains a filename. Normally you "
"would see in phpMyAdmin only this filename. Using transformations you can "
"transform that filename into a HTML link, so you can click inside of the "
-"phpMyAdmin structure on the column's link and will see the file displayed in"
-" a new browser window. Using transformation options you can also specify "
+"phpMyAdmin structure on the column's link and will see the file displayed in "
+"a new browser window. Using transformation options you can also specify "
"strings to append/prepend to a string or the format you want the output "
"stored in."
msgstr ""
@@ -5719,16 +5637,16 @@ msgstr ""
#: orig-docs/Documentation.html:2410
msgid ""
"For a general overview of all available transformations and their options, "
-"you can consult your <i><www.your-host.com>/<your-install-"
-"dir>/transformation_overview.php</i> installation."
+"you can consult your <i><www.your-host.com>/<your-install-dir>/"
+"transformation_overview.php</i> installation."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2415
msgid ""
-"For a tutorial on how to effectively use transformations, see our <a "
-"href=\"http://www.phpmyadmin.net/home_page/docs.php\">Link section</a> on "
-"the official phpMyAdmin homepage."
+"For a tutorial on how to effectively use transformations, see our <a href="
+"\"http://www.phpmyadmin.net/home_page/docs.php\">Link section</a> on the "
+"official phpMyAdmin homepage."
msgstr ""
#. type: Content of: <html><body><div><h3>
@@ -5741,8 +5659,8 @@ msgstr "2. Použití"
msgid ""
"Go to your <i>tbl_structure.php</i> page (i.e. reached through clicking on "
"the 'Structure' link for a table). There click on "Change" (or "
-"change icon) and there you will see three new fields at the end of the line."
-" They are called 'MIME-type', 'Browser transformation' and 'Transformation "
+"change icon) and there you will see three new fields at the end of the line. "
+"They are called 'MIME-type', 'Browser transformation' and 'Transformation "
"options'."
msgstr ""
@@ -5757,8 +5675,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:2432
msgid ""
-"The field 'Browser transformation' is a drop-down field. You can choose from"
-" a hopefully growing amount of pre-defined transformations. See below for "
+"The field 'Browser transformation' is a drop-down field. You can choose from "
+"a hopefully growing amount of pre-defined transformations. See below for "
"information on how to build your own transformation."
msgstr ""
@@ -5770,8 +5688,8 @@ msgid ""
"if necessary, into regard. Mimetype-bound transformations usually only "
"operate on a certain mimetype. There are transformations which operate on "
"the main mimetype (like 'image'), which will most likely take the subtype "
-"into regard, and those who only operate on a specific subtype (like "
-"'image/jpeg')."
+"into regard, and those who only operate on a specific subtype (like 'image/"
+"jpeg')."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -5787,8 +5705,8 @@ msgstr ""
msgid ""
"The field 'Transformation options' is a free-type textfield. You have to "
"enter transform-function specific options here. Usually the transforms can "
-"operate with default options, but it is generally a good idea to look up the"
-" overview to see which options are necessary."
+"operate with default options, but it is generally a good idea to look up the "
+"overview to see which options are necessary."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -5808,8 +5726,8 @@ msgid ""
"options of the specific mime-transform, as the last value of the set. Use "
"the format \"'; charset=XXX'\". If you use a transform, for which you can "
"specify 2 options and you want to append a character set, enter \"'first "
-"parameter','second parameter','charset=us-ascii'\". You can, however use the"
-" defaults for the parameters: \"'','','charset=us-ascii'\"."
+"parameter','second parameter','charset=us-ascii'\". You can, however use the "
+"defaults for the parameters: \"'','','charset=us-ascii'\"."
msgstr ""
#. type: Content of: <html><body><div><h3>
@@ -5882,8 +5800,8 @@ msgstr ""
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:2496
msgid ""
-"The transform function will the be called "
-"'<tt>PMA_transform_[mimetype]_[subtype]__[transform]()</tt>'."
+"The transform function will the be called '<tt>PMA_transform_[mimetype]_"
+"[subtype]__[transform]()</tt>'."
msgstr ""
#. type: Content of: <html><body><div><ol><li>
@@ -5916,16 +5834,16 @@ msgstr ""
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:2508
msgid ""
-"Please note that there are no single '_' characters. The transform "
-"function/filename may contain only characters which cause no problems in the"
-" file system as well as the PHP function naming convention."
+"Please note that there are no single '_' characters. The transform function/"
+"filename may contain only characters which cause no problems in the file "
+"system as well as the PHP function naming convention."
msgstr ""
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:2513
msgid ""
-"The transform function will the be called "
-"'<tt>PMA_transform_[mimetype]__[transform]()</tt>'."
+"The transform function will the be called '<tt>PMA_transform_[mimetype]__"
+"[transform]()</tt>'."
msgstr ""
#. type: Content of: <html><body><div><ol><li>
@@ -6005,8 +5923,8 @@ msgstr ""
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:2555
msgid ""
-"The transform function will the be called "
-"'<tt>PMA_transform_global__[transform]()</tt>'."
+"The transform function will the be called '<tt>PMA_transform_global__"
+"[transform]()</tt>'."
msgstr ""
#. type: Content of: <html><body><div><ol><li>
@@ -6022,8 +5940,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2564
msgid ""
-"So generally use '_' to split up mimetype and subtype, and '__' to provide a"
-" transform function."
+"So generally use '_' to split up mimetype and subtype, and '__' to provide a "
+"transform function."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -6044,9 +5962,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2574
msgid ""
-"To create a new transform function please see "
-"<tt>libraries/transformations/template_generator.sh</tt>. To create a new, "
-"empty mimetype please see "
+"To create a new transform function please see <tt>libraries/transformations/"
+"template_generator.sh</tt>. To create a new, empty mimetype please see "
"<tt>libraries/transformations/template_generator_mimetype.sh</tt>."
msgstr ""
@@ -6073,12 +5990,11 @@ msgstr ""
#: orig-docs/Documentation.html:2585
msgid ""
"<b>$meta</b> - Contains an object with information about your column. The "
-"data is drawn from the output of the <a "
-"href=\"http://www.php.net/mysql_fetch_field\">mysql_fetch_field()</a> "
-"function. This means, all object properties described on the <a "
-"href=\"http://www.php.net/mysql_fetch_field\">manual page</a> are available "
-"in this variable and can be used to transform a column accordingly to "
-"unsigned/zerofill/not_null/... properties."
+"data is drawn from the output of the <a href=\"http://www.php.net/"
+"mysql_fetch_field\">mysql_fetch_field()</a> function. This means, all object "
+"properties described on the <a href=\"http://www.php.net/mysql_fetch_field"
+"\">manual page</a> are available in this variable and can be used to "
+"transform a column accordingly to unsigned/zerofill/not_null/... properties."
msgstr ""
#. type: Content of: <html><body><div><ol><li>
@@ -6137,8 +6053,8 @@ msgstr "<a href=\"#faqmultiuser\">ISP, instalace pro více uživatelů</a>"
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:2615
msgid ""
-"<a href=\"#faqbrowsers\">Browsers or client <abbr title=\"operating "
-"system\">OS</abbr></a>"
+"<a href=\"#faqbrowsers\">Browsers or client <abbr title=\"operating system"
+"\">OS</abbr></a>"
msgstr "<a href=\"#faqbrowsers\">Prohlížeče a operační systémy</a>"
#. type: Content of: <html><body><div><ol><li>
@@ -6164,10 +6080,9 @@ msgstr "<a href=\"#faqsynchronization\">Synchronizace</a>"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2622
msgid ""
-"Please have a look at our <a "
-"href=\"http://www.phpmyadmin.net/home_page/docs.php\">Link section</a> on "
-"the official phpMyAdmin homepage for in-depth coverage of phpMyAdmin's "
-"features and or interface."
+"Please have a look at our <a href=\"http://www.phpmyadmin.net/home_page/docs."
+"php\">Link section</a> on the official phpMyAdmin homepage for in-depth "
+"coverage of phpMyAdmin's features and or interface."
msgstr ""
#. type: Content of: <html><body><div><h3>
@@ -6178,18 +6093,18 @@ msgstr "Server"
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:2630
msgid ""
-"<a href=\"#faq1_1\">1.1 My server is crashing each time a specific action is"
-" required or phpMyAdmin sends a blank page or a page full of cryptic "
+"<a href=\"#faq1_1\">1.1 My server is crashing each time a specific action is "
+"required or phpMyAdmin sends a blank page or a page full of cryptic "
"characters to my browser, what can I do?</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2634
msgid ""
-"Try to set the <a href=\"#cfg_OBGzip\" "
-"class=\"configrule\">$cfg['OBGzip']</a> directive to <tt>FALSE</tt> in your "
-"<i>config.inc.php</i> file and the <tt>zlib.output_compression</tt> "
-"directive to <tt>Off</tt> in your php configuration file."
+"Try to set the <a href=\"#cfg_OBGzip\" class=\"configrule\">$cfg['OBGzip']</"
+"a> directive to <tt>FALSE</tt> in your <i>config.inc.php</i> file and the "
+"<tt>zlib.output_compression</tt> directive to <tt>Off</tt> in your php "
+"configuration file."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -6207,8 +6122,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2643
msgid ""
-"See also the <a href=\"#faq1_1\"><abbr title=\"Frequently Asked "
-"Questions\">FAQ</abbr> 1.1</a> entry about PHP bugs with output buffering."
+"See also the <a href=\"#faq1_1\"><abbr title=\"Frequently Asked Questions"
+"\">FAQ</abbr> 1.1</a> entry about PHP bugs with output buffering."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -6227,19 +6142,18 @@ msgstr "<a href=\"#faq1_3\">1.3 (staženo).</a>"
#: orig-docs/Documentation.html:2653
msgid ""
"<a href=\"#faq1_4\">1.4 Using phpMyAdmin on <abbr title=\"Internet "
-"Information Services\">IIS</abbr>, I'm displayed the error message: "
-""The specified <abbr title=\"Common Gateway Interface\">CGI</abbr> "
-"application misbehaved by not returning a complete set of <abbr "
-"title=\"HyperText Transfer Protocol\">HTTP</abbr> headers ...".</a>"
+"Information Services\">IIS</abbr>, I'm displayed the error message: ""
+"The specified <abbr title=\"Common Gateway Interface\">CGI</abbr> "
+"application misbehaved by not returning a complete set of <abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> headers ...".</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2660
msgid ""
"You just forgot to read the <i>install.txt</i> file from the php "
-"distribution. Have a look at the last message in this <a "
-"href=\"http://bugs.php.net/bug.php?id=12061\">bug report</a> from the "
-"official PHP bug database."
+"distribution. Have a look at the last message in this <a href=\"http://bugs."
+"php.net/bug.php?id=12061\">bug report</a> from the official PHP bug database."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -6247,23 +6161,23 @@ msgstr ""
msgid ""
"<a href=\"#faq1_5\">1.5 Using phpMyAdmin on <abbr title=\"Internet "
"Information Services\">IIS</abbr>, I'm facing crashes and/or many error "
-"messages with the <abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr>.</a>"
+"messages with the <abbr title=\"HyperText Transfer Protocol\">HTTP</abbr>.</"
+"a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2671
msgid ""
"This is a known problem with the PHP <abbr title=\"Internet Server "
-"Application Programming Interface\">ISAPI</abbr> filter: it's not so stable."
-" Please use instead the cookie authentication mode."
+"Application Programming Interface\">ISAPI</abbr> filter: it's not so stable. "
+"Please use instead the cookie authentication mode."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:2677
msgid ""
-"<a href=\"#faq1_6\">1.6 I can't use phpMyAdmin on PWS: nothing is "
-"displayed!</a>"
+"<a href=\"#faq1_6\">1.6 I can't use phpMyAdmin on PWS: nothing is displayed!"
+"</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -6272,47 +6186,46 @@ msgid ""
"This seems to be a PWS bug. Filippo Simoncini found a workaround (at this "
"time there is no better fix): remove or comment the <tt>DOCTYPE</tt> "
"declarations (2 lines) from the scripts <i>libraries/header.inc.php</i>, "
-"<i>libraries/header_printview.inc.php</i>, <i>index.php</i>, "
-"<i>navigation.php</i> and <i>libraries/common.lib.php</i>."
+"<i>libraries/header_printview.inc.php</i>, <i>index.php</i>, <i>navigation."
+"php</i> and <i>libraries/common.lib.php</i>."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:2686
msgid ""
-"<a href=\"#faq1_7\">1.7 How can I GZip or Bzip a dump or a <abbr "
-"title=\"comma separated values\">CSV</abbr> export? It does not seem to "
-"work.</a>"
+"<a href=\"#faq1_7\">1.7 How can I GZip or Bzip a dump or a <abbr title="
+"\"comma separated values\">CSV</abbr> export? It does not seem to work.</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2690
msgid ""
-"These features are based on the <tt>gzencode()</tt> and "
-"<tt>bzcompress()</tt> PHP functions to be more independent of the platform "
-"(Unix/Windows, Safe Mode or not, and so on). So, you must have Zlib/Bzip2 "
-"support (<tt>--with-zlib</tt> and <tt>--with-bz2</tt>)."
+"These features are based on the <tt>gzencode()</tt> and <tt>bzcompress()</"
+"tt> PHP functions to be more independent of the platform (Unix/Windows, Safe "
+"Mode or not, and so on). So, you must have Zlib/Bzip2 support (<tt>--with-"
+"zlib</tt> and <tt>--with-bz2</tt>)."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:2696
msgid ""
-"<a href=\"#faq1_8\">1.8 I cannot insert a text file in a table, and I get an"
-" error about safe mode being in effect.</a>"
+"<a href=\"#faq1_8\">1.8 I cannot insert a text file in a table, and I get an "
+"error about safe mode being in effect.</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2699
msgid ""
-"Your uploaded file is saved by PHP in the "upload dir", as defined"
-" in <i>php.ini</i> by the variable <tt>upload_tmp_dir</tt> (usually the "
+"Your uploaded file is saved by PHP in the "upload dir", as defined "
+"in <i>php.ini</i> by the variable <tt>upload_tmp_dir</tt> (usually the "
"system default is <i>/tmp</i>)."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2702
msgid ""
-"We recommend the following setup for Apache servers running in safe mode, to"
-" enable uploads of files while being reasonably secure:"
+"We recommend the following setup for Apache servers running in safe mode, to "
+"enable uploads of files while being reasonably secure:"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -6323,8 +6236,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:2706
msgid ""
-"give ownership to the Apache server's user.group: <tt>chown apache.apache "
-"/tmp/php</tt>"
+"give ownership to the Apache server's user.group: <tt>chown apache.apache /"
+"tmp/php</tt>"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -6393,15 +6306,15 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:2739
msgid ""
-"<a href=\"#faq1_12\">1.12 I have lost my MySQL root password, what can I "
-"do?</a>"
+"<a href=\"#faq1_12\">1.12 I have lost my MySQL root password, what can I do?"
+"</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2741
msgid ""
-"The MySQL manual explains how to <a href=\"http://dev.mysql.com/doc/mysql/en"
-"/resetting-permissions.html\"> reset the permissions</a>."
+"The MySQL manual explains how to <a href=\"http://dev.mysql.com/doc/mysql/en/"
+"resetting-permissions.html\"> reset the permissions</a>."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -6439,9 +6352,9 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2764
msgid ""
-"Starting with version 2.7.0, the import engine has been re–written and"
-" these problems should not occur. If possible, upgrade your phpMyAdmin to "
-"the latest version to take advantage of the new import features."
+"Starting with version 2.7.0, the import engine has been re–written and "
+"these problems should not occur. If possible, upgrade your phpMyAdmin to the "
+"latest version to take advantage of the new import features."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -6465,11 +6378,10 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:2778
msgid ""
-"Look at the <a href=\"#cfg_UploadDir\" "
-"class=\"configrule\">$cfg['UploadDir']</a> feature. This allows one to "
-"upload a file to the server via scp, ftp, or your favorite file transfer "
-"method. PhpMyAdmin is then able to import the files from the temporary "
-"directory. More information is available in the <a "
+"Look at the <a href=\"#cfg_UploadDir\" class=\"configrule\">$cfg['UploadDir']"
+"</a> feature. This allows one to upload a file to the server via scp, ftp, "
+"or your favorite file transfer method. PhpMyAdmin is then able to import the "
+"files from the temporary directory. More information is available in the <a "
"href=\"#config\">Configuration section</a> of this document."
msgstr ""
@@ -6501,11 +6413,10 @@ msgstr ""
msgid ""
"Since phpMyAdmin 3.0.x, only MySQL 5.0.1 and newer are supported. For older "
"MySQL versions, you need to use the latest 2.x branch. phpMyAdmin can "
-"connect to your MySQL server using PHP's classic <a "
-"href=\"http://php.net/mysql\">MySQL extension</a> as well as the <a "
-"href=\"http://php.net/mysqli\">improved MySQL extension (MySQLi)</a> that is"
-" available in php 5.0. The latter one should be used unless you have a good "
-"reason not to do so."
+"connect to your MySQL server using PHP's classic <a href=\"http://php.net/"
+"mysql\">MySQL extension</a> as well as the <a href=\"http://php.net/mysqli"
+"\">improved MySQL extension (MySQLi)</a> that is available in php 5.0. The "
+"latter one should be used unless you have a good reason not to do so."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -6514,8 +6425,8 @@ msgid ""
"When compiling PHP, we strongly recommend that you manually link the MySQL "
"extension of your choice to a MySQL client library of at least the same "
"minor version since the one that is bundled with some PHP distributions is "
-"rather old and might cause problems <a href=\"#faq1_17a\"> (see <abbr "
-"title=\"Frequently Asked Questions\">FAQ</abbr> 1.17a)</a>."
+"rather old and might cause problems <a href=\"#faq1_17a\"> (see <abbr title="
+"\"Frequently Asked Questions\">FAQ</abbr> 1.17a)</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -6537,8 +6448,8 @@ msgid ""
"You tried to access MySQL with an old MySQL client library. The version of "
"your MySQL client library can be checked in your phpinfo() output. In "
"general, it should have at least the same minor version as your server - as "
-"mentioned in <a href=\"#faq1_17\"> <abbr title=\"Frequently Asked "
-"Questions\">FAQ</abbr> 1.17</a>."
+"mentioned in <a href=\"#faq1_17\"> <abbr title=\"Frequently Asked Questions"
+"\">FAQ</abbr> 1.17</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -6546,13 +6457,12 @@ msgstr ""
msgid ""
"This problem is generally caused by using MySQL version 4.1 or newer. MySQL "
"changed the authentication hash and your PHP is trying to use the old "
-"method. The proper solution is to use the <a "
-"href=\"http://www.php.net/mysqli\">mysqli extension</a> with the proper "
-"client library to match your MySQL installation. Your chosen extension is "
-"specified in <a href=\"#cfg_Servers_extension\" "
-"class=\"configrule\">$cfg['Servers'][$i]['extension']</a>. More information"
-" (and several workarounds) are located in the <a "
-"href=\"http://dev.mysql.com/doc/mysql/en/old-client.html\">MySQL "
+"method. The proper solution is to use the <a href=\"http://www.php.net/"
+"mysqli\">mysqli extension</a> with the proper client library to match your "
+"MySQL installation. Your chosen extension is specified in <a href="
+"\"#cfg_Servers_extension\" class=\"configrule\">$cfg['Servers'][$i]"
+"['extension']</a>. More information (and several workarounds) are located "
+"in the <a href=\"http://dev.mysql.com/doc/mysql/en/old-client.html\">MySQL "
"Documentation</a>."
msgstr ""
@@ -6594,16 +6504,16 @@ msgstr ""
msgid ""
"To connect to a MySQL server, PHP needs a set of MySQL functions called "
""MySQL extension". This extension may be part of the PHP "
-"distribution (compiled-in), otherwise it needs to be loaded dynamically. Its"
-" name is probably <i>mysql.so</i> or <i>php_mysql.dll</i>. phpMyAdmin tried "
+"distribution (compiled-in), otherwise it needs to be loaded dynamically. Its "
+"name is probably <i>mysql.so</i> or <i>php_mysql.dll</i>. phpMyAdmin tried "
"to load the extension but failed."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2854
msgid ""
-"Usually, the problem is solved by installing a software package called ""
-";PHP-MySQL" or something similar."
+"Usually, the problem is solved by installing a software package called ""
+"PHP-MySQL" or something similar."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -6690,8 +6600,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2896
msgid ""
-"A tip from Jose Fandos: put a comment on the following two lines in "
-"httpd.conf, like this:"
+"A tip from Jose Fandos: put a comment on the following two lines in httpd."
+"conf, like this:"
msgstr ""
#. type: Content of: <html><body><div><pre>
@@ -6714,9 +6624,9 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:2908
msgid ""
-"<a href=\"#faq1_26\">1.26 I just installed phpMyAdmin in my document root of"
-" <abbr title=\"Internet Information Services\">IIS</abbr> but I get the "
-"error "No input file specified" when trying to run phpMyAdmin.</a>"
+"<a href=\"#faq1_26\">1.26 I just installed phpMyAdmin in my document root of "
+"<abbr title=\"Internet Information Services\">IIS</abbr> but I get the error "
+""No input file specified" when trying to run phpMyAdmin.</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -6739,10 +6649,9 @@ msgstr ""
#: orig-docs/Documentation.html:2922
msgid ""
"This is a <a href=\"http://bugs.php.net/21079\">PHP bug</a> that occur when "
-"GZIP output buffering is enabled. If you turn off it (by <a "
-"href=\"#cfg_OBGzip\" class=\"configrule\">$cfg['OBGzip'] = false</a> in "
-"<i>config.inc.php</i>), it should work. This bug will be fixed in "
-"PHP 5.0.0."
+"GZIP output buffering is enabled. If you turn off it (by <a href="
+"\"#cfg_OBGzip\" class=\"configrule\">$cfg['OBGzip'] = false</a> in <i>config."
+"inc.php</i>), it should work. This bug will be fixed in PHP 5.0.0."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -6756,17 +6665,17 @@ msgstr ""
#: orig-docs/Documentation.html:2932
msgid ""
"This can happen due to a MySQL bug when having database / table names with "
-"upper case characters although <tt>lower_case_table_names</tt> is set to 1."
-" To fix this, turn off this directive, convert all database and table names"
-" to lower case and turn it on again. Alternatively, there's a bug-fix "
+"upper case characters although <tt>lower_case_table_names</tt> is set to 1. "
+"To fix this, turn off this directive, convert all database and table names "
+"to lower case and turn it on again. Alternatively, there's a bug-fix "
"available starting with MySQL 3.23.56 / 4.0.11-gamma."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:2939
msgid ""
-"<a href=\"#faq1_29\">1.29 When I create a table or modify a column, I get an"
-" error and the columns are duplicated.</a>"
+"<a href=\"#faq1_29\">1.29 When I create a table or modify a column, I get an "
+"error and the columns are duplicated.</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -6807,9 +6716,9 @@ msgstr "AddType application/x-httpd-php .php"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2957
msgid ""
-"In the case we saw, one set of directives was in "
-"<tt>/etc/httpd/conf/httpd.conf</tt>, while the other set was in "
-"<tt>/etc/httpd/conf/addon-modules/php.conf</tt>."
+"In the case we saw, one set of directives was in <tt>/etc/httpd/conf/httpd."
+"conf</tt>, while the other set was in <tt>/etc/httpd/conf/addon-modules/php."
+"conf</tt>."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -6839,8 +6748,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:2971
msgid ""
-"This problem is known to happen when the server is running Turck MMCache but"
-" upgrading MMCache to version 2.3.21 solves the problem."
+"This problem is known to happen when the server is running Turck MMCache but "
+"upgrading MMCache to version 2.3.21 solves the problem."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -6863,9 +6772,9 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:2984
msgid ""
-"<a href=\"#faq1_32\">1.32 Can I use <abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> authentication with <abbr title=\"Internet "
-"Information Services\">IIS</abbr>?</a>"
+"<a href=\"#faq1_32\">1.32 Can I use <abbr title=\"HyperText Transfer Protocol"
+"\">HTTP</abbr> authentication with <abbr title=\"Internet Information "
+"Services\">IIS</abbr>?</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -6915,28 +6824,27 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3007
msgid ""
-"<a href=\"#faq1_34\">1.34 Can I access directly to database or table "
-"pages?</a>"
+"<a href=\"#faq1_34\">1.34 Can I access directly to database or table pages?</"
+"a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3009
msgid ""
-"Yes. Out of the box, you can use <abbr title=\"Uniform Resource "
-"Locator\">URL</abbr>s like "
-"http://server/phpMyAdmin/index.php?server=X&db=database&table=table…."
-" For <tt>server</tt> you use the server number which refers to the order of "
-"the server paragraph in <tt>config.inc.php</tt>. Table and script parts are"
-" optional. If you want http://server/phpMyAdmin/database[/table][/script] "
-"<abbr title=\"Uniform Resource Locator\">URL</abbr>s, you need to do some "
-"configuration. Following lines apply only for <a "
-"href=\"http://httpd.apache.org\">Apache</a> web server. First make sure, "
-"that you have enabled some features within global configuration. You need "
-"<code>Options FollowSymLinks</code> and <code>AllowOverride FileInfo</code> "
-"enabled for directory where phpMyAdmin is installed and you need mod_rewrite"
-" to be enabled. Then you just need to create following "
-"<code>.htaccess</code> file in root folder of phpMyAdmin installation (don't"
-" forget to change directory name inside of it):"
+"Yes. Out of the box, you can use <abbr title=\"Uniform Resource Locator"
+"\">URL</abbr>s like http://server/phpMyAdmin/index.php?server=X&"
+"db=database&table=table&target=script. For <tt>server</tt> you use "
+"the server number which refers to the order of the server paragraph in "
+"<tt>config.inc.php</tt>. Table and script parts are optional. If you want "
+"http://server/phpMyAdmin/database[/table][/script] <abbr title=\"Uniform "
+"Resource Locator\">URL</abbr>s, you need to do some configuration. Following "
+"lines apply only for <a href=\"http://httpd.apache.org\">Apache</a> web "
+"server. First make sure, that you have enabled some features within global "
+"configuration. You need <code>Options FollowSymLinks</code> and "
+"<code>AllowOverride FileInfo</code> enabled for directory where phpMyAdmin "
+"is installed and you need mod_rewrite to be enabled. Then you just need to "
+"create following <code>.htaccess</code> file in root folder of phpMyAdmin "
+"installation (don't forget to change directory name inside of it):"
msgstr ""
#. type: Content of: <html><body><div><pre>
@@ -6960,16 +6868,16 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3033
msgid ""
-"<a href=\"#faq1_35\">1.35 Can I use <abbr title=\"HyperText Transfer "
-"Protocol\">HTTP</abbr> authentication with Apache <abbr title=\"Common "
-"Gateway Interface\">CGI</abbr>?</a>"
+"<a href=\"#faq1_35\">1.35 Can I use <abbr title=\"HyperText Transfer Protocol"
+"\">HTTP</abbr> authentication with Apache <abbr title=\"Common Gateway "
+"Interface\">CGI</abbr>?</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3035
msgid ""
-"Yes. However you need to pass authentication variable to <abbr "
-"title=\"Common Gateway Interface\">CGI</abbr> using following rewrite rule:"
+"Yes. However you need to pass authentication variable to <abbr title="
+"\"Common Gateway Interface\">CGI</abbr> using following rewrite rule:"
msgstr ""
#. type: Content of: <html><body><div><pre>
@@ -6992,8 +6900,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3047
msgid ""
-"There can be many explanations to this and a look at your server's error log"
-" file might give a clue."
+"There can be many explanations to this and a look at your server's error log "
+"file might give a clue."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -7007,9 +6915,9 @@ msgstr ""
#: orig-docs/Documentation.html:3055
msgid ""
"If your cluster consist of different architectures, PHP code used for "
-"encryption/decryption won't work correct. This is caused by use of "
-"pack/unpack functions in code. Only solution is to use mcrypt extension "
-"which works fine in this case."
+"encryption/decryption won't work correct. This is caused by use of pack/"
+"unpack functions in code. Only solution is to use mcrypt extension which "
+"works fine in this case."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -7023,18 +6931,18 @@ msgstr ""
#: orig-docs/Documentation.html:3063
msgid ""
"Yes but the default configuration values of Suhosin are known to cause "
-"problems with some operations, for example editing a table with many columns"
-" and no primary key or with textual primary key."
+"problems with some operations, for example editing a table with many columns "
+"and no primary key or with textual primary key."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3068
msgid ""
-"Suhosin configuration might lead to malfunction in some cases and it can not"
-" be fully avoided as phpMyAdmin is kind of application which needs to "
+"Suhosin configuration might lead to malfunction in some cases and it can not "
+"be fully avoided as phpMyAdmin is kind of application which needs to "
"transfer big amounts of columns in single HTTP request, what is something "
-"what Suhosin tries to prevent. Generally all <code>suhosin.request.*</code>,"
-" <code>suhosin.post.*</code> and <code>suhosin.get.*</code> directives can "
+"what Suhosin tries to prevent. Generally all <code>suhosin.request.*</code>, "
+"<code>suhosin.post.*</code> and <code>suhosin.get.*</code> directives can "
"have negative effect on phpMyAdmin usability. You can always find in your "
"error logs which limit did cause dropping of variable, so you can diagnose "
"the problem and adjust matching configuration variable."
@@ -7050,89 +6958,88 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3084
msgid ""
-"<a href=\"http://www.hardened-"
-"php.net/suhosin/configuration.html#suhosin.request.max_vars\">suhosin.request.max_vars</a>"
-" should be increased (eg. 2048)"
+"<a href=\"http://www.hardened-php.net/suhosin/configuration.html#suhosin."
+"request.max_vars\">suhosin.request.max_vars</a> should be increased (eg. "
+"2048)"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3085
msgid ""
-"<a href=\"http://www.hardened-"
-"php.net/suhosin/configuration.html#suhosin.post.max_vars\">suhosin.post.max_vars</a>"
-" should be increased (eg. 2048)"
+"<a href=\"http://www.hardened-php.net/suhosin/configuration.html#suhosin."
+"post.max_vars\">suhosin.post.max_vars</a> should be increased (eg. 2048)"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3086
msgid ""
-"<a href=\"http://www.hardened-"
-"php.net/suhosin/configuration.html#suhosin.request.max_array_index_length\">suhosin.request.max_array_index_length</a>"
-" should be increased (eg. 256)"
+"<a href=\"http://www.hardened-php.net/suhosin/configuration.html#suhosin."
+"request.max_array_index_length\">suhosin.request.max_array_index_length</a> "
+"should be increased (eg. 256)"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3087
msgid ""
-"<a href=\"http://www.hardened-"
-"php.net/suhosin/configuration.html#suhosin.post.max_array_index_length\">suhosin.post.max_array_index_length</a>"
-" should be increased (eg. 256)"
+"<a href=\"http://www.hardened-php.net/suhosin/configuration.html#suhosin."
+"post.max_array_index_length\">suhosin.post.max_array_index_length</a> should "
+"be increased (eg. 256)"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3088
msgid ""
-"<a href=\"http://www.hardened-"
-"php.net/suhosin/configuration.html#suhosin.request.max_totalname_length\">suhosin.request.max_totalname_length</a>"
-" should be increased (eg. 8192)"
+"<a href=\"http://www.hardened-php.net/suhosin/configuration.html#suhosin."
+"request.max_totalname_length\">suhosin.request.max_totalname_length</a> "
+"should be increased (eg. 8192)"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3089
msgid ""
-"<a href=\"http://www.hardened-"
-"php.net/suhosin/configuration.html#suhosin.post.max_totalname_length\">suhosin.post.max_totalname_length</a>"
-" should be increased (eg. 8192)"
+"<a href=\"http://www.hardened-php.net/suhosin/configuration.html#suhosin."
+"post.max_totalname_length\">suhosin.post.max_totalname_length</a> should be "
+"increased (eg. 8192)"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3090
msgid ""
-"<a href=\"http://www.hardened-"
-"php.net/suhosin/configuration.html#suhosin.sql.bailout_on_error\">suhosin.sql.bailout_on_error</a>"
-" needs to be disabled (the default)"
+"<a href=\"http://www.hardened-php.net/suhosin/configuration.html#suhosin.sql."
+"bailout_on_error\">suhosin.sql.bailout_on_error</a> needs to be disabled "
+"(the default)"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3091
msgid ""
-"<a href=\"http://www.hardened-"
-"php.net/suhosin/configuration.html#logging_configuration\">suhosin.log.*</a>"
-" should not include SQL, otherwise you get big slowdown"
+"<a href=\"http://www.hardened-php.net/suhosin/configuration."
+"html#logging_configuration\">suhosin.log.*</a> should not include SQL, "
+"otherwise you get big slowdown"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3095
msgid ""
-"You can also disable the warning using the <a "
-"href=\"#cfg_SuhosinDisableWarning\"> <tt>SuhosinDisableWarning</tt> "
-"directive</a>."
+"You can also disable the warning using the <a href="
+"\"#cfg_SuhosinDisableWarning\"> <tt>SuhosinDisableWarning</tt> directive</a>."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3100
msgid ""
-"<a href=\"#faq1_39\">1.39 When I try to connect via https, I can log in, but"
-" then my connection is redirected back to http. What can cause this "
-"behavior?</a>"
+"<a href=\"#faq1_39\">1.39 When I try to connect via https, I can log in, but "
+"then my connection is redirected back to http. What can cause this behavior?"
+"</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3104
msgid ""
-"Be sure that you have enabled <tt>SSLOptions</tt> and <tt>StdEnvVars</tt> in"
-" your Apache configuration. See <a "
-"href=\"http://httpd.apache.org/docs/2.0/mod/mod_ssl.html#ssloptions\">http://httpd.apache.org/docs/2.0/mod/mod_ssl.html#ssloptions</a>."
+"Be sure that you have enabled <tt>SSLOptions</tt> and <tt>StdEnvVars</tt> in "
+"your Apache configuration. See <a href=\"http://httpd.apache.org/docs/2.0/"
+"mod/mod_ssl.html#ssloptions\">http://httpd.apache.org/docs/2.0/mod/mod_ssl."
+"html#ssloptions</a>."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -7193,9 +7100,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3131
msgid ""
-"See <a "
-"href=\"http://httpd.apache.org/docs/2.2/mod/mod_proxy.html\">http://httpd.apache.org/docs/2.2/mod/mod_proxy.html</a>"
-" for more details."
+"See <a href=\"http://httpd.apache.org/docs/2.2/mod/mod_proxy.html\">http://"
+"httpd.apache.org/docs/2.2/mod/mod_proxy.html</a> for more details."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -7224,12 +7130,11 @@ msgstr ""
#: orig-docs/Documentation.html:3148
msgid ""
"Edit your <i>config.inc.php</i> file and ensure there is nothing (I.E. no "
-"blank lines, no spaces, no characters...) neither before the "
-"<tt><?php</tt> tag at the beginning, neither after the <tt>?></tt> tag"
-" at the end. We also got a report from a user under IIS, that used a zipped "
-"distribution kit: the file <tt>libraries/Config.class.php</tt> contained an "
-"end-of-line character (hex 0A) at the end; removing this character cleared "
-"his errors."
+"blank lines, no spaces, no characters...) neither before the <tt><?php</"
+"tt> tag at the beginning, neither after the <tt>?></tt> tag at the end. "
+"We also got a report from a user under IIS, that used a zipped distribution "
+"kit: the file <tt>libraries/Config.class.php</tt> contained an end-of-line "
+"character (hex 0A) at the end; removing this character cleared his errors."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -7243,16 +7148,16 @@ msgstr ""
msgid ""
"Either there is an error with your PHP setup or your username/password is "
"wrong. Try to make a small script which uses mysql_connect and see if it "
-"works. If it doesn't, it may be you haven't even compiled MySQL support into"
-" PHP."
+"works. If it doesn't, it may be you haven't even compiled MySQL support into "
+"PHP."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3165
msgid ""
"<a href=\"#faq2_3\">2.3 The error message "Warning: MySQL Connection "
-"Failed: Can't connect to local MySQL server through socket '/tmp/mysql.sock'"
-" (111) ..." is displayed. What can I do?</a>"
+"Failed: Can't connect to local MySQL server through socket '/tmp/mysql."
+"sock' (111) ..." is displayed. What can I do?</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -7302,10 +7207,10 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3185
msgid ""
-"To do this, telnet to your server and go to the MySQL bin directory. In this"
-" directory there should be a file named <i>mysqladmin</i>. Type "
-"<tt>./mysqladmin variables</tt>, and this should give you a bunch of info "
-"about your MySQL server, including the socket (<i>/tmp/mysql.sock</i>, for "
+"To do this, telnet to your server and go to the MySQL bin directory. In this "
+"directory there should be a file named <i>mysqladmin</i>. Type <tt>./"
+"mysqladmin variables</tt>, and this should give you a bunch of info about "
+"your MySQL server, including the socket (<i>/tmp/mysql.sock</i>, for "
"example)."
msgstr ""
@@ -7317,53 +7222,53 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3190
msgid ""
-"To do this in phpMyAdmin, you need to complete the socket information in the"
-" <i>config.inc.php</i>."
+"To do this in phpMyAdmin, you need to complete the socket information in the "
+"<i>config.inc.php</i>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3193
msgid ""
-"For example: <a href=\"#cfg_Servers_socket\" class=\"configrule\"> "
-"$cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock';</a>"
+"For example: <a href=\"#cfg_Servers_socket\" class=\"configrule\"> $cfg"
+"['Servers'][$i]['socket'] = '/tmp/mysql.sock';</a>"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3198
msgid ""
-"Please also make sure that the permissions of this file allow to be readable"
-" by your webserver (i.e. '0755')."
+"Please also make sure that the permissions of this file allow to be readable "
+"by your webserver (i.e. '0755')."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3202
msgid ""
"Have also a look at the <a href=\"http://dev.mysql.com/doc/en/can-not-"
-"connect-to-server.html\"> corresponding section of the MySQL "
-"documentation</a>."
+"connect-to-server.html\"> corresponding section of the MySQL documentation</"
+"a>."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3207
msgid ""
-"<a href=\"#faq2_4\">2.4 Nothing is displayed by my browser when I try to run"
-" phpMyAdmin, what can I do?</a>"
+"<a href=\"#faq2_4\">2.4 Nothing is displayed by my browser when I try to run "
+"phpMyAdmin, what can I do?</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3210
msgid ""
-"Try to set the <a href=\"#cfg_OBGzip\" "
-"class=\"configrule\">$cfg['OBGZip']</a> directive to <tt>FALSE</tt> in the "
-"phpMyAdmin configuration file. It helps sometime."
+"Try to set the <a href=\"#cfg_OBGzip\" class=\"configrule\">$cfg['OBGZip']</"
+"a> directive to <tt>FALSE</tt> in the phpMyAdmin configuration file. It "
+"helps sometime."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3213
msgid ""
-"Also have a look at your PHP version number: if it contains "
-""4.0b..." it means you're running a beta version of PHP. That's "
-"not a so good idea, please upgrade to a plain revision."
+"Also have a look at your PHP version number: if it contains "4.0b..."
+"" it means you're running a beta version of PHP. That's not a so good "
+"idea, please upgrade to a plain revision."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -7378,8 +7283,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3222
msgid ""
-"Check the value you set for the <a href=\"#cfg_PmaAbsoluteUri\" "
-"class=\"configrule\">$cfg['PmaAbsoluteUri']</a> directive in the phpMyAdmin "
+"Check the value you set for the <a href=\"#cfg_PmaAbsoluteUri\" class="
+"\"configrule\">$cfg['PmaAbsoluteUri']</a> directive in the phpMyAdmin "
"configuration file."
msgstr ""
@@ -7395,17 +7300,16 @@ msgstr ""
#: orig-docs/Documentation.html:3231
msgid ""
"When you are using a port on your localhost, which you redirect via port-"
-"forwarding to another host, MySQL is not resolving the localhost as "
-"expected."
+"forwarding to another host, MySQL is not resolving the localhost as expected."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3234
msgid ""
-"Erik Wasser explains: The solution is: if your host is "localhost""
-" MySQL (the command line tool <code>mysql</code> as well) always tries to "
-"use the socket connection for speeding up things. And that doesn't work in "
-"this configuration with port forwarding."
+"Erik Wasser explains: The solution is: if your host is "localhost" "
+"MySQL (the command line tool <code>mysql</code> as well) always tries to use "
+"the socket connection for speeding up things. And that doesn't work in this "
+"configuration with port forwarding."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -7423,29 +7327,28 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3243
msgid ""
-"Themes are configured with <a href=\"#cfg_ThemePath\" "
-"class=\"configrule\">$cfg['ThemePath']</a>, <a href=\"#cfg_ThemeManager\" "
-"class=\"configrule\">$cfg['ThemeManager']</a> and <a "
-"href=\"#cfg_ThemeDefault\" class=\"configrule\">$cfg['ThemeDefault']</a>."
+"Themes are configured with <a href=\"#cfg_ThemePath\" class=\"configrule\">"
+"$cfg['ThemePath']</a>, <a href=\"#cfg_ThemeManager\" class=\"configrule\">"
+"$cfg['ThemeManager']</a> and <a href=\"#cfg_ThemeDefault\" class=\"configrule"
+"\">$cfg['ThemeDefault']</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3248
msgid ""
-"Under <a href=\"#cfg_ThemePath\" class=\"configrule\">$cfg['ThemePath']</a>,"
-" you should not delete the directory "original" or its underlying "
-"structure, because this is the system theme used by phpMyAdmin. "
-""original" contains all images and styles, for backwards "
-"compatibility and for all themes that would not include images or css-files."
+"Under <a href=\"#cfg_ThemePath\" class=\"configrule\">$cfg['ThemePath']</a>, "
+"you should not delete the directory "original" or its underlying "
+"structure, because this is the system theme used by phpMyAdmin. ""
+"original" contains all images and styles, for backwards compatibility "
+"and for all themes that would not include images or css-files."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3255
msgid ""
-"If <a href=\"#cfg_ThemeManager\" "
-"class=\"configrule\">$cfg['ThemeManager']</a> is enabled, you can select "
-"your favorite theme on the main page. Your selected theme will be stored in "
-"a cookie."
+"If <a href=\"#cfg_ThemeManager\" class=\"configrule\">$cfg['ThemeManager']</"
+"a> is enabled, you can select your favorite theme on the main page. Your "
+"selected theme will be stored in a cookie."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -7464,8 +7367,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3264
msgid ""
-"copy the files and directories from "original" to "
-""your_theme_name""
+"copy the files and directories from "original" to ""
+"your_theme_name""
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -7493,8 +7396,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3271
msgid ""
-"make a new screenshot of your theme and save it under "
-""your_theme_name/screen.png""
+"make a new screenshot of your theme and save it under "your_theme_name/"
+"screen.png""
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -7511,8 +7414,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3282
msgid ""
-"If you do not want to use your own symbols and buttons, remove the directory"
-" "img" in "your_theme_name". phpMyAdmin will use the "
+"If you do not want to use your own symbols and buttons, remove the directory "
+""img" in "your_theme_name". phpMyAdmin will use the "
"default icons and buttons (from the system-theme "original")."
msgstr ""
@@ -7531,28 +7434,27 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3293
msgid ""
-"In <tt>config.inc.php</tt>, try to leave the <a href=\"#cfg_PmaAbsoluteUri\""
-" class=\"configrule\">$cfg['PmaAbsoluteUri']</a> directive empty. See also "
-"<a href=\"#faq4_7\"><abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
-"4.7</a>."
+"In <tt>config.inc.php</tt>, try to leave the <a href=\"#cfg_PmaAbsoluteUri\" "
+"class=\"configrule\">$cfg['PmaAbsoluteUri']</a> directive empty. See also <a "
+"href=\"#faq4_7\"><abbr title=\"Frequently Asked Questions\">FAQ</abbr> 4.7</"
+"a>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3298
msgid ""
"Maybe you have a broken PHP installation or you need to upgrade your Zend "
-"Optimizer. See <a href=\"http://bugs.php.net/bug.php?id=31134\"> "
-"http://bugs.php.net/bug.php?id=31134</a>."
+"Optimizer. See <a href=\"http://bugs.php.net/bug.php?id=31134\"> http://bugs."
+"php.net/bug.php?id=31134</a>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3303
msgid ""
-"If you are using Hardened PHP with the ini directive "
-"<tt>varfilter.max_request_variables</tt> set to the default (200) or another"
-" low value, you could get this error if your table has a high number of "
-"columns. Adjust this setting accordingly. (Thanks to Klaus Dorninger for the"
-" hint)."
+"If you are using Hardened PHP with the ini directive <tt>varfilter."
+"max_request_variables</tt> set to the default (200) or another low value, "
+"you could get this error if your table has a high number of columns. Adjust "
+"this setting accordingly. (Thanks to Klaus Dorninger for the hint)."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -7566,15 +7468,15 @@ msgstr ""
#: orig-docs/Documentation.html:3311
msgid ""
"If you are using <a href=\"http://www.hardened-php.net/\">Hardened-PHP</a>, "
-"you might want to increase <a href=\"http://www.hardened-"
-"php.net/hphp/troubleshooting.html\">request limits</a>."
+"you might want to increase <a href=\"http://www.hardened-php.net/hphp/"
+"troubleshooting.html\">request limits</a>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3315
msgid ""
-"The directory specified in the <tt>php.ini</tt> directive "
-"<tt>session.save_path</tt> does not exist or is read-only."
+"The directory specified in the <tt>php.ini</tt> directive <tt>session."
+"save_path</tt> does not exist or is read-only."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -7587,16 +7489,15 @@ msgstr ""
msgid ""
"To be able to see a progress bar during your uploads, your server must have "
"either the <a href=\"http://pecl.php.net/package/APC\">APC</a> extension or "
-"the <a "
-"href=\"http://pecl.php.net/package/uploadprogress\">uploadprogress</a> one. "
-"Moreover, the JSON extension has to be enabled in your PHP."
+"the <a href=\"http://pecl.php.net/package/uploadprogress\">uploadprogress</"
+"a> one. Moreover, the JSON extension has to be enabled in your PHP."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3326
msgid ""
-"If using APC, you must set <tt>apc.rfc1867</tt> to <tt>on</tt> in your "
-"php.ini."
+"If using APC, you must set <tt>apc.rfc1867</tt> to <tt>on</tt> in your php."
+"ini."
msgstr ""
#. type: Content of: <html><body><div><h3>
@@ -7624,14 +7525,14 @@ msgid ""
"windows and then go back to phpMyAdmin. You should be able to log in again."
msgstr ""
"Týká se to autentifikačního mechanismu (protokoli) používaném v phpMyAdmin. "
-"K obejití problému stačí jen zavřít všechna okna prohlížeče a znovu vstoupit"
-" do phpMyAdminu. Budete se moci znovu přihlásit."
+"K obejití problému stačí jen zavřít všechna okna prohlížeče a znovu vstoupit "
+"do phpMyAdminu. Budete se moci znovu přihlásit."
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3341
msgid ""
-"<a href=\"#faq3_2\">3.2 When dumping a large table in compressed mode, I get"
-" a memory limit error or a time limit error.</a>"
+"<a href=\"#faq3_2\">3.2 When dumping a large table in compressed mode, I get "
+"a memory limit error or a time limit error.</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -7639,24 +7540,24 @@ msgstr ""
msgid ""
"Compressed dumps are built in memory and because of this are limited to "
"php's memory limit. For GZip/BZip2 exports this can be overcome since 2.5.4 "
-"using <a href=\"#cfg_CompressOnFly\" "
-"class=\"configrule\">$cfg['CompressOnFly']</a> (enabled by default). Zip "
-"exports can not be handled this way, so if you need Zip files for larger "
-"dump, you have to use another way."
+"using <a href=\"#cfg_CompressOnFly\" class=\"configrule\">$cfg"
+"['CompressOnFly']</a> (enabled by default). Zip exports can not be handled "
+"this way, so if you need Zip files for larger dump, you have to use another "
+"way."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3352
msgid ""
-"<a href=\"#faq3_3\">3.3 With InnoDB tables, I lose foreign key relationships"
-" when I rename a table or a column.</a>"
+"<a href=\"#faq3_3\">3.3 With InnoDB tables, I lose foreign key relationships "
+"when I rename a table or a column.</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3355
msgid ""
-"This is an InnoDB bug, see <a "
-"href=\"http://bugs.mysql.com/bug.php?id=21704\">http://bugs.mysql.com/bug.php?id=21704</a>."
+"This is an InnoDB bug, see <a href=\"http://bugs.mysql.com/bug.php?"
+"id=21704\">http://bugs.mysql.com/bug.php?id=21704</a>."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -7669,8 +7570,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3361
msgid ""
-"The problem is that older versions of <code>mysqldump</code> created invalid"
-" comments like this:"
+"The problem is that older versions of <code>mysqldump</code> created invalid "
+"comments like this:"
msgstr ""
#. type: Content of: <html><body><div><pre>
@@ -7719,9 +7620,9 @@ msgstr ""
#: orig-docs/Documentation.html:3386
msgid ""
"<a href=\"#faq3_5\">3.5 When using nested folders there are some multiple "
-"hierarchies displayed in a wrong manner?!</a> (<a "
-"href=\"#cfg_LeftFrameTableSeparator\" "
-"class=\"configrule\">$cfg['LeftFrameTableSeparator']</a>)"
+"hierarchies displayed in a wrong manner?!</a> (<a href="
+"\"#cfg_LeftFrameTableSeparator\" class=\"configrule\">$cfg"
+"['LeftFrameTableSeparator']</a>)"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -7757,8 +7658,8 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3405
msgid ""
-"<a href=\"#faq3_7\">3.7 I have table with many (100+) columns and when I try"
-" to browse table I get series of errors like "Warning: unable to parse "
+"<a href=\"#faq3_7\">3.7 I have table with many (100+) columns and when I try "
+"to browse table I get series of errors like "Warning: unable to parse "
"url". How can this be fixed?</a>"
msgstr ""
@@ -7773,8 +7674,8 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3416
msgid ""
-"<a href=\"#faq3_8\">3.8 I cannot use (clickable) HTML-forms in columns where"
-" I put a MIME-Transformation onto!</a>"
+"<a href=\"#faq3_8\">3.8 I cannot use (clickable) HTML-forms in columns where "
+"I put a MIME-Transformation onto!</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -7785,11 +7686,10 @@ msgid ""
"results. You can, however, use any form inside of a table if keep the "
"parent form-container with the target to tbl_row_delete.php and just put "
"your own input-elements inside. If you use a custom submit input field, the "
-"form will submit itself to the displaying page again, where you can validate"
-" the $HTTP_POST_VARS in a transformation. For a tutorial on how to "
-"effectively use transformations, see our <a "
-"href=\"http://www.phpmyadmin.net/home_page/docs.php\">Link section</a> on "
-"the official phpMyAdmin-homepage."
+"form will submit itself to the displaying page again, where you can validate "
+"the $HTTP_POST_VARS in a transformation. For a tutorial on how to "
+"effectively use transformations, see our <a href=\"http://www.phpmyadmin.net/"
+"home_page/docs.php\">Link section</a> on the official phpMyAdmin-homepage."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -7804,21 +7704,22 @@ msgstr ""
msgid ""
"When MySQL is running in ANSI-compatibility mode, there are some major "
"differences in how <abbr title=\"structured query language\">SQL</abbr> is "
-"structured (see <a href=\"http://dev.mysql.com/doc/mysql/en/ansi-"
-"mode.html\"> http://dev.mysql.com/doc/mysql/en/ansi-mode.html</a>). Most "
-"important of all, the quote-character (\") is interpreted as an identifier "
-"quote character and not as a string quote character, which makes many "
-"internal phpMyAdmin operations into invalid <abbr title=\"structured query "
-"language\">SQL</abbr> statements. There is no workaround to this behaviour. "
-"News to this item will be posted in Bug report <a "
-"href=\"https://sourceforge.net/tracker/index.php?func=detail&aid=816858&gr…">#816858</a>"
+"structured (see <a href=\"http://dev.mysql.com/doc/mysql/en/ansi-mode.html"
+"\"> http://dev.mysql.com/doc/mysql/en/ansi-mode.html</a>). Most important of "
+"all, the quote-character (\") is interpreted as an identifier quote "
+"character and not as a string quote character, which makes many internal "
+"phpMyAdmin operations into invalid <abbr title=\"structured query language"
+"\">SQL</abbr> statements. There is no workaround to this behaviour. News to "
+"this item will be posted in Bug report <a href=\"https://sourceforge.net/"
+"tracker/index.php?func=detail&aid=816858&group_id=23067&"
+"atid=377408\">#816858</a>"
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3448
msgid ""
-"<a href=\"#faq3_10\">3.10 Homonyms and no primary key: When the results of a"
-" SELECT display more that one column with the same value (for example "
+"<a href=\"#faq3_10\">3.10 Homonyms and no primary key: When the results of a "
+"SELECT display more that one column with the same value (for example "
"<tt>SELECT lastname from employees where firstname like 'A%'</tt> and two "
""Smith" values are displayed), if I click Edit I cannot be sure "
"that I am editing the intended row.</a>"
@@ -7842,9 +7743,9 @@ msgstr ""
#: orig-docs/Documentation.html:3459
msgid ""
"phpMyAdmin uses a quick method to get the row count, and this method only "
-"returns an approximate count in the case of InnoDB tables. See <a "
-"href=\"#cfg_MaxExactCount\" class=\"configrule\">$cfg['MaxExactCount']</a> "
-"for a way to modify those results, but this could have a serious impact on "
+"returns an approximate count in the case of InnoDB tables. See <a href="
+"\"#cfg_MaxExactCount\" class=\"configrule\">$cfg['MaxExactCount']</a> for a "
+"way to modify those results, but this could have a serious impact on "
"performance."
msgstr ""
@@ -7856,8 +7757,8 @@ msgstr "<a href=\"#faq3_12\">3.12 (staženo).</a>"
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3469
msgid ""
-"<a href=\"#faq3_13\">3.13 I get an error when entering <tt>USE</tt> followed"
-" by a db name containing an hyphen. </a>"
+"<a href=\"#faq3_13\">3.13 I get an error when entering <tt>USE</tt> followed "
+"by a db name containing an hyphen. </a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -7891,17 +7792,17 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3489
msgid ""
-"phpMyAdmin uses the <a "
-"href=\"http://www.codeplex.com/PHPExcel/\">PHPExcel</a> library to parse "
-"Excel XLS and XLSX spreadsheets. Therefore, any limitations that are listed"
-" on their page regarding Excel calculations will also apply here."
+"phpMyAdmin uses the <a href=\"http://www.codeplex.com/PHPExcel/\">PHPExcel</"
+"a> library to parse Excel XLS and XLSX spreadsheets. Therefore, any "
+"limitations that are listed on their page regarding Excel calculations will "
+"also apply here."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3492
msgid ""
-"PHPExcel will be kept up to date so as to make all improvements available to"
-" phpMyAdmin users."
+"PHPExcel will be kept up to date so as to make all improvements available to "
+"phpMyAdmin users."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -7914,16 +7815,16 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3498
msgid ""
-"Since Excel XLSX workbooks are already compressed, there is often times only"
-" a small benefit from compressing them yet again. Support for compressed "
+"Since Excel XLSX workbooks are already compressed, there is often times only "
+"a small benefit from compressing them yet again. Support for compressed "
"Excel XLSX and XLS workbooks may be added in the future."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3503
msgid ""
-"<a href=\"#faq3_17\">3.17 When I import an Excel spreadsheet, my custom cell"
-" types are not represented as they are in Excel.</a>"
+"<a href=\"#faq3_17\">3.17 When I import an Excel spreadsheet, my custom cell "
+"types are not represented as they are in Excel.</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -7951,9 +7852,9 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3522
msgid ""
-"<a href=\"#faq3_19\">3.19 When I import a file and have phpMyAdmin determine"
-" the appropriate data structure it only uses int, decimal, and varchar "
-"types.</a>"
+"<a href=\"#faq3_19\">3.19 When I import a file and have phpMyAdmin determine "
+"the appropriate data structure it only uses int, decimal, and varchar types."
+"</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -7984,27 +7885,27 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3536
msgid ""
-"<a href=\"#faq4_1\">4.1 I'm an <abbr title=\"Internet service "
-"provider\">ISP</abbr>. Can I setup one central copy of phpMyAdmin or do I "
-"need to install it for each customer. </a>"
+"<a href=\"#faq4_1\">4.1 I'm an <abbr title=\"Internet service provider"
+"\">ISP</abbr>. Can I setup one central copy of phpMyAdmin or do I need to "
+"install it for each customer. </a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3540
msgid ""
-"Since version 2.0.3, you can setup a central copy of phpMyAdmin for all your"
-" users. The development of this feature was kindly sponsored by NetCologne "
+"Since version 2.0.3, you can setup a central copy of phpMyAdmin for all your "
+"users. The development of this feature was kindly sponsored by NetCologne "
"GmbH. This requires a properly setup MySQL user management and phpMyAdmin "
"<abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> or cookie "
-"authentication. See the install section on "Using <abbr "
-"title=\"HyperText Transfer Protocol\">HTTP</abbr> authentication"."
+"authentication. See the install section on "Using <abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> authentication"."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3549
msgid ""
-"<a href=\"#faq4_2\">4.2 What's the preferred way of making phpMyAdmin secure"
-" against evil access. </a>"
+"<a href=\"#faq4_2\">4.2 What's the preferred way of making phpMyAdmin secure "
+"against evil access. </a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8016,8 +7917,8 @@ msgstr ""
#: orig-docs/Documentation.html:3554
msgid ""
"If you're running a server which cannot be accessed by other people, it's "
-"sufficient to use the directory protection bundled with your webserver (with"
-" Apache you can use <i>.htaccess</i> files, for example)."
+"sufficient to use the directory protection bundled with your webserver (with "
+"Apache you can use <i>.htaccess</i> files, for example)."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8065,8 +7966,8 @@ msgstr ""
msgid ""
"Check <i>php.ini</i>, or ask your sysadmin to check it. The "
"<tt>include_path</tt> must contain "." somewhere in it, and "
-"<tt>open_basedir</tt>, if used, must contain "." and "
-""./lang" to allow normal operation of phpMyAdmin."
+"<tt>open_basedir</tt>, if used, must contain "." and "./"
+"lang" to allow normal operation of phpMyAdmin."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -8085,10 +7986,9 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3595
msgid ""
-"<a href=\"#cfg_Servers_controluser\" "
-"class=\"configrule\">$cfg['Servers'][$i]['controluser']</a> and/or <a "
-"href=\"#cfg_Servers_controlpass\" "
-"class=\"configrule\">$cfg['Servers'][$i]['controlpass']</a> are wrong."
+"<a href=\"#cfg_Servers_controluser\" class=\"configrule\">$cfg['Servers'][$i]"
+"['controluser']</a> and/or <a href=\"#cfg_Servers_controlpass\" class="
+"\"configrule\">$cfg['Servers'][$i]['controlpass']</a> are wrong."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -8100,8 +8000,8 @@ msgstr ""
#: orig-docs/Documentation.html:3600
msgid ""
"You have already setup a security mechanism for the phpMyAdmin-directory, "
-"eg. a .htaccess file. This would interfere with phpMyAdmin's authentication,"
-" so remove it."
+"eg. a .htaccess file. This would interfere with phpMyAdmin's authentication, "
+"so remove it."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -8117,8 +8017,8 @@ msgid ""
"Starting with 2.2.5, in the user management page, you can enter a wildcard "
"database name for a user (for example "joe%"), and put the "
"privileges you want. For example, adding <tt>SELECT, INSERT, UPDATE, "
-"DELETE, CREATE, DROP, INDEX, ALTER</tt> would let a user create/manage "
-"his/her database(s)."
+"DELETE, CREATE, DROP, INDEX, ALTER</tt> would let a user create/manage his/"
+"her database(s)."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -8131,21 +8031,20 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3617
msgid ""
-"If you have existing rules from an old .htaccess file, you can take them and"
-" add a username between the <tt>'deny'</tt>/<tt>'allow'</tt> and "
-"<tt>'from'</tt> strings. Using the username wildcard of <tt>'%'</tt> would "
-"be a major benefit here if your installation is suited to using it. Then you"
-" can just add those updated lines into the <a "
-"href=\"#cfg_Servers_AllowDeny_rules\" class=\"configrule\"> "
-"$cfg['Servers'][$i]['AllowDeny']['rules']</a> array."
+"If you have existing rules from an old .htaccess file, you can take them and "
+"add a username between the <tt>'deny'</tt>/<tt>'allow'</tt> and <tt>'from'</"
+"tt> strings. Using the username wildcard of <tt>'%'</tt> would be a major "
+"benefit here if your installation is suited to using it. Then you can just "
+"add those updated lines into the <a href=\"#cfg_Servers_AllowDeny_rules\" "
+"class=\"configrule\"> $cfg['Servers'][$i]['AllowDeny']['rules']</a> array."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3625
msgid ""
"If you want a pre-made sample, you can try this fragment. It stops the "
-"'root' user from logging in from any networks other than the private network"
-" <abbr title=\"Internet Protocol\">IP</abbr> blocks."
+"'root' user from logging in from any networks other than the private network "
+"<abbr title=\"Internet Protocol\">IP</abbr> blocks."
msgstr ""
#. type: Content of: <html><body><div><pre>
@@ -8173,13 +8072,12 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3644
msgid ""
-"This happens if you are using a <abbr title=\"Uniform Resource "
-"Locator\">URL</abbr> to start phpMyAdmin which is different than the one set"
-" in your <a href=\"#cfg_PmaAbsoluteUri\" "
-"class=\"configrule\">$cfg['PmaAbsoluteUri']</a>. For example, a missing "
-""www", or entering with an <abbr title=\"Internet "
-"Protocol\">IP</abbr> address while a domain name is defined in the config "
-"file."
+"This happens if you are using a <abbr title=\"Uniform Resource Locator"
+"\">URL</abbr> to start phpMyAdmin which is different than the one set in "
+"your <a href=\"#cfg_PmaAbsoluteUri\" class=\"configrule\">$cfg"
+"['PmaAbsoluteUri']</a>. For example, a missing "www", or entering "
+"with an <abbr title=\"Internet Protocol\">IP</abbr> address while a domain "
+"name is defined in the config file."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -8192,12 +8090,12 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3653
msgid ""
-"When starting phpMyAdmin, you can use the <tt>db</tt>, "
-"<tt>pma_username</tt>, <tt>pma_password</tt> and <tt>server</tt> parameters."
-" This last one can contain either the numeric host index (from <tt>$i</tt> "
-"of the configuration file) or one of the host names present in the "
-"configuration file. Using <tt>pma_username</tt> and <tt>pma_password</tt> "
-"has been tested along with the usage of 'cookie' <tt>auth_type</tt>."
+"When starting phpMyAdmin, you can use the <tt>db</tt>, <tt>pma_username</"
+"tt>, <tt>pma_password</tt> and <tt>server</tt> parameters. This last one can "
+"contain either the numeric host index (from <tt>$i</tt> of the configuration "
+"file) or one of the host names present in the configuration file. Using "
+"<tt>pma_username</tt> and <tt>pma_password</tt> has been tested along with "
+"the usage of 'cookie' <tt>auth_type</tt>."
msgstr ""
#. type: Content of: <html><body><div><h3>
@@ -8209,8 +8107,8 @@ msgstr ""
#: orig-docs/Documentation.html:3658
msgid ""
"<a href=\"#faq5_1\">5.1 I get an out of memory error, and my controls are "
-"non-functional, when trying to create a table with more than 14 columns. "
-"</a>"
+"non-functional, when trying to create a table with more than 14 columns. </"
+"a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8237,8 +8135,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3672
msgid ""
-"This is not a phpMyAdmin problem but a Xitami known bug: you'll face it with"
-" each script/website that use forms."
+"This is not a phpMyAdmin problem but a Xitami known bug: you'll face it with "
+"each script/website that use forms."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8264,9 +8162,9 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3684
msgid ""
-"With Konqueror 2.2.1: plain dumps work; zip dumps are placed into the user's"
-" temporary directory, so they must be moved before closing Konqueror, or "
-"else they disappear. GZip dumps give an error message."
+"With Konqueror 2.2.1: plain dumps work; zip dumps are placed into the user's "
+"temporary directory, so they must be moved before closing Konqueror, or else "
+"they disappear. GZip dumps give an error message."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8303,9 +8201,9 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3709
msgid ""
-"<a href=\"#faq5_6\">5.6 In Internet Explorer 5.0, 5.5 or 6.0, I get an error"
-" (like \"Page not found\") when trying to modify a row in a table with many"
-" columns, or with a text column </a>"
+"<a href=\"#faq5_6\">5.6 In Internet Explorer 5.0, 5.5 or 6.0, I get an error "
+"(like \"Page not found\") when trying to modify a row in a table with many "
+"columns, or with a text column </a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8314,9 +8212,9 @@ msgid ""
"Your table neither have a primary key nor an unique one, so we must use a "
"long <abbr title=\"Uniform Resource Locator\">URL</abbr> to identify this "
"row. There is a limit on the length of the <abbr title=\"Uniform Resource "
-"Locator\">URL</abbr> in those browsers, and this not happen in Netscape, for"
-" example. The workaround is to create a primary or unique key, or use "
-"another browser."
+"Locator\">URL</abbr> in those browsers, and this not happen in Netscape, for "
+"example. The workaround is to create a primary or unique key, or use another "
+"browser."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -8351,15 +8249,15 @@ msgstr ""
#: orig-docs/Documentation.html:3740
msgid ""
"<a href=\"#faq5_9\">5.9 With Mozilla 0.9.? to 1.0 and Netscape 7.0-PR1 I "
-"can't type a whitespace in the <abbr title=\"structured query "
-"language\">SQL</abbr>-Query edit area: the page scrolls down. </a>"
+"can't type a whitespace in the <abbr title=\"structured query language"
+"\">SQL</abbr>-Query edit area: the page scrolls down. </a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3744
msgid ""
-"This is a Mozilla bug (see bug #26882 at <a "
-"href=\"http://bugzilla.mozilla.org/\">BugZilla</a>)."
+"This is a Mozilla bug (see bug #26882 at <a href=\"http://bugzilla.mozilla."
+"org/\">BugZilla</a>)."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -8398,25 +8296,24 @@ msgstr ""
#: orig-docs/Documentation.html:3768
msgid ""
"<a href=\"#faq5_12\">5.12 <acronym title=\"Apple Macintosh\">Mac</acronym> "
-"<abbr title=\"operating system\">OS</abbr> X: Safari browser changes special"
-" characters to "?".</a>"
+"<abbr title=\"operating system\">OS</abbr> X: Safari browser changes special "
+"characters to "?".</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3771
msgid ""
-"This issue has been reported by a <abbr title=\"operating system\">OS</abbr>"
-" X user, who adds that Chimera, Netscape and Mozilla do not have this "
-"problem."
+"This issue has been reported by a <abbr title=\"operating system\">OS</abbr> "
+"X user, who adds that Chimera, Netscape and Mozilla do not have this problem."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3775
msgid ""
-"<a href=\"#faq5_13\">5.13 With Internet Explorer 5.5 or 6, and <abbr "
-"title=\"HyperText Transfer Protocol\">HTTP</abbr> authentication type, I "
-"cannot manage two servers: I log in to the first one, then the other one, "
-"but if I switch back to the first, I have to log in on each operation.</a>"
+"<a href=\"#faq5_13\">5.13 With Internet Explorer 5.5 or 6, and <abbr title="
+"\"HyperText Transfer Protocol\">HTTP</abbr> authentication type, I cannot "
+"manage two servers: I log in to the first one, then the other one, but if I "
+"switch back to the first, I have to log in on each operation.</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8463,11 +8360,10 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3797
msgid ""
-"Maybe you have defined your <tt>PmaAbsoluteUri</tt> setting in "
-"<tt>config.inc.php</tt> to an <abbr title=\"Internet Protocol\">IP</abbr> "
-"address and you are starting phpMyAdmin with a <abbr title=\"Uniform "
-"Resource Locator\">URL</abbr> containing a domain name, or the reverse "
-"situation."
+"Maybe you have defined your <tt>PmaAbsoluteUri</tt> setting in <tt>config."
+"inc.php</tt> to an <abbr title=\"Internet Protocol\">IP</abbr> address and "
+"you are starting phpMyAdmin with a <abbr title=\"Uniform Resource Locator"
+"\">URL</abbr> containing a domain name, or the reverse situation."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -8489,8 +8385,8 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3811
msgid ""
-"<a href=\"#faq5_17\">5.17 With Firefox, I cannot delete rows of data or drop"
-" a database.</a>"
+"<a href=\"#faq5_17\">5.17 With Firefox, I cannot delete rows of data or drop "
+"a database.</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8510,10 +8406,10 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3818
msgid ""
-"This happens only when both of these conditions are met: using the "
-"<tt>http</tt> authentication mode and <tt>register_globals</tt> being set to"
-" <tt>On</tt> on the server. It seems to be a browser-specific problem; "
-"meanwhile use the <tt>cookie</tt> authentication mode."
+"This happens only when both of these conditions are met: using the <tt>http</"
+"tt> authentication mode and <tt>register_globals</tt> being set to <tt>On</"
+"tt> on the server. It seems to be a browser-specific problem; meanwhile use "
+"the <tt>cookie</tt> authentication mode."
msgstr ""
#. type: Content of: <html><body><div><h3>
@@ -8525,8 +8421,8 @@ msgstr "Používání phpMyAdmina"
#: orig-docs/Documentation.html:3826
msgid ""
"<a href=\"#faq6_1\">6.1 I can't insert new rows into a table / I can't "
-"create a table - MySQL brings up a <abbr title=\"structured query "
-"language\">SQL</abbr>-error. </a>"
+"create a table - MySQL brings up a <abbr title=\"structured query language"
+"\">SQL</abbr>-error. </a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8565,8 +8461,7 @@ msgstr ""
#: orig-docs/Documentation.html:3844
msgid ""
"<a href=\"#faq6_2\">6.2 When I create a table, I set an index for two "
-"columns and phpMyAdmin generates only one index with those two columns. "
-"</a>"
+"columns and phpMyAdmin generates only one index with those two columns. </a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8579,7 +8474,8 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3856
-msgid "<a href=\"#faq6_3\">6.3 How can I insert a null value into my table?</a>"
+msgid ""
+"<a href=\"#faq6_3\">6.3 How can I insert a null value into my table?</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8602,9 +8498,9 @@ msgstr ""
msgid ""
"Click on a database or table name in the left frame, the properties will be "
"displayed. Then on the menu, click "Export", you can dump the "
-"structure, the data, or both. This will generate standard <abbr "
-"title=\"structured query language\">SQL</abbr> statements that can be used "
-"to recreate your database/table."
+"structure, the data, or both. This will generate standard <abbr title="
+"\"structured query language\">SQL</abbr> statements that can be used to "
+"recreate your database/table."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8636,40 +8532,40 @@ msgstr ""
msgid ""
"Click on a database name in the left frame, the properties will be "
"displayed. Select "Import" from the list of tabs in the "
-"right–hand frame (or "<abbr title=\"structured query "
-"language\">SQL</abbr>" if your phpMyAdmin version is previous to "
-"2.7.0). In the "Location of the text file" section, type in the "
-"path to your dump filename, or use the Browse button. Then click Go."
+"right–hand frame (or "<abbr title=\"structured query language"
+"\">SQL</abbr>" if your phpMyAdmin version is previous to 2.7.0). In the "
+""Location of the text file" section, type in the path to your dump "
+"filename, or use the Browse button. Then click Go."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3893
msgid ""
-"With version 2.7.0, the import engine has been re–written, if possible"
-" it is suggested that you upgrade to take advantage of the new features."
+"With version 2.7.0, the import engine has been re–written, if possible "
+"it is suggested that you upgrade to take advantage of the new features."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3896
msgid ""
-"For additional help on this subject, look for the word "upload" in"
-" this document."
+"For additional help on this subject, look for the word "upload" in "
+"this document."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:3901
msgid ""
-"<a href=\"#faq6_6\">6.6 How can I use the relation table in Query-by-"
-"example?</a>"
+"<a href=\"#faq6_6\">6.6 How can I use the relation table in Query-by-example?"
+"</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3903
msgid ""
-"Here is an example with the tables persons, towns and countries, all located"
-" in the database mydb. If you don't have a <tt>pma_relation</tt> table, "
-"create it as explained in the configuration section. Then create the example"
-" tables:"
+"Here is an example with the tables persons, towns and countries, all located "
+"in the database mydb. If you don't have a <tt>pma_relation</tt> table, "
+"create it as explained in the configuration section. Then create the example "
+"tables:"
msgstr ""
#. type: Content of: <html><body><div><pre>
@@ -8751,8 +8647,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3942
msgid ""
-"in Links, for "country_code" choose "
-""REL_countries->country_code""
+"in Links, for "country_code" choose "REL_countries->"
+"country_code""
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -8762,8 +8658,7 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3944
-msgid ""
-"in "Choose column to display", choose "description""
+msgid "in "Choose column to display", choose "description""
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -8799,8 +8694,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3954
msgid ""
-"In the columns row, choose persons.person_name and click the "
-""Show" tickbox"
+"In the columns row, choose persons.person_name and click the ""
+"Show" tickbox"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -8840,9 +8735,9 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3970
msgid ""
-"See also <a href=\"#faq6_21\"><abbr title=\"Frequently Asked "
-"Questions\">FAQ</abbr> 6.21</a> for an additional feature that "display"
-" column" enables: drop-down list of possible values."
+"See also <a href=\"#faq6_21\"><abbr title=\"Frequently Asked Questions"
+"\">FAQ</abbr> 6.21</a> for an additional feature that "display "
+"column" enables: drop-down list of possible values."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -8855,8 +8750,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:3977
msgid ""
-"First the configuration variables "relation", "
-""table_coords" and "pdf_pages" have to be filled in."
+"First the configuration variables "relation", ""
+"table_coords" and "pdf_pages" have to be filled in."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8886,10 +8781,9 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:3988
msgid ""
-"Enter a name for the first <abbr title=\"Portable Document "
-"Format\">PDF</abbr> page and click Go. If you like, you can use the "
-""automatic layout," which will put all your linked tables onto the"
-" new page."
+"Enter a name for the first <abbr title=\"Portable Document Format\">PDF</"
+"abbr> page and click Go. If you like, you can use the "automatic layout,"
+"" which will put all your linked tables onto the new page."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -8909,36 +8803,36 @@ msgstr ""
msgid ""
"Coordinates are relative; your diagram will be automatically scaled to fit "
"the page. When initially placing tables on the page, just pick any "
-"coordinates -- say, 50x50. After clicking Save, you can then use the <a "
-"href=\"#wysiwyg\">graphical editor</a> to position the element correctly."
+"coordinates -- say, 50x50. After clicking Save, you can then use the <a href="
+"\"#wysiwyg\">graphical editor</a> to position the element correctly."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4000
msgid ""
-"When you'd like to look at your <abbr title=\"Portable Document "
-"Format\">PDF</abbr>, first be sure to click the Save button beneath the list"
-" of tables and coordinates, to save any changes you made there. Then scroll "
-"all the way down, select the <abbr title=\"Portable Document "
-"Format\">PDF</abbr> options you want, and click Go."
+"When you'd like to look at your <abbr title=\"Portable Document Format"
+"\">PDF</abbr>, first be sure to click the Save button beneath the list of "
+"tables and coordinates, to save any changes you made there. Then scroll all "
+"the way down, select the <abbr title=\"Portable Document Format\">PDF</abbr> "
+"options you want, and click Go."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4006
msgid ""
-"Internet Explorer for Windows may suggest an incorrect filename when you try"
-" to save a generated <abbr title=\"Portable Document Format\">PDF</abbr>. "
-"When saving a generated <abbr title=\"Portable Document Format\">PDF</abbr>,"
-" be sure that the filename ends in ".pdf", for example "
-""schema.pdf". Browsers on other operating systems, and other "
-"browsers on Windows, do not have this problem."
+"Internet Explorer for Windows may suggest an incorrect filename when you try "
+"to save a generated <abbr title=\"Portable Document Format\">PDF</abbr>. "
+"When saving a generated <abbr title=\"Portable Document Format\">PDF</abbr>, "
+"be sure that the filename ends in ".pdf", for example "schema."
+"pdf". Browsers on other operating systems, and other browsers on "
+"Windows, do not have this problem."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:4015
msgid ""
-"<a href=\"#faq6_9\">6.9 phpMyAdmin is changing the type of one of my "
-"columns!</a>"
+"<a href=\"#faq6_9\">6.9 phpMyAdmin is changing the type of one of my columns!"
+"</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8985,7 +8879,8 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:4041
-msgid "<a href=\"#faqexport\">6.12 I want to understand some Export options.</a>"
+msgid ""
+"<a href=\"#faqexport\">6.12 I want to understand some Export options.</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -8996,18 +8891,18 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4045
msgid ""
-""Add DROP TABLE" will add a line telling MySQL to <a "
-"href=\"http://dev.mysql.com/doc/mysql/en/drop-table.html\">drop the "
-"table</a>, if it already exists during the import. It does NOT drop the "
-"table after your export, it only affects the import file."
+""Add DROP TABLE" will add a line telling MySQL to <a href=\"http://"
+"dev.mysql.com/doc/mysql/en/drop-table.html\">drop the table</a>, if it "
+"already exists during the import. It does NOT drop the table after your "
+"export, it only affects the import file."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4049
msgid ""
""If Not Exists" will only create the table if it doesn't exist. "
-"Otherwise, you may get an error if the table name exists but has a different"
-" structure."
+"Otherwise, you may get an error if the table name exists but has a different "
+"structure."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -9028,8 +8923,8 @@ msgstr ""
#: orig-docs/Documentation.html:4056
msgid ""
""Add into comments" includes column comments, relations, and MIME "
-"types set in the pmadb in the dump as <abbr title=\"structured query "
-"language\">SQL</abbr> comments (<i>/* xxx */</i>)."
+"types set in the pmadb in the dump as <abbr title=\"structured query language"
+"\">SQL</abbr> comments (<i>/* xxx */</i>)."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -9047,26 +8942,24 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4066
msgid ""
-""Extended inserts" provides a shorter dump file by using only once"
-" the INSERT verb and the table name."
+""Extended inserts" provides a shorter dump file by using only once "
+"the INSERT verb and the table name."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4068
msgid ""
-""Delayed inserts" are best explained in the <a "
-"href=\"http://dev.mysql.com/doc/mysql/en/insert-delayed.html\">MySQL "
-"manual</a>."
+""Delayed inserts" are best explained in the <a href=\"http://dev."
+"mysql.com/doc/mysql/en/insert-delayed.html\">MySQL manual</a>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4071
msgid ""
""Ignore inserts" treats errors as a warning instead. Again, more "
-"info is provided in the <a "
-"href=\"http://dev.mysql.com/doc/mysql/en/insert.html\">MySQL manual</a>, but"
-" basically with this selected, invalid values are adjusted and inserted "
-"rather than causing the entire statement to fail."
+"info is provided in the <a href=\"http://dev.mysql.com/doc/mysql/en/insert."
+"html\">MySQL manual</a>, but basically with this selected, invalid values "
+"are adjusted and inserted rather than causing the entire statement to fail."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -9088,49 +8981,48 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:4088
msgid ""
-"<a href=\"#faqsqlvalidator\">6.14 How do I set up the <abbr "
-"title=\"structured query language\">SQL</abbr> Validator?</a>"
+"<a href=\"#faqsqlvalidator\">6.14 How do I set up the <abbr title="
+"\"structured query language\">SQL</abbr> Validator?</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4092
msgid ""
"To use SQL Validator, you need PHP with <abbr title=\"Extensible Markup "
-"Language\">XML</abbr>, <abbr title=\"Perl Compatible Regular "
-"Expressions\">PCRE</abbr> and <abbr title=\"PHP Extension and Application "
-"Repository\">PEAR</abbr> support. In addition you need a <abbr "
-"title=\"Simple Object Access Protocol\">SOAP</abbr> support, either as a PHP"
-" extension or as a PEAR SOAP module."
+"Language\">XML</abbr>, <abbr title=\"Perl Compatible Regular Expressions"
+"\">PCRE</abbr> and <abbr title=\"PHP Extension and Application Repository"
+"\">PEAR</abbr> support. In addition you need a <abbr title=\"Simple Object "
+"Access Protocol\">SOAP</abbr> support, either as a PHP extension or as a "
+"PEAR SOAP module."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4102
msgid ""
-"To install <abbr title=\"PHP Extension and Application "
-"Repository\">PEAR</abbr> <abbr title=\"Simple Object Access "
-"Protocol\">SOAP</abbr> module, run <tt>\"pear install Net_Socket Net_URL "
-"HTTP_Request Mail_Mime Net_DIME SOAP\"</tt> to get the necessary <abbr "
-"title=\"PHP Extension and Application Repository\">PEAR</abbr> modules for "
-"usage."
+"To install <abbr title=\"PHP Extension and Application Repository\">PEAR</"
+"abbr> <abbr title=\"Simple Object Access Protocol\">SOAP</abbr> module, run "
+"<tt>\"pear install Net_Socket Net_URL HTTP_Request Mail_Mime Net_DIME SOAP"
+"\"</tt> to get the necessary <abbr title=\"PHP Extension and Application "
+"Repository\">PEAR</abbr> modules for usage."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4111
msgid ""
-"If you use the Validator, you should be aware that any <abbr "
-"title=\"structured query language\">SQL</abbr> statement you submit will be "
-"stored anonymously (database/table/column names, strings, numbers replaced "
-"with generic values). The Mimer <abbr title=\"structured query "
-"language\">SQL</abbr> Validator itself, is © 2001 Upright Database "
-"Technology. We utilize it as free SOAP service."
+"If you use the Validator, you should be aware that any <abbr title="
+"\"structured query language\">SQL</abbr> statement you submit will be stored "
+"anonymously (database/table/column names, strings, numbers replaced with "
+"generic values). The Mimer <abbr title=\"structured query language\">SQL</"
+"abbr> Validator itself, is © 2001 Upright Database Technology. We "
+"utilize it as free SOAP service."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:4121
msgid ""
"<a href=\"#faq6_15\">6.15 I want to add a BLOB column and put an index on "
-"it, but MySQL says "BLOB column '...' used in key specification without"
-" a key length".</a>"
+"it, but MySQL says "BLOB column '...' used in key specification without "
+"a key length".</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -9138,8 +9030,8 @@ msgstr ""
msgid ""
"The right way to do this, is to create the column without any indexes, then "
"display the table structure and use the "Create an index" dialog. "
-"On this page, you will be able to choose your BLOB column, and set a size to"
-" the index, which is the condition to create an index on a BLOB column."
+"On this page, you will be able to choose your BLOB column, and set a size to "
+"the index, which is the condition to create an index on a BLOB column."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -9154,9 +9046,9 @@ msgstr ""
msgid ""
"You can use Ctrl+arrows (Option+Arrows in Safari) for moving on most pages "
"with many editing fields (table structure changes, row editing, etc.). You "
-"can also have a look at the directive <a href=\"#DefaultPropDisplay\" "
-"class=\"configrule\">$cfg['DefaultPropDisplay']</a> ('vertical') and see if "
-"this eases up editing for you."
+"can also have a look at the directive <a href=\"#DefaultPropDisplay\" class="
+"\"configrule\">$cfg['DefaultPropDisplay']</a> ('vertical') and see if this "
+"eases up editing for you."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -9172,9 +9064,9 @@ msgid ""
"Slow down :). Defining mimetypes is of no use, if you can't put "
"transformations on them. Otherwise you could just put a comment on the "
"column. Because entering your own mimetype will cause serious syntax "
-"checking issues and validation, this introduces a high-risk false-user-input"
-" situation. Instead you have to initialize mimetypes using functions or "
-"empty mimetype definitions."
+"checking issues and validation, this introduces a high-risk false-user-input "
+"situation. Instead you have to initialize mimetypes using functions or empty "
+"mimetype definitions."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -9188,8 +9080,8 @@ msgstr ""
#: orig-docs/Documentation.html:4154
msgid ""
"<a href=\"#faqbookmark\">6.18 Bookmarks: Where can I store bookmarks? Why "
-"can't I see any bookmarks below the query box? What is this variable for? "
-"</a>"
+"can't I see any bookmarks below the query box? What is this variable for? </"
+"a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -9203,9 +9095,9 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4161
msgid ""
-"As soon as you have stored a bookmark, it is related to the database you run"
-" the query on. You can now access a bookmark dropdown on each page, the "
-"query box appears on for that database."
+"As soon as you have stored a bookmark, it is related to the database you run "
+"the query on. You can now access a bookmark dropdown on each page, the query "
+"box appears on for that database."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -9245,8 +9137,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4181
msgid ""
-"in your query, where VARIABLE is the string you entered in the input box. If"
-" an empty string is provided, no replacements are made."
+"in your query, where VARIABLE is the string you entered in the input box. If "
+"an empty string is provided, no replacements are made."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -9271,8 +9163,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4191
msgid ""
-"<code>SELECT Name, Address FROM addresses WHERE 1 AND Name LIKE "
-"'%phpMyAdmin%'</code>"
+"<code>SELECT Name, Address FROM addresses WHERE 1 AND Name LIKE '%phpMyAdmin"
+"%'</code>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -9285,8 +9177,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4195
msgid ""
-"<b>NOTE THE ABSENCE OF SPACES</b> inside the "/**/" construct. Any"
-" spaces inserted there will be later also inserted as spaces in your query "
+"<b>NOTE THE ABSENCE OF SPACES</b> inside the "/**/" construct. Any "
+"spaces inserted there will be later also inserted as spaces in your query "
"and may lead to unexpected results especially when using the variable "
"expansion inside of a "LIKE ''" expression."
msgstr ""
@@ -9294,17 +9186,16 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4200
msgid ""
-"Your initial query which is going to be stored as a bookmark has to yield at"
-" least one result row so you can store the bookmark. You may have that to "
+"Your initial query which is going to be stored as a bookmark has to yield at "
+"least one result row so you can store the bookmark. You may have that to "
"work around using well positioned "/**/" comments."
msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:4206
msgid ""
-"<a href=\"#faq6_19\">6.19 How can I create simple "
-"L<sup>A</sup>T<sub><big>E</big></sub>X document to include exported "
-"table?</a>"
+"<a href=\"#faq6_19\">6.19 How can I create simple L<sup>A</sup>T<sub><big>E</"
+"big></sub>X document to include exported table?</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -9338,15 +9229,15 @@ msgstr ""
msgid ""
"You have one of these global privileges: CREATE TEMPORARY TABLES, SHOW "
"DATABASES, LOCK TABLES. Those privileges also enable users to see all the "
-"database names. See this <a href=\"http://bugs.mysql.com/179\">bug "
-"report</a>."
+"database names. See this <a href=\"http://bugs.mysql.com/179\">bug report</"
+"a>."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4231
msgid ""
-"So if your users do not need those privileges, you can remove them and their"
-" databases list will shorten."
+"So if your users do not need those privileges, you can remove them and their "
+"databases list will shorten."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -9360,23 +9251,22 @@ msgstr ""
#: orig-docs/Documentation.html:4238
msgid ""
"You have to setup appropriate links between the tables, and also setup the "
-""display column" in the foreign table. See <a "
-"href=\"#faq6_6\"><abbr title=\"Frequently Asked Questions\">FAQ</abbr> "
-"6.6</a> for an example. Then, if there are 100 values or less in the foreign"
-" table, a drop-down list of values will be available. You will see two "
-"lists of values, the first list containing the key and the display column, "
-"the second list containing the display column and the key. The reason for "
-"this is to be able to type the first letter of either the key or the display"
-" column."
+""display column" in the foreign table. See <a href="
+"\"#faq6_6\"><abbr title=\"Frequently Asked Questions\">FAQ</abbr> 6.6</a> "
+"for an example. Then, if there are 100 values or less in the foreign table, "
+"a drop-down list of values will be available. You will see two lists of "
+"values, the first list containing the key and the display column, the second "
+"list containing the display column and the key. The reason for this is to be "
+"able to type the first letter of either the key or the display column."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4248
msgid ""
-"For 100 values or more, a distinct window will appear, to browse foreign key"
-" values and choose one. To change the default limit of 100, see <tt><a "
-"href=\"#cfg_ForeignKeyMaxLimit\" "
-"class=\"configrule\">$cfg['ForeignKeyMaxLimit']</a></tt>."
+"For 100 values or more, a distinct window will appear, to browse foreign key "
+"values and choose one. To change the default limit of 100, see <tt><a href="
+"\"#cfg_ForeignKeyMaxLimit\" class=\"configrule\">$cfg['ForeignKeyMaxLimit']</"
+"a></tt>."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -9442,15 +9332,16 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:4285
-msgid "<a href=\"#faq6_25\">6.25 How does BLOB streaming work in phpMyAdmin?</a>"
+msgid ""
+"<a href=\"#faq6_25\">6.25 How does BLOB streaming work in phpMyAdmin?</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4287
msgid ""
-"For general information about BLOB streaming on MySQL, visit <a "
-"href=\"http://blobstreaming.org\">blobstreaming.org</a>. You need the "
-"following components:"
+"For general information about BLOB streaming on MySQL, visit <a href="
+"\"http://blobstreaming.org\">blobstreaming.org</a>. You need the following "
+"components:"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -9489,16 +9380,16 @@ msgstr ""
#: orig-docs/Documentation.html:4300
msgid ""
"Ensure that your target table is under the <tt>PBXT</tt> storage engine and "
-"has a <tt>LONGBLOB</tt> column (which must be nullable if you want to remove"
-" the BLOB reference from it)."
+"has a <tt>LONGBLOB</tt> column (which must be nullable if you want to remove "
+"the BLOB reference from it)."
msgstr ""
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:4301
msgid ""
-"When you insert or update a row in this table, put a checkmark on the "
-""Upload to BLOB repository" optional choice; otherwise, the upload"
-" will be done directly in your LONGBLOB column instead of the repository."
+"When you insert or update a row in this table, put a checkmark on the ""
+"Upload to BLOB repository" optional choice; otherwise, the upload will "
+"be done directly in your LONGBLOB column instead of the repository."
msgstr ""
#. type: Content of: <html><body><div><ol><li>
@@ -9519,8 +9410,8 @@ msgstr ""
#: orig-docs/Documentation.html:4308
msgid ""
"Click the first row of the range, hold the shift key and click the last row "
-"of the range. This works everywhere you see rows, for example in Browse mode"
-" or on the Structure page."
+"of the range. This works everywhere you see rows, for example in Browse mode "
+"or on the Structure page."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -9532,10 +9423,10 @@ msgstr ""
#: orig-docs/Documentation.html:4315
msgid ""
"In all places where phpMyAdmin accepts format strings, you can use "
-"<code>@VARIABLE@</code> expansion and <a "
-"href=\"http://php.net/strftime\">strftime</a> format strings. The expanded "
-"variables depend on a context (for example, if you haven't chosen a table, "
-"you can not get the table name), but the following variables can be used:"
+"<code>@VARIABLE@</code> expansion and <a href=\"http://php.net/strftime"
+"\">strftime</a> format strings. The expanded variables depend on a context "
+"(for example, if you haven't chosen a table, you can not get the table "
+"name), but the following variables can be used:"
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -9566,8 +9457,8 @@ msgstr "<code>@VERBOSE@</code>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:4327
msgid ""
-"Verbose MySQL server name as defined in <a "
-"href=\"#cfg_Servers_verbose\">server configuration</a>"
+"Verbose MySQL server name as defined in <a href=\"#cfg_Servers_verbose"
+"\">server configuration</a>"
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -9623,28 +9514,28 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:4341
msgid ""
-"<a href=\"#wysiwyg\">6.28 How can I easily edit relational schema for "
-"export?</a>"
+"<a href=\"#wysiwyg\">6.28 How can I easily edit relational schema for export?"
+"</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4344
msgid ""
-"By clicking on the button 'toggle scratchboard' on the page where you edit "
-"x/y coordinates of those elements you can activate a scratchboard where all "
+"By clicking on the button 'toggle scratchboard' on the page where you edit x/"
+"y coordinates of those elements you can activate a scratchboard where all "
"your elements are placed. By clicking on an element, you can move them "
"around in the pre-defined area and the x/y coordinates will get updated "
"dynamically. Likewise, when entering a new position directly into the input "
-"field, the new position in the scratchboard changes after your cursor leaves"
-" the input field."
+"field, the new position in the scratchboard changes after your cursor leaves "
+"the input field."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4353
msgid ""
"You have to click on the 'OK'-button below the tables to save the new "
-"positions. If you want to place a new element, first add it to the table of"
-" elements and then you can drag the new element around."
+"positions. If you want to place a new element, first add it to the table of "
+"elements and then you can drag the new element around."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -9666,8 +9557,8 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:4370
msgid ""
-"<a href=\"#faq6_29\">6.29 Why can't I get a chart from my query result "
-"table?</a>"
+"<a href=\"#faq6_29\">6.29 Why can't I get a chart from my query result table?"
+"</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -9676,8 +9567,8 @@ msgid ""
"Not every table can be put to the chart. Only tables with one, two or three "
"columns can be visualised as a chart. Moreover the table must be in a "
"special format for chart script to understand it. Currently supported "
-"formats can be found in the <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Charts#Data_formats_for_query_results_chart\">wiki</a>."
+"formats can be found in the <a href=\"http://wiki.phpmyadmin.net/pma/"
+"Charts#Data_formats_for_query_results_chart\">wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><h3>
@@ -9694,9 +9585,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4379
msgid ""
-"Our Bug Tracker is located at <a "
-"href=\"http://sf.net/projects/phpmyadmin/\">http://sf.net/projects/phpmyadmin/</a>"
-" under the Bugs section."
+"Our Bug Tracker is located at <a href=\"http://sf.net/projects/phpmyadmin/"
+"\">http://sf.net/projects/phpmyadmin/</a> under the Bugs section."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -9707,11 +9597,11 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4384
msgid ""
-"<a href=\"https://sourceforge.net/projects/phpmyadmin/forums\"> "
-"https://sourceforge.net/projects/phpmyadmin/forums</a>."
+"<a href=\"https://sourceforge.net/projects/phpmyadmin/forums\"> https://"
+"sourceforge.net/projects/phpmyadmin/forums</a>."
msgstr ""
-"<a href=\"https://sourceforge.net/projects/phpmyadmin/forums\"> "
-"https://sourceforge.net/projects/phpmyadmin/forums</a>."
+"<a href=\"https://sourceforge.net/projects/phpmyadmin/forums\"> https://"
+"sourceforge.net/projects/phpmyadmin/forums</a>."
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:4389
@@ -9724,15 +9614,14 @@ msgstr ""
#: orig-docs/Documentation.html:4392
msgid ""
"Always use latest Git version of the po file to translate. You can "
-"optionally translate online at our <a "
-"href=\"http://l10n.cihar.com/\">translation server</a> where you can also "
-"get the latest po files and merge them with your translations. For creating "
-"a new translation simply use <code>po/phpmyadmin.pot</code> and generate "
-"<code>po/LANG_CODE.po</code> for your language (you can use <code>msginit -i"
-" po/phpmyadmin.pot -l LANG_CODE --no-translator -o po/LANG_CODE.po</code> to"
-" do this) or ask on the mailing list to add the translation to the web "
-"interface. More details are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Gettext_for_translators\">our "
+"optionally translate online at our <a href=\"http://l10n.cihar.com/"
+"\">translation server</a> where you can also get the latest po files and "
+"merge them with your translations. For creating a new translation simply use "
+"<code>po/phpmyadmin.pot</code> and generate <code>po/LANG_CODE.po</code> for "
+"your language (you can use <code>msginit -i po/phpmyadmin.pot -l LANG_CODE --"
+"no-translator -o po/LANG_CODE.po</code> to do this) or ask on the mailing "
+"list to add the translation to the web interface. More details are available "
+"on <a href=\"http://wiki.phpmyadmin.net/pma/Gettext_for_translators\">our "
"wiki</a>."
msgstr ""
@@ -9741,44 +9630,42 @@ msgstr ""
msgid ""
"Please note that we try not to use HTML entities like &eacute; in the "
"translations, since we define the right character set in the file. With "
-"HTML entities, the text on JavaScript messages would not display correctly."
-" However there are some entities that need to be there: quotes, non-"
-"breakable spaces, ampersands, less than, greater than."
+"HTML entities, the text on JavaScript messages would not display correctly. "
+"However there are some entities that need to be there: quotes, non-breakable "
+"spaces, ampersands, less than, greater than."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4411
msgid ""
"You can then put your translations, as a zip file to avoid losing special "
-"characters, on the sourceforge.net <a "
-"href=\"https://sourceforge.net/tracker/?group_id=23067&atid=387645\">translation"
-" tracker.</a>"
+"characters, on the sourceforge.net <a href=\"https://sourceforge.net/"
+"tracker/?group_id=23067&atid=387645\">translation tracker.</a>"
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4415
msgid ""
-"It would be a good idea to subscribe to the <a "
-"href=\"https://lists.sourceforge.net/lists/listinfo/phpmyadmin-translators"
-"\">phpmyadmin-translators</a> mailing list, because this is where we ask for"
-" translations of new messages."
+"It would be a good idea to subscribe to the <a href=\"https://lists."
+"sourceforge.net/lists/listinfo/phpmyadmin-translators\">phpmyadmin-"
+"translators</a> mailing list, because this is where we ask for translations "
+"of new messages."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4420
msgid ""
-"Documentation is being translated using po4a and gettext (see <a "
-"href=\"http://www.phpmyadmin.net/home_page/docs.php\">documentation</a> for "
-"existing translations). To start, checkout <a "
-"href=\"http://phpmyadmin.git.sourceforge.net/git/gitweb.cgi?p=phpmyadmin/localized…"><code>localized_docs/po</code></a>"
-" from Git, or just go to the <a "
-"href=\"https://l10n.cihar.com/projects/pmadoc/\">translation server</a> and "
-"translate it online. If your language is missing, just contact <a "
-"href=\"mailto:michal@cihar.com\">Michal Čihař</a>; he will add it."
-" If you prefer to directly translate the po files, please put updated ones "
-"into our <a "
-"href=\"https://sourceforge.net/tracker/?group_id=23067&atid=387645\">translation"
-" tracker</a>."
+"Documentation is being translated using po4a and gettext (see <a href="
+"\"http://www.phpmyadmin.net/home_page/docs.php\">documentation</a> for "
+"existing translations). To start, checkout <a href=\"http://phpmyadmin.git."
+"sourceforge.net/git/gitweb.cgi?p=phpmyadmin/localized_docs;a=tree;f=po"
+"\"><code>localized_docs/po</code></a> from Git, or just go to the <a href="
+"\"https://l10n.cihar.com/projects/pmadoc/\">translation server</a> and "
+"translate it online. If your language is missing, just contact <a href="
+"\"mailto:michal@cihar.com\">Michal Čihař</a>; he will add it. If "
+"you prefer to directly translate the po files, please put updated ones into "
+"our <a href=\"https://sourceforge.net/tracker/?group_id=23067&"
+"atid=387645\">translation tracker</a>."
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -9801,11 +9688,11 @@ msgstr ""
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:4438
msgid ""
-"<tt>git clone "
-"git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin</tt>"
+"<tt>git clone git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/"
+"phpmyadmin</tt>"
msgstr ""
-"<tt>git clone "
-"git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin</tt>"
+"<tt>git clone git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/"
+"phpmyadmin</tt>"
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:4441
@@ -9820,28 +9707,28 @@ msgstr ""
#. type: Content of: <html><body><div><ol><li>
#: orig-docs/Documentation.html:4445
msgid ""
-"submit your patch via the <a "
-"href=\"https://sourceforge.net/tracker/?group_id=23067&atid=377410\">patch"
-" tracker of the phpMyAdmin project</a>."
+"submit your patch via the <a href=\"https://sourceforge.net/tracker/?"
+"group_id=23067&atid=377410\">patch tracker of the phpMyAdmin project</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4451
msgid ""
-"More details on git are available on <a "
-"href=\"http://wiki.phpmyadmin.net/pma/Git\">our wiki</a>."
+"More details on git are available on <a href=\"http://wiki.phpmyadmin.net/"
+"pma/Git\">our wiki</a>."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4453
msgid ""
-"Write access to the repository is granted only to experienced developers who"
-" have already contributed something useful to phpMyAdmin."
+"Write access to the repository is granted only to experienced developers who "
+"have already contributed something useful to phpMyAdmin."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4455
-msgid "Also, have a look at the <a href=\"#developers\">Developers section</a>."
+msgid ""
+"Also, have a look at the <a href=\"#developers\">Developers section</a>."
msgstr ""
#. type: Content of: <html><body><div><h3>
@@ -9859,8 +9746,8 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4462
msgid ""
-"Please refer to <a "
-"href=\"http://www.phpmyadmin.net/home_page/security.php\">http://www.phpmyadmin.net/home_page/security.php</a>"
+"Please refer to <a href=\"http://www.phpmyadmin.net/home_page/security.php"
+"\">http://www.phpmyadmin.net/home_page/security.php</a>"
msgstr ""
#. type: Content of: <html><body><div><h4>
@@ -9874,8 +9761,8 @@ msgstr ""
#: orig-docs/Documentation.html:4469
msgid ""
"If you use Apache web server, phpMyAdmin exports information about "
-"authentication to the Apache environment and it can be used in Apache logs."
-" Currently there are two variables available:"
+"authentication to the Apache environment and it can be used in Apache logs. "
+"Currently there are two variables available:"
msgstr ""
#. type: Content of: <html><body><div><dl><dt>
@@ -9896,11 +9783,11 @@ msgstr "<code>userStatus</code>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:4478
msgid ""
-"Status of currently active user, one of <code>ok</code> (user is logged in),"
-" <code>mysql-denied</code> (MySQL denied user login), <code>allow-"
-"denied</code> (user denied by allow/deny rules), <code>root-denied</code> "
-"(root is denied in configuration), <code>empty-denied</code> (empty password"
-" is denied)."
+"Status of currently active user, one of <code>ok</code> (user is logged in), "
+"<code>mysql-denied</code> (MySQL denied user login), <code>allow-denied</"
+"code> (user denied by allow/deny rules), <code>root-denied</code> (root is "
+"denied in configuration), <code>empty-denied</code> (empty password is "
+"denied)."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -9940,9 +9827,9 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4500
msgid ""
-"You can now synchronize databases/tables in phpMyAdmin using the Synchronize"
-" feature. It allows you to connect to local as well as remote servers. This"
-" requires you to enter server host name, username, password, port and the "
+"You can now synchronize databases/tables in phpMyAdmin using the Synchronize "
+"feature. It allows you to connect to local as well as remote servers. This "
+"requires you to enter server host name, username, password, port and the "
"name of the database. Therefore you can now synchronize your databases "
"placed on the same server or some remote server."
msgstr ""
@@ -9961,10 +9848,10 @@ msgstr ""
#: orig-docs/Documentation.html:4515
msgid ""
"You need to fill in the host name of the server, the username and password "
-"of an user account already there in MySQL. Port is by default populated with"
-" 3306 (MySQL default port). Then the name of the database should be "
-"mentioned at the end. All the information other than the port needs to be "
-"filled explicitly for the source as well as target servers."
+"of an user account already there in MySQL. Port is by default populated with "
+"3306 (MySQL default port). Then the name of the database should be mentioned "
+"at the end. All the information other than the port needs to be filled "
+"explicitly for the source as well as target servers."
msgstr ""
#. type: Content of: <html><body><div><p>
@@ -9979,23 +9866,23 @@ msgstr ""
#: orig-docs/Documentation.html:4529
msgid ""
"On the left, are listed the source database table names. Some of the names "
-"have a <code>+</code> plus sign preceding them. This shows that these tables"
-" are only present in source database and they need to be added to the target"
-" database in order to synchronize the target database. The tables whose "
-"names are not preceded by a <code>+</code> sign are already present in the "
-"target database."
+"have a <code>+</code> plus sign preceding them. This shows that these tables "
+"are only present in source database and they need to be added to the target "
+"database in order to synchronize the target database. The tables whose names "
+"are not preceded by a <code>+</code> sign are already present in the target "
+"database."
msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4538
msgid ""
"On the right, are listed the target database table names. There are few "
-"table names that have <code>(not present)</code> appended after their names."
-" This means that these tables are to be created in target database in order "
-"to synchronize target database with source database. Some table names have a"
-" <code>-</code> minus sign preceding them. This shows that these tables are "
-"only present in target database and they will remain unchanged in the target"
-" database. The column in the middle shows the difference between the source "
+"table names that have <code>(not present)</code> appended after their names. "
+"This means that these tables are to be created in target database in order "
+"to synchronize target database with source database. Some table names have a "
+"<code>-</code> minus sign preceding them. This shows that these tables are "
+"only present in target database and they will remain unchanged in the target "
+"database. The column in the middle shows the difference between the source "
"and target corresponding tables."
msgstr ""
@@ -10004,8 +9891,8 @@ msgstr ""
msgid ""
"The difference is depicted by the red and green buttons with <tt>S</tt> and "
"<tt>D</tt> letters, indicating that either Structure or Data are not up to "
-"date. By clicking on them, they will turn grey, what means that they will be"
-" synchronized."
+"date. By clicking on them, they will turn grey, what means that they will be "
+"synchronized."
msgstr ""
#. type: Content of: <html><body><div><h2>
@@ -10016,8 +9903,8 @@ msgstr "Informace pro vývojáře"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4557
msgid ""
-"phpMyAdmin is Open Source, so you're invited to contribute to it. Many great"
-" features have been written by other people and you too can help to make "
+"phpMyAdmin is Open Source, so you're invited to contribute to it. Many great "
+"features have been written by other people and you too can help to make "
"phpMyAdmin a useful tool."
msgstr ""
@@ -10031,9 +9918,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4564
msgid ""
-"All files include <i>libraries/header.inc.php</i> (layout),. "
-"<i>libraries/common.lib.php</i> (common functions) and "
-"<i>config.inc.php</i>."
+"All files include <i>libraries/header.inc.php</i> (layout),. <i>libraries/"
+"common.lib.php</i> (common functions) and <i>config.inc.php</i>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -10054,16 +9940,16 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4572
msgid ""
-"Obviously, you're free to use whatever coding style you want. But please try"
-" to keep your code as simple as possible: beginners are using phpMyAdmin as "
+"Obviously, you're free to use whatever coding style you want. But please try "
+"to keep your code as simple as possible: beginners are using phpMyAdmin as "
"an example application."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4575
msgid ""
-"As far as possible, we want the scripts to be XHTML1.0 and CSS2 compliant on"
-" one hand, they fit the <a href=\"http://pear.php.net/\"> <abbr title=\"PHP "
+"As far as possible, we want the scripts to be XHTML1.0 and CSS2 compliant on "
+"one hand, they fit the <a href=\"http://pear.php.net/\"> <abbr title=\"PHP "
"Extension and Application Repository\">PEAR</abbr> coding standards</a> on "
"the other hand. Please pay attention to this."
msgstr ""
@@ -10071,9 +9957,9 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4581
msgid ""
-"Please enable showing PHP errors and warnings by the <code><a "
-"href=\"#cfg_Error_Handler_display\">$cfg['Error_Handler']['display']</a></code>"
-" configuration directive."
+"Please enable showing PHP errors and warnings by the <code><a href="
+"\"#cfg_Error_Handler_display\">$cfg['Error_Handler']['display']</a></code> "
+"configuration directive."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -10087,11 +9973,11 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4587
msgid ""
-"Please use gettext wrappers around all messages (<code>__('Some "
-"text')</code> or <code>_ngettext()</code> function). To translate them, you"
-" need to call <code>scripts/update-po</code> script. To use translated "
-"messages, call <code>scripts/generate-mo</code>, which generates binary "
-"files read by Gettext."
+"Please use gettext wrappers around all messages (<code>__('Some text')</"
+"code> or <code>_ngettext()</code> function). To translate them, you need to "
+"call <code>scripts/update-po</code> script. To use translated messages, call "
+"<code>scripts/generate-mo</code>, which generates binary files read by "
+"Gettext."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -10164,8 +10050,8 @@ msgstr ""
#: orig-docs/Documentation.html:4622 orig-docs/README:33
msgid ""
"This program is free software; you can redistribute it and/or modify it "
-"under the terms of the GNU General Public License version 2, as published by"
-" the Free Software Foundation."
+"under the terms of the GNU General Public License version 2, as published by "
+"the Free Software Foundation."
msgstr ""
"Tento program je svobodný software; můžete jej šířit a modifikovat podle "
"ustanovení GNU General Public License verze 2, vydávané Free Software "
@@ -10192,8 +10078,8 @@ msgstr ""
#. type: Plain text
#: orig-docs/Documentation.html:4635 orig-docs/README:42
msgid ""
-"You should have received a copy of the GNU General Public License along with"
-" this program; if not, write to the Free Software Foundation, Inc., 51 "
+"You should have received a copy of the GNU General Public License along with "
+"this program; if not, write to the Free Software Foundation, Inc., 51 "
"Franklin St, Fifth Floor, Boston, MA 02110-1301 USA"
msgstr ""
"Kopii GNU General Public License jste měli obdržet spolu s tímto programem; "
@@ -10242,7 +10128,8 @@ msgstr "různé opravy a vylepšení"
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:4657
-msgid "<abbr title=\"structured query language\">SQL</abbr> analyser (most of it)"
+msgid ""
+"<abbr title=\"structured query language\">SQL</abbr> analyser (most of it)"
msgstr ""
"analyzátor <abbr title=\"structured query language\">SQL</abbr> (jeho "
"většina)"
@@ -10319,7 +10206,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:4683
-msgid "Host authentication <abbr title=\"Internet Protocol\">IP</abbr> Allow/Deny"
+msgid ""
+"Host authentication <abbr title=\"Internet Protocol\">IP</abbr> Allow/Deny"
msgstr ""
#. type: Content of: <html><body><div><ul><li><ul><li>
@@ -10568,9 +10456,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:4768
msgid ""
-"<abbr title=\"Portable Document Format\">PDF</abbr>-scratchboard for "
-"WYSIWYG-distribution of <abbr title=\"Portable Document Format\">PDF</abbr> "
-"relations"
+"<abbr title=\"Portable Document Format\">PDF</abbr>-scratchboard for WYSIWYG-"
+"distribution of <abbr title=\"Portable Document Format\">PDF</abbr> relations"
msgstr ""
#. type: Content of: <html><body><div><ul><li><ul><li>
@@ -10600,8 +10487,7 @@ msgstr "podpora pro japonské kódování kanji"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4779
-msgid ""
-"Piotr Roszatycki <d3xter_at_users.sourceforge.net> and Dan Wilson"
+msgid "Piotr Roszatycki <d3xter_at_users.sourceforge.net> and Dan Wilson"
msgstr ""
"Piotr Roszatycki <d3xter_at_users.sourceforge.net> and Dan Wilson"
@@ -10629,10 +10515,10 @@ msgstr "Maxime Delorme <delorme.maxime_at_free.fr>"
#: orig-docs/Documentation.html:4791
msgid ""
"<abbr title=\"Portable Document Format\">PDF</abbr> schema output, thanks "
-"also to Olivier Plathey for the "FPDF" library (see <a "
-"href=\"http://www.fpdf.org/\">http://www.fpdf.org/</a>) and Steven Wittens "
-"for the "UFPDF" library (see <a "
-"href=\"http://www.acko.net/node/56\">http://www.acko.net/node/56</a>)."
+"also to Olivier Plathey for the "FPDF" library (see <a href="
+"\"http://www.fpdf.org/\">http://www.fpdf.org/</a>) and Steven Wittens for "
+"the "UFPDF" library (see <a href=\"http://www.acko.net/"
+"node/56\">http://www.acko.net/node/56</a>)."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -10682,7 +10568,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:4819
-msgid "TCPDF library (<a href=\"http://www.tcpdf.org\">http://www.tcpdf.org</a>)"
+msgid ""
+"TCPDF library (<a href=\"http://www.tcpdf.org\">http://www.tcpdf.org</a>)"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -10880,25 +10767,25 @@ msgstr ""
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4917
msgid ""
-"Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita, "
-"Péter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow, Mats "
-"Engstrom, Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas Kläger, "
-"Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas "
-"Pauley, Bernard M. Piller, Laurent Haas, "Sakamoto", Yuval Sarna, "
-"www.securereality.com.au, Alexis Soulard, Alvar Soome, Siu Sun, Peter Svec, "
-"Michael Tacelosky, Rachim Tamsjadi, Kositer Uros, Luís V., Martijn W."
-" van der Lee, Algis Vainauskas, Daniel Villanueva, Vinay, Ignacio Vazquez-"
+"Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita, Pé"
+"ter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow, Mats Engstrom, "
+"Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas Kläger, Lubos "
+"Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas Pauley, "
+"Bernard M. Piller, Laurent Haas, "Sakamoto", Yuval Sarna, www."
+"securereality.com.au, Alexis Soulard, Alvar Soome, Siu Sun, Peter Svec, "
+"Michael Tacelosky, Rachim Tamsjadi, Kositer Uros, Luís V., Martijn W. "
+"van der Lee, Algis Vainauskas, Daniel Villanueva, Vinay, Ignacio Vazquez-"
"Abrams, Chee Wai, Jakub Wilk, Thomas Michael Winningham, Vilius Zigmantas, "
""Manuzhai"."
msgstr ""
-"Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita, "
-"Péter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow, Mats "
-"Engstrom, Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas Kläger, "
-"Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas "
-"Pauley, Bernard M. Piller, Laurent Haas, "Sakamoto", Yuval Sarna, "
-"www.securereality.com.au, Alexis Soulard, Alvar Soome, Siu Sun, Peter Svec, "
-"Michael Tacelosky, Rachim Tamsjadi, Kositer Uros, Luís V., Martijn W."
-" van der Lee, Algis Vainauskas, Daniel Villanueva, Vinay, Ignacio Vazquez-"
+"Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita, Pé"
+"ter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow, Mats Engstrom, "
+"Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas Kläger, Lubos "
+"Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas Pauley, "
+"Bernard M. Piller, Laurent Haas, "Sakamoto", Yuval Sarna, www."
+"securereality.com.au, Alexis Soulard, Alvar Soome, Siu Sun, Peter Svec, "
+"Michael Tacelosky, Rachim Tamsjadi, Kositer Uros, Luís V., Martijn W. "
+"van der Lee, Algis Vainauskas, Daniel Villanueva, Vinay, Ignacio Vazquez-"
"Abrams, Chee Wai, Jakub Wilk, Thomas Michael Winningham, Vilius Zigmantas, "
""Manuzhai"."
@@ -10912,8 +10799,8 @@ msgstr "Původní poděkování ve verzi 2.1.0"
msgid ""
"This work is based on Peter Kuppelwieser's MySQL-Webadmin. It was his idea "
"to create a web-based interface to MySQL using PHP3. Although I have not "
-"used any of his source-code, there are some concepts I've borrowed from him."
-" phpMyAdmin was created because Peter told me he wasn't going to further "
+"used any of his source-code, there are some concepts I've borrowed from him. "
+"phpMyAdmin was created because Peter told me he wasn't going to further "
"develop his (great) tool."
msgstr ""
@@ -10928,8 +10815,8 @@ msgid ""
"Amalesh Kempf <ak-lsml_at_living-source.com> who contributed the code "
"for the check when dropping a table or database. He also suggested that you "
"should be able to specify the primary key on tbl_create.php3. To version "
-"1.1.1 he contributed the ldi_*.php3-set (Import text-files) as well as a "
-"bug-report. Plus many smaller improvements."
+"1.1.1 he contributed the ldi_*.php3-set (Import text-files) as well as a bug-"
+"report. Plus many smaller improvements."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -10952,8 +10839,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4958
msgid ""
-"Alexandr Bravo <abravo_at_hq.admiral.ru> who contributed "
-"tbl_select.php3, a feature to display only some columns from a table."
+"Alexandr Bravo <abravo_at_hq.admiral.ru> who contributed tbl_select."
+"php3, a feature to display only some columns from a table."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11025,41 +10912,40 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4994
msgid ""
-"<a href=\"http://www.wikipedia.org/wiki/Blowfish_%28cipher%29\">Blowfish</a>"
-" - a keyed, symmetric block cipher, designed in 1993 by Bruce Schneier."
+"<a href=\"http://www.wikipedia.org/wiki/Blowfish_%28cipher%29\">Blowfish</a> "
+"- a keyed, symmetric block cipher, designed in 1993 by Bruce Schneier."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4996
msgid ""
-"<a href=\"http://en.wikipedia.org/wiki/Web_browser\">Browser (Web "
-"Browser)</a> - a software application that enables a user to display and "
-"interact with text, images, and other information typically located on a web"
-" page at a website on the World Wide Web."
+"<a href=\"http://en.wikipedia.org/wiki/Web_browser\">Browser (Web Browser)</"
+"a> - a software application that enables a user to display and interact with "
+"text, images, and other information typically located on a web page at a "
+"website on the World Wide Web."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5000
msgid ""
-"<a href=\"http://www.wikipedia.org/wiki/Bzip2\">bzip2</a> - a free "
-"software/open source data compression algorithm and program developed by "
-"Julian Seward."
+"<a href=\"http://www.wikipedia.org/wiki/Bzip2\">bzip2</a> - a free software/"
+"open source data compression algorithm and program developed by Julian "
+"Seward."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5003
msgid ""
-"<a href=\"http://www.wikipedia.org/wiki/CGI\">CGI (Common Gateway "
-"Interface)</a> - an important World Wide Web technology that enables a "
-"client web browser to request data from a program executed on the Web "
-"server."
+"<a href=\"http://www.wikipedia.org/wiki/CGI\">CGI (Common Gateway Interface)"
+"</a> - an important World Wide Web technology that enables a client web "
+"browser to request data from a program executed on the Web server."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5006
msgid ""
-"<a href=\"http://www.wikipedia.org/wiki/Changelog\">Changelog</a> - a log or"
-" record of changes made to a project."
+"<a href=\"http://www.wikipedia.org/wiki/Changelog\">Changelog</a> - a log or "
+"record of changes made to a project."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11073,8 +10959,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5011
msgid ""
-"<a href=\"http://www.wikipedia.org/wiki/Column_%28database%29\">column</a> -"
-" a set of data values of a particular simple type, one for each row of the "
+"<a href=\"http://www.wikipedia.org/wiki/Column_%28database%29\">column</a> - "
+"a set of data values of a particular simple type, one for each row of the "
"table."
msgstr ""
@@ -11101,14 +10987,14 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5020
msgid ""
-"<a id=\"database\" "
-"href=\"http://www.wikipedia.org/wiki/Database\">database</a> - an organized "
-"collection of data."
+"<a id=\"database\" href=\"http://www.wikipedia.org/wiki/Database\">database</"
+"a> - an organized collection of data."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5022
-msgid "Engine - look at <a href=\"#glossar_storage_engine\">Storage Engines</a>."
+msgid ""
+"Engine - look at <a href=\"#glossar_storage_engine\">Storage Engines</a>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11128,9 +11014,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5027
msgid ""
-"<a "
-"href=\"http://www.wikipedia.org/wiki/Field_%28computer_science%29\">Field</a>"
-" - one part of divided data/columns."
+"<a href=\"http://www.wikipedia.org/wiki/Field_%28computer_science"
+"%29\">Field</a> - one part of divided data/columns."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11144,7 +11029,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5033
-msgid "<a href=\"http://www.fpdf.org/\">FPDF (FreePDF)</a> - the free PDF library"
+msgid ""
+"<a href=\"http://www.fpdf.org/\">FPDF (FreePDF)</a> - the free PDF library"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11177,8 +11063,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5044
msgid ""
-"<a href=\"http://www.wikipedia.org/wiki/Hostname\">hostname</a> - the unique"
-" name by which a network attached device is known on a network."
+"<a href=\"http://www.wikipedia.org/wiki/Hostname\">hostname</a> - the unique "
+"name by which a network attached device is known on a network."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11208,9 +11094,9 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5055
msgid ""
-"<a id=\"glossar_index\" "
-"href=\"http://www.wikipedia.org/wiki/Index_%28database%29\">Index</a> - a "
-"feature that allows quick access to the rows in a table."
+"<a id=\"glossar_index\" href=\"http://www.wikipedia.org/wiki/Index_"
+"%28database%29\">Index</a> - a feature that allows quick access to the rows "
+"in a table."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11240,16 +11126,16 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5066
msgid ""
-"<a href=\"http://www.wikipedia.org/wiki/ISP\">ISP (Internet service "
-"provider)</a> - a business or organization that offers users access to the "
-"Internet and related services."
+"<a href=\"http://www.wikipedia.org/wiki/ISP\">ISP (Internet service provider)"
+"</a> - a business or organization that offers users access to the Internet "
+"and related services."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5068
msgid ""
-"<a id=\"jpeg\" href=\"http://www.wikipedia.org/wiki/JPEG\">JPEG</a> - a most"
-" commonly used standard method of lossy compression for photographic images."
+"<a id=\"jpeg\" href=\"http://www.wikipedia.org/wiki/JPEG\">JPEG</a> - a most "
+"commonly used standard method of lossy compression for photographic images."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11265,9 +11151,9 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5073
msgid ""
-"<a "
-"href=\"http://www.wikipedia.org/wiki/LaTeX\">L<sup>A</sup>T<sub><big>E</big></sub>X</a>"
-" - a document preparation system for the T<sub>E</sub>X typesetting program."
+"<a href=\"http://www.wikipedia.org/wiki/LaTeX\">L<sup>A</sup>T<sub><big>E</"
+"big></sub>X</a> - a document preparation system for the T<sub>E</sub>X "
+"typesetting program."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11281,11 +11167,11 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5078
msgid ""
-"<a id=\"glossar_mac_os_x\" "
-"href=\"http://www.wikipedia.org/wiki/Mac_OS_X\"><acronym title=\"Apple "
-"Macintosh\">Mac</acronym> <abbr title=\"operating system\">OS</abbr> X</a> -"
-" the operating system which is included with all currently shipping Apple "
-"Macintosh computers in the consumer and professional markets."
+"<a id=\"glossar_mac_os_x\" href=\"http://www.wikipedia.org/wiki/Mac_OS_X"
+"\"><acronym title=\"Apple Macintosh\">Mac</acronym> <abbr title=\"operating "
+"system\">OS</abbr> X</a> - the operating system which is included with all "
+"currently shipping Apple Macintosh computers in the consumer and "
+"professional markets."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11297,7 +11183,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5083
-msgid "<a href=\"http://php.net/mcrypt\">mcrypt</a> - the MCrypt PHP extension."
+msgid ""
+"<a href=\"http://php.net/mcrypt\">mcrypt</a> - the MCrypt PHP extension."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11317,16 +11204,16 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5089
msgid ""
-"<a href=\"http://www.wikipedia.org/wiki/MySQL\">MySQL</a> - a multithreaded,"
-" multi-user, SQL (Structured Query Language) Database Management System "
+"<a href=\"http://www.wikipedia.org/wiki/MySQL\">MySQL</a> - a multithreaded, "
+"multi-user, SQL (Structured Query Language) Database Management System "
"(DBMS)."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5092
msgid ""
-"<a href=\"http://php.net/mysqli\">mysqli</a> - the improved MySQL client PHP"
-" extension."
+"<a href=\"http://php.net/mysqli\">mysqli</a> - the improved MySQL client PHP "
+"extension."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11345,10 +11232,10 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5098
msgid ""
-"<a href=\"http://www.wikipedia.org/wiki/OS_X\"><abbr title=\"operating "
-"system\">OS</abbr> X</a> - look at <a href=\"#glossar_mac_os_x\"><acronym "
-"title=\"Apple Macintosh\">Mac</acronym> <abbr title=\"operating "
-"system\">OS</abbr> X</a>."
+"<a href=\"http://www.wikipedia.org/wiki/OS_X\"><abbr title=\"operating system"
+"\">OS</abbr> X</a> - look at <a href=\"#glossar_mac_os_x\"><acronym title="
+"\"Apple Macintosh\">Mac</acronym> <abbr title=\"operating system\">OS</abbr> "
+"X</a>."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11370,17 +11257,17 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5107
msgid ""
-"<a href=\"http://php.net/pcre\">PCRE (Perl Compatible Regular "
-"Expressions)</a> - the perl-compatible regular expression functions for PHP"
+"<a href=\"http://php.net/pcre\">PCRE (Perl Compatible Regular Expressions)</"
+"a> - the perl-compatible regular expression functions for PHP"
msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5109
msgid ""
"<a href=\"http://www.wikipedia.org/wiki/PHP\">PHP</a> - short for \"PHP: "
-"Hypertext Preprocessor\", is an open-source, reflective programming language"
-" used mainly for developing server-side applications and dynamic web "
-"content, and more recently, a broader range of software applications."
+"Hypertext Preprocessor\", is an open-source, reflective programming language "
+"used mainly for developing server-side applications and dynamic web content, "
+"and more recently, a broader range of software applications."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11418,8 +11305,8 @@ msgstr ""
#: orig-docs/Documentation.html:5124
msgid ""
"<a href=\"http://www.wikipedia.org/wiki/Server_%28computing%29\">Server</a> "
-"- a computer system that provides services to other computing systems over a"
-" network."
+"- a computer system that provides services to other computing systems over a "
+"network."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11432,8 +11319,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5129
msgid ""
-"<a href=\"http://www.wikipedia.org/wiki/Socket#Computer_sockets\">socket</a>"
-" - a form of inter-process communication."
+"<a href=\"http://www.wikipedia.org/wiki/Socket#Computer_sockets\">socket</a> "
+"- a form of inter-process communication."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11454,8 +11341,8 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5136
msgid ""
-"<a href=\"http://www.wikipedia.org/wiki/Table_%28database%29\">table</a> - a"
-" set of data elements (cells) that is organized, defined and stored as "
+"<a href=\"http://www.wikipedia.org/wiki/Table_%28database%29\">table</a> - a "
+"set of data elements (cells) that is organized, defined and stored as "
"horizontal rows and vertical columns where each item can be uniquely "
"identified by a label or key or by it?s position in relation to other items."
msgstr ""
@@ -11489,10 +11376,10 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:5147
msgid ""
-"<a href=\"http://www.wikipedia.org/wiki/URL\">URL (Uniform Resource "
-"Locator)</a> - a sequence of characters, conforming to a standardized "
-"format, that is used for referring to resources, such as documents and "
-"images on the Internet, by their location."
+"<a href=\"http://www.wikipedia.org/wiki/URL\">URL (Uniform Resource Locator)"
+"</a> - a sequence of characters, conforming to a standardized format, that "
+"is used for referring to resources, such as documents and images on the "
+"Internet, by their location."
msgstr ""
#. type: Content of: <html><body><div><ul><li>
@@ -11529,13 +11416,11 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: orig-docs/Documentation.html:5167
msgid ""
-"Copyright © 2003 - 2010 <a "
-"href=\"http://www.phpmyadmin.net/home_page/team.php\">phpMyAdmin devel "
-"team</a>"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
+"team.php\">phpMyAdmin devel team</a>"
msgstr ""
-"Copyright © 2003 - 2010 <a "
-"href=\"http://www.phpmyadmin.net/home_page/team.php\">tým vývojářů "
-"phpMyAdmina</a>"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
+"team.php\">tým vývojářů phpMyAdmina</a>"
#. type: Content of: <html><body><ul><li>
#: orig-docs/Documentation.html:5168
@@ -11545,16 +11430,17 @@ msgstr "<a href=\"LICENSE\">Licence</a>"
#. type: Content of: <html><body><ul><li>
#: orig-docs/Documentation.html:5169
msgid "<a href=\"http://www.phpmyadmin.net/home_page/donate.php\">Donate</a>"
-msgstr "<a href=\"http://www.phpmyadmin.net/home_page/donate.php\">Přispějte</a>"
+msgstr ""
+"<a href=\"http://www.phpmyadmin.net/home_page/donate.php\">Přispějte</a>"
#. type: Content of: <html><body><ul><li>
#: orig-docs/Documentation.html:5170
msgid ""
-"Valid <a href=\"http://validator.w3.org/check/referer\">HTML</a> and <a "
-"href=\"http://jigsaw.w3.org/css-validator/check/referer\">CSS</a>"
+"Valid <a href=\"http://validator.w3.org/check/referer\">HTML</a> and <a href="
+"\"http://jigsaw.w3.org/css-validator/check/referer\">CSS</a>"
msgstr ""
-"Platné <a href=\"http://validator.w3.org/check/referer\">HTML</a> a <a "
-"href=\"http://jigsaw.w3.org/css-validator/check/referer\">CSS</a>"
+"Platné <a href=\"http://validator.w3.org/check/referer\">HTML</a> a <a href="
+"\"http://jigsaw.w3.org/css-validator/check/referer\">CSS</a>"
#. type: Content of: <html><body><h1>
#: output/cs/index-full-template.html:7 output/cs/index-full-template.html:10
@@ -11589,26 +11475,25 @@ msgstr "<a href=\"Documentation.html\">Hlavní dokumentace</a>"
#. type: Content of: <p>
#: addendum/head.html:2
msgid ""
-"This is translated version of a <a "
-"href=\"http://www.phpmyadmin.net/documentation/\">phpMyAdmin "
-"documentation</a>. You can contribute to it on our <a "
-"href=\"https://l10n.cihar.com/projects/pmadoc/\">translation server</a>."
+"This is translated version of a <a href=\"http://www.phpmyadmin.net/"
+"documentation/\">phpMyAdmin documentation</a>. You can contribute to it on "
+"our <a href=\"https://l10n.cihar.com/projects/pmadoc/\">translation server</"
+"a>."
msgstr ""
-"Vidíte přeloženou verzi <a "
-"href=\"http://www.phpmyadmin.net/documentation/\">dokumentace "
-"phpMyAdmina</a>. K překladu můžete přispět na <a "
-"href=\"https://l10n.cihar.com/projects/pmadoc/\">překladovém serveru</a>."
+"Vidíte přeloženou verzi <a href=\"http://www.phpmyadmin.net/documentation/"
+"\">dokumentace phpMyAdmina</a>. K překladu můžete přispět na <a href="
+"\"https://l10n.cihar.com/projects/pmadoc/\">překladovém serveru</a>."
#. type: Content of: <p>
#: addendum/credits.html:2
msgid ""
-"This translation was brought to you by various translators on <a "
-"href=\"https://l10n.cihar.com/projects/pmadoc/\">translation server</a>. "
-"They should have written their names here."
+"This translation was brought to you by various translators on <a href="
+"\"https://l10n.cihar.com/projects/pmadoc/\">translation server</a>. They "
+"should have written their names here."
msgstr ""
-"Tento překlad vznikl spoluprácí překladatelů na <a "
-"href=\"https://l10n.cihar.com/projects/pmadoc/\">překladovém serveru</a>. "
-"Mimo jiné se na něm podíleli: Michal Čihař."
+"Tento překlad vznikl spoluprácí překladatelů na <a href=\"https://l10n.cihar."
+"com/projects/pmadoc/\">překladovém serveru</a>. Mimo jiné se na něm "
+"podíleli: Michal Čihař."
#. type: Plain text
#: addendum/comment.html:2
@@ -11627,8 +11512,7 @@ msgstr "Pro opravu překladu prosím upravte po soubory."
#. type: Plain text
#: addendum/comment.html:8
-msgid ""
-"Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/."
+msgid "Or you can edit them online at https://l10n.cihar.com/projects/pmadoc/."
msgstr ""
"Nebo je také můžete upravit na https://l10n.cihar.com/projects/pmadoc/."
@@ -11664,10 +11548,8 @@ msgstr "Místo seznamu úkolů používáme tracker na Sourceforge:"
#. type: Plain text
#: orig-docs/TODO:7
#, no-wrap
-msgid ""
-" http://sourceforge.net/tracker/?atid=377411&group_id=23067&func=browse\n"
-msgstr ""
-" http://sourceforge.net/tracker/?atid=377411&group_id=23067&func=browse\n"
+msgid " http://sourceforge.net/tracker/?atid=377411&group_id=23067&func=browse\n"
+msgstr " http://sourceforge.net/tracker/?atid=377411&group_id=23067&func=browse\n"
#. type: Plain text
#: orig-docs/TODO:8
@@ -11827,8 +11709,7 @@ msgstr ""
#: orig-docs/README:85
msgid ""
"Please send your questions to the appropriate mailing lists / forums. "
-"Before contacting us, please read the Documentation.html (esp. the FAQ "
-"part)."
+"Before contacting us, please read the Documentation.html (esp. the FAQ part)."
msgstr ""
#~ msgid "$cfg['NaviDatabaseNameColor'] string [CSS color]"
@@ -11841,11 +11722,11 @@ msgstr ""
#~ msgstr "phpMyAdmin 3.4.0-dev - Oficiální překladatelé"
#~ msgid ""
-#~ "<a href=\"http://www.phpmyadmin.net/\">php<span "
-#~ "class=\"myadmin\">MyAdmin</span></a> @@VER@@ official translators list"
+#~ "<a href=\"http://www.phpmyadmin.net/\">php<span class=\"myadmin"
+#~ "\">MyAdmin</span></a> @@VER@@ official translators list"
#~ msgstr ""
-#~ "<a href=\"http://www.phpmyadmin.net/\">php<span "
-#~ "class=\"myadmin\">MyAdmin</span></a> 3.4.0-dev oficiální seznam překladatelů"
+#~ "<a href=\"http://www.phpmyadmin.net/\">php<span class=\"myadmin"
+#~ "\">MyAdmin</span></a> 3.4.0-dev oficiální seznam překladatelů"
#~ msgid ""
#~ "Here is the list of the "official translators" of phpMyAdmin."
@@ -11854,12 +11735,12 @@ msgstr ""
#~ msgid ""
#~ "All translations listed here are included in this distribution. <span "
-#~ "class=\"important\">Please do <b>not</b> ask the translators to send you a "
-#~ "localized phpMyAdmin version!</span>"
+#~ "class=\"important\">Please do <b>not</b> ask the translators to send you "
+#~ "a localized phpMyAdmin version!</span>"
#~ msgstr ""
-#~ "Všechny překlady jsou obsaženy v distribuci. <span "
-#~ "class=\"important\">Prosíme <b>ne</b>žádejte překladatele, aby vám poslali "
-#~ "přeloženou verzi phpMyAdmina!</span>"
+#~ "Všechny překlady jsou obsaženy v distribuci. <span class=\"important"
+#~ "\">Prosíme <b>ne</b>žádejte překladatele, aby vám poslali přeloženou "
+#~ "verzi phpMyAdmina!</span>"
#~ msgid ""
#~ "<span class=\"important\">Please do <b>not</b> expect the translators to "
@@ -12195,7 +12076,8 @@ msgstr ""
#~ msgid ""
#~ "You should have received a copy of the GNU General Public License\n"
#~ "along with this program; if not, write to the Free Software\n"
-#~ "Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n"
+#~ "Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 "
+#~ "USA\n"
#~ msgstr ""
#~ "Kopii GNU General Public License jste měl obdržet spolu s tímto\n"
#~ "programem; pokud se tak nestalo, napište o ni Free Software \n"
@@ -12269,8 +12151,10 @@ msgstr ""
#~ " it under the terms of the GNU General Public License version 2,\n"
#~ " as published by the Free Software Foundation.\n"
#~ msgstr ""
-#~ " Tento program je svobodný software; můžete jej šířit a modifikovat podle\n"
-#~ " ustanovení GNU General Public License verze 2, vydávané Free Software\n"
+#~ " Tento program je svobodný software; můžete jej šířit a modifikovat "
+#~ "podle\n"
+#~ " ustanovení GNU General Public License verze 2, vydávané Free "
+#~ "Software\n"
#~ " Foundation.\n"
#~ msgid ""
@@ -12280,18 +12164,21 @@ msgstr ""
#~ " GNU General Public License for more details.\n"
#~ msgstr ""
#~ " Tento program je rozšiřován v naději, že bude užitečný, avšak BEZ\n"
-#~ " JAKÉKOLI ZÁRUKY; neposkytují se ani odvozené záruky PRODEJNOSTI anebo\n"
+#~ " JAKÉKOLI ZÁRUKY; neposkytují se ani odvozené záruky PRODEJNOSTI "
+#~ "anebo\n"
#~ " VHODNOSTI PRO URČITÝ ÚČEL. Další podrobnosti hledejte ve GNU General\n"
#~ " Public License.\n"
#~ msgid ""
#~ " You should have received a copy of the GNU General Public License\n"
#~ " along with this program; if not, write to the Free Software\n"
-#~ " Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n"
+#~ " Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA "
+#~ "02110-1301 USA\n"
#~ msgstr ""
#~ " Kopii GNU General Public License jste měl obdržet spolu s tímto\n"
#~ " programem; pokud se tak nestalo, napište o ni Free Software\n"
-#~ " Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n"
+#~ " Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 "
+#~ "USA\n"
#~ msgid ""
#~ " Installation:\n"
@@ -12345,7 +12232,8 @@ msgstr ""
#~ msgstr "PO4A-HEADER:mode=before;position=<!-- \\$Id"
#~ msgid "PO4A-HEADER:mode=after;position=<div id=\"body\">;beginboundary=<ul>"
-#~ msgstr "PO4A-HEADER:mode=after;position=<div id=\"body\">;beginboundary=<ul>"
+#~ msgstr ""
+#~ "PO4A-HEADER:mode=after;position=<div id=\"body\">;beginboundary=<ul>"
#~ msgid "<i>$Id: Documentation.html 13199 2009-12-31 13:27:55Z lem9 $</i>"
#~ msgstr "<i>$Id: Documentation.html 13199 2009-12-31 13:27:55Z lem9 $</i>"
@@ -12424,19 +12312,22 @@ msgstr ""
#~ "- Marc Delisle <marc_at_infomarc.info>\n"
#~ " * multi-language version\n"
#~ " * various fixes and improvements\n"
-#~ " * <abbr title=\"structured query language\">SQL</abbr> analyser (most of it)\n"
+#~ " * <abbr title=\"structured query language\">SQL</abbr> analyser (most "
+#~ "of it)\n"
#~ " * current project maintainer\n"
#~ "\n"
#~ "- Olivier Müller <om_at_omnis.ch>\n"
#~ " * started SourceForge phpMyAdmin project in March 2001\n"
-#~ " * sync'ed different existing CVS trees with new features and bugfixes\n"
+#~ " * sync'ed different existing CVS trees with new features and "
+#~ "bugfixes\n"
#~ " * multi-language improvements, dynamic language selection\n"
#~ " * current project maintainer\n"
#~ " * many bugfixes and improvements\n"
#~ "\n"
#~ "- Loïc Chapeaux <lolo_at_phpheaven.net>\n"
#~ " * rewrote and optimized javascript, DHTML and DOM stuff\n"
-#~ " * rewrote the scripts so they fit the <abbr title=\"PHP Extension and Application Repository\">PEAR</abbr> coding standards and\n"
+#~ " * rewrote the scripts so they fit the <abbr title=\"PHP Extension and "
+#~ "Application Repository\">PEAR</abbr> coding standards and\n"
#~ " generate XHTML1.0 and CSS2 compliant codes\n"
#~ " * improved the language detection system\n"
#~ " * many bugfixes and improvements\n"
@@ -12444,9 +12335,11 @@ msgstr ""
#~ "- Robin Johnson <robbat2_at_users.sourceforge.net>\n"
#~ " * database maintenance controls\n"
#~ " * table type code\n"
-#~ " * Host authentication <abbr title=\"Internet Protocol\">IP</abbr> Allow/Deny\n"
+#~ " * Host authentication <abbr title=\"Internet Protocol\">IP</abbr> "
+#~ "Allow/Deny\n"
#~ " * DB-based configuration (Not completed)\n"
-#~ " * <abbr title=\"structured query language\">SQL</abbr> parser and pretty-printer\n"
+#~ " * <abbr title=\"structured query language\">SQL</abbr> parser and "
+#~ "pretty-printer\n"
#~ " * <abbr title=\"structured query language\">SQL</abbr> validator\n"
#~ " * many bugfixes and improvements\n"
#~ "\n"
@@ -12496,18 +12389,22 @@ msgstr ""
#~ " * various features and fixes\n"
#~ " * Czech language file updates\n"
#~ "\n"
-#~ "- Christophe Gesché from the "MySQL Form Generator for PHPMyAdmin"\n"
+#~ "- Christophe Gesché from the "MySQL Form Generator for "
+#~ "PHPMyAdmin"\n"
#~ " (http://sf.net/projects/phpmysqlformgen/)\n"
#~ " * suggested the patch for multiple table printviews\n"
#~ "\n"
#~ "- Garvin Hicking <me_at_supergarv.de>\n"
#~ " * built the patch for vertical display of table rows\n"
-#~ " * built the Javascript based Query window + <abbr title=\"structured query language\">SQL</abbr> history\n"
+#~ " * built the Javascript based Query window + <abbr title=\"structured "
+#~ "query language\">SQL</abbr> history\n"
#~ " * Improvement of column/db comments\n"
#~ " * (MIME)-Transformations for columns\n"
#~ " * Use custom alias names for Databases in left frame\n"
#~ " * hierarchical/nested table display\n"
-#~ " * <abbr title=\"Portable Document Format\">PDF</abbr>-scratchboard for WYSIWYG-distribution of <abbr title=\"Portable Document Format\">PDF</abbr> relations\n"
+#~ " * <abbr title=\"Portable Document Format\">PDF</abbr>-scratchboard "
+#~ "for WYSIWYG-distribution of <abbr title=\"Portable Document Format\">PDF</"
+#~ "abbr> relations\n"
#~ " * new icon sets\n"
#~ " * vertical display of column properties page\n"
#~ " * some bugfixes, features, support, German language additions\n"
@@ -12515,19 +12412,24 @@ msgstr ""
#~ "- Yukihiro Kawada <kawada_at_den.fujifilm.co.jp>\n"
#~ " * japanese kanji encoding conversion feature\n"
#~ "\n"
-#~ "- Piotr Roszatycki <d3xter_at_users.sourceforge.net> and Dan Wilson\n"
+#~ "- Piotr Roszatycki <d3xter_at_users.sourceforge.net> and Dan "
+#~ "Wilson\n"
#~ " * the Cookie authentication mode\n"
#~ "\n"
#~ "- Axel Sander <n8falke_at_users.sourceforge.net>\n"
#~ " * table relation-links feature\n"
#~ "\n"
#~ "- Maxime Delorme <delorme.maxime_at_free.fr>\n"
-#~ " * <abbr title=\"Portable Document Format\">PDF</abbr> schema output, thanks also to Olivier Plathey for the\n"
-#~ " "FPDF" library (see <a href=\"http://www.fpdf.org/\">http://www.fpdf.org/</a>) and Steven Wittens\n"
-#~ " for the "UFPDF" library (see <a href=\"http://www.acko.net/node/56\">http://www.acko.net/node/56</a>).\n"
+#~ " * <abbr title=\"Portable Document Format\">PDF</abbr> schema output, "
+#~ "thanks also to Olivier Plathey for the\n"
+#~ " "FPDF" library (see <a href=\"http://www.fpdf.org/"
+#~ "\">http://www.fpdf.org/</a>) and Steven Wittens\n"
+#~ " for the "UFPDF" library (see <a href=\"http://www.acko."
+#~ "net/node/56\">http://www.acko.net/node/56</a>).\n"
#~ "\n"
#~ "- Olof Edlund <olof.edlund_at_upright.se>\n"
-#~ " * <abbr title=\"structured query language\">SQL</abbr> validator server\n"
+#~ " * <abbr title=\"structured query language\">SQL</abbr> validator "
+#~ "server\n"
#~ "\n"
#~ "- Ivan R. Lanin <ivanlanin_at_users.sourceforge.net>\n"
#~ " * phpMyAdmin logo (until June 2004)\n"
@@ -12560,58 +12462,83 @@ msgstr ""
#~ " * improved setup script\n"
#~ "\n"
#~ "And also to the following people who have contributed minor changes,\n"
-#~ "enhancements, bugfixes or support for a new language since version 2.1.0:\n"
+#~ "enhancements, bugfixes or support for a new language since version "
+#~ "2.1.0:\n"
#~ "\n"
#~ "Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita,\n"
#~ "Péter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow,\n"
-#~ "Mats Engstrom, Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas Kläger,\n"
-#~ "Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas Pauley,\n"
+#~ "Mats Engstrom, Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas "
+#~ "Kläger,\n"
+#~ "Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas "
+#~ "Pauley,\n"
#~ "Bernard M. Piller, Laurent Haas, "Sakamoto", Yuval Sarna,\n"
-#~ "www.securereality.com.au, Alexis Soulard, Alvar Soome, Siu Sun, Peter Svec,\n"
+#~ "www.securereality.com.au, Alexis Soulard, Alvar Soome, Siu Sun, Peter "
+#~ "Svec,\n"
#~ "Michael Tacelosky, Rachim Tamsjadi, Kositer Uros,\n"
#~ "Luís V., Martijn W. van der Lee,\n"
-#~ "Algis Vainauskas, Daniel Villanueva, Vinay, Ignacio Vazquez-Abrams, Chee Wai,\n"
-#~ "Jakub Wilk, Thomas Michael Winningham, Vilius Zigmantas, "Manuzhai".\n"
+#~ "Algis Vainauskas, Daniel Villanueva, Vinay, Ignacio Vazquez-Abrams, Chee "
+#~ "Wai,\n"
+#~ "Jakub Wilk, Thomas Michael Winningham, Vilius Zigmantas, ""
+#~ "Manuzhai".\n"
#~ "\n"
#~ "\n"
#~ "Original Credits of Version 2.1.0\n"
#~ "---------------------------------\n"
#~ "\n"
-#~ " This work is based on Peter Kuppelwieser's MySQL-Webadmin. It was his idea\n"
-#~ " to create a web-based interface to MySQL using PHP3. Although I have not\n"
-#~ " used any of his source-code, there are some concepts I've borrowed from\n"
+#~ " This work is based on Peter Kuppelwieser's MySQL-Webadmin. It was his "
+#~ "idea\n"
+#~ " to create a web-based interface to MySQL using PHP3. Although I have "
+#~ "not\n"
+#~ " used any of his source-code, there are some concepts I've borrowed "
+#~ "from\n"
#~ " him. phpMyAdmin was created because Peter told me he wasn't going to\n"
#~ " further develop his (great) tool.\n"
#~ " Thanks go to\n"
-#~ " - Amalesh Kempf <ak-lsml_at_living-source.com> who contributed the\n"
-#~ " code for the check when dropping a table or database. He also suggested\n"
-#~ " that you should be able to specify the primary key on tbl_create.php3. To\n"
-#~ " version 1.1.1 he contributed the ldi_*.php3-set (Import text-files) as\n"
+#~ " - Amalesh Kempf <ak-lsml_at_living-source.com> who contributed "
+#~ "the\n"
+#~ " code for the check when dropping a table or database. He also "
+#~ "suggested\n"
+#~ " that you should be able to specify the primary key on tbl_create."
+#~ "php3. To\n"
+#~ " version 1.1.1 he contributed the ldi_*.php3-set (Import text-files) "
+#~ "as\n"
#~ " well as a bug-report. Plus many smaller improvements.\n"
-#~ " - Jan Legenhausen <jan_at_nrw.net>: He made many of the changes that\n"
-#~ " were introduced in 1.3.0 (including quite significant ones like the\n"
-#~ " authentication). For 1.4.1 he enhanced the table-dump feature. Plus\n"
+#~ " - Jan Legenhausen <jan_at_nrw.net>: He made many of the changes "
+#~ "that\n"
+#~ " were introduced in 1.3.0 (including quite significant ones like "
+#~ "the\n"
+#~ " authentication). For 1.4.1 he enhanced the table-dump feature. "
+#~ "Plus\n"
#~ " bug-fixes and help.\n"
-#~ " - Marc Delisle <DelislMa_at_CollegeSherbrooke.qc.ca> made phpMyAdmin\n"
-#~ " language-independent by outsourcing the strings to a separate file. He\n"
+#~ " - Marc Delisle <DelislMa_at_CollegeSherbrooke.qc.ca> made "
+#~ "phpMyAdmin\n"
+#~ " language-independent by outsourcing the strings to a separate file. "
+#~ "He\n"
#~ " also contributed the French translation.\n"
#~ " - Alexandr Bravo <abravo_at_hq.admiral.ru> who contributed\n"
-#~ " tbl_select.php3, a feature to display only some fields from a table.\n"
+#~ " tbl_select.php3, a feature to display only some fields from a "
+#~ "table.\n"
#~ " - Chris Jackson <chrisj_at_ctel.net> added support for MySQL\n"
#~ " functions in tbl_change.php3. He also added the\n"
#~ " "Query by Example" feature in 2.0.\n"
-#~ " - Dave Walton <walton_at_nordicdms.com> added support for multiple\n"
+#~ " - Dave Walton <walton_at_nordicdms.com> added support for "
+#~ "multiple\n"
#~ " servers and is a regular contributor for bug-fixes.\n"
-#~ " - Gabriel Ash <ga244_at_is8.nyu.edu> contributed the random access\n"
+#~ " - Gabriel Ash <ga244_at_is8.nyu.edu> contributed the random "
+#~ "access\n"
#~ " features for 2.0.6.\n"
-#~ " The following people have contributed minor changes, enhancements, bugfixes\n"
+#~ " The following people have contributed minor changes, enhancements, "
+#~ "bugfixes\n"
#~ " or support for a new language:\n"
-#~ " Jim Kraai, Jordi Bruguera, Miquel Obrador, Geert Lund, Thomas Kleemann,\n"
+#~ " Jim Kraai, Jordi Bruguera, Miquel Obrador, Geert Lund, Thomas "
+#~ "Kleemann,\n"
#~ " Alexander Leidinger, Kiko Albiol, Daniel C. Chao, Pavel Piankov,\n"
-#~ " Sascha Kettler, Joe Pruett, Renato Lins, Mark Kronsbein, Jannis Hermanns,\n"
+#~ " Sascha Kettler, Joe Pruett, Renato Lins, Mark Kronsbein, Jannis "
+#~ "Hermanns,\n"
#~ " G. Wieggers.\n"
#~ "\n"
-#~ " And thanks to everyone else who sent me email with suggestions, bug-reports\n"
+#~ " And thanks to everyone else who sent me email with suggestions, bug-"
+#~ "reports\n"
#~ " and or just some feedback.\n"
#~ msgstr ""
#~ "phpMyAdmin - Poděkování\n"
@@ -12627,19 +12554,22 @@ msgstr ""
#~ "- Marc Delisle <marc_at_infomarc.info>\n"
#~ " * podpora pro více jazyků\n"
#~ " * různé opravy a vylepšení\n"
-#~ " * analyzátor <abbr title=\"structured query language\">SQL</abbr> (jeho větší část)\n"
+#~ " * analyzátor <abbr title=\"structured query language\">SQL</abbr> "
+#~ "(jeho větší část)\n"
#~ " * současný správce projektu\n"
#~ "\n"
#~ "- Olivier Müller <om_at_omnis.ch>\n"
#~ " * založil projekt phpMyAdmin na SourceForge v březnu 2001\n"
-#~ " * sync'ed different existing CVS trees with new features and bugfixes\n"
+#~ " * sync'ed different existing CVS trees with new features and "
+#~ "bugfixes\n"
#~ " * multi-language improvements, dynamic language selection\n"
#~ " * current project maintainer\n"
#~ " * many bugfixes and improvements\n"
#~ "\n"
#~ "- Loïc Chapeaux <lolo_at_phpheaven.net>\n"
#~ " * rewrote and optimized javascript, DHTML and DOM stuff\n"
-#~ " * rewrote the scripts so they fit the <abbr title=\"PHP Extension and Application Repository\">PEAR</abbr> coding standards and\n"
+#~ " * rewrote the scripts so they fit the <abbr title=\"PHP Extension and "
+#~ "Application Repository\">PEAR</abbr> coding standards and\n"
#~ " generate XHTML1.0 and CSS2 compliant codes\n"
#~ " * improved the language detection system\n"
#~ " * many bugfixes and improvements\n"
@@ -12647,9 +12577,11 @@ msgstr ""
#~ "- Robin Johnson <robbat2_at_users.sourceforge.net>\n"
#~ " * database maintenance controls\n"
#~ " * table type code\n"
-#~ " * Host authentication <abbr title=\"Internet Protocol\">IP</abbr> Allow/Deny\n"
+#~ " * Host authentication <abbr title=\"Internet Protocol\">IP</abbr> "
+#~ "Allow/Deny\n"
#~ " * DB-based configuration (Not completed)\n"
-#~ " * <abbr title=\"structured query language\">SQL</abbr> parser and pretty-printer\n"
+#~ " * <abbr title=\"structured query language\">SQL</abbr> parser and "
+#~ "pretty-printer\n"
#~ " * <abbr title=\"structured query language\">SQL</abbr> validator\n"
#~ " * many bugfixes and improvements\n"
#~ "\n"
@@ -12699,18 +12631,22 @@ msgstr ""
#~ " * various features and fixes\n"
#~ " * Czech language file updates\n"
#~ "\n"
-#~ "- Christophe Gesché from the "MySQL Form Generator for PHPMyAdmin"\n"
+#~ "- Christophe Gesché from the "MySQL Form Generator for "
+#~ "PHPMyAdmin"\n"
#~ " (http://sf.net/projects/phpmysqlformgen/)\n"
#~ " * suggested the patch for multiple table printviews\n"
#~ "\n"
#~ "- Garvin Hicking <me_at_supergarv.de>\n"
#~ " * built the patch for vertical display of table rows\n"
-#~ " * built the Javascript based Query window + <abbr title=\"structured query language\">SQL</abbr> history\n"
+#~ " * built the Javascript based Query window + <abbr title=\"structured "
+#~ "query language\">SQL</abbr> history\n"
#~ " * Improvement of column/db comments\n"
#~ " * (MIME)-Transformations for columns\n"
#~ " * Use custom alias names for Databases in left frame\n"
#~ " * hierarchical/nested table display\n"
-#~ " * <abbr title=\"Portable Document Format\">PDF</abbr>-scratchboard for WYSIWYG-distribution of <abbr title=\"Portable Document Format\">PDF</abbr> relations\n"
+#~ " * <abbr title=\"Portable Document Format\">PDF</abbr>-scratchboard "
+#~ "for WYSIWYG-distribution of <abbr title=\"Portable Document Format\">PDF</"
+#~ "abbr> relations\n"
#~ " * new icon sets\n"
#~ " * vertical display of column properties page\n"
#~ " * some bugfixes, features, support, German language additions\n"
@@ -12718,19 +12654,24 @@ msgstr ""
#~ "- Yukihiro Kawada <kawada_at_den.fujifilm.co.jp>\n"
#~ " * japanese kanji encoding conversion feature\n"
#~ "\n"
-#~ "- Piotr Roszatycki <d3xter_at_users.sourceforge.net> and Dan Wilson\n"
+#~ "- Piotr Roszatycki <d3xter_at_users.sourceforge.net> and Dan "
+#~ "Wilson\n"
#~ " * the Cookie authentication mode\n"
#~ "\n"
#~ "- Axel Sander <n8falke_at_users.sourceforge.net>\n"
#~ " * table relation-links feature\n"
#~ "\n"
#~ "- Maxime Delorme <delorme.maxime_at_free.fr>\n"
-#~ " * <abbr title=\"Portable Document Format\">PDF</abbr> schema output, thanks also to Olivier Plathey for the\n"
-#~ " "FPDF" library (see <a href=\"http://www.fpdf.org/\">http://www.fpdf.org/</a>) and Steven Wittens\n"
-#~ " for the "UFPDF" library (see <a href=\"http://www.acko.net/node/56\">http://www.acko.net/node/56</a>).\n"
+#~ " * <abbr title=\"Portable Document Format\">PDF</abbr> schema output, "
+#~ "thanks also to Olivier Plathey for the\n"
+#~ " "FPDF" library (see <a href=\"http://www.fpdf.org/"
+#~ "\">http://www.fpdf.org/</a>) and Steven Wittens\n"
+#~ " for the "UFPDF" library (see <a href=\"http://www.acko."
+#~ "net/node/56\">http://www.acko.net/node/56</a>).\n"
#~ "\n"
#~ "- Olof Edlund <olof.edlund_at_upright.se>\n"
-#~ " * <abbr title=\"structured query language\">SQL</abbr> validator server\n"
+#~ " * <abbr title=\"structured query language\">SQL</abbr> validator "
+#~ "server\n"
#~ "\n"
#~ "- Ivan R. Lanin <ivanlanin_at_users.sourceforge.net>\n"
#~ " * phpMyAdmin logo (until June 2004)\n"
@@ -12763,71 +12704,102 @@ msgstr ""
#~ " * improved setup script\n"
#~ "\n"
#~ "And also to the following people who have contributed minor changes,\n"
-#~ "enhancements, bugfixes or support for a new language since version 2.1.0:\n"
+#~ "enhancements, bugfixes or support for a new language since version "
+#~ "2.1.0:\n"
#~ "\n"
#~ "Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita,\n"
#~ "Péter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow,\n"
-#~ "Mats Engstrom, Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas Kläger,\n"
-#~ "Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas Pauley,\n"
+#~ "Mats Engstrom, Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas "
+#~ "Kläger,\n"
+#~ "Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas "
+#~ "Pauley,\n"
#~ "Bernard M. Piller, Laurent Haas, "Sakamoto", Yuval Sarna,\n"
-#~ "www.securereality.com.au, Alexis Soulard, Alvar Soome, Siu Sun, Peter Svec,\n"
+#~ "www.securereality.com.au, Alexis Soulard, Alvar Soome, Siu Sun, Peter "
+#~ "Svec,\n"
#~ "Michael Tacelosky, Rachim Tamsjadi, Kositer Uros,\n"
#~ "Luís V., Martijn W. van der Lee,\n"
-#~ "Algis Vainauskas, Daniel Villanueva, Vinay, Ignacio Vazquez-Abrams, Chee Wai,\n"
-#~ "Jakub Wilk, Thomas Michael Winningham, Vilius Zigmantas, "Manuzhai".\n"
+#~ "Algis Vainauskas, Daniel Villanueva, Vinay, Ignacio Vazquez-Abrams, Chee "
+#~ "Wai,\n"
+#~ "Jakub Wilk, Thomas Michael Winningham, Vilius Zigmantas, ""
+#~ "Manuzhai".\n"
#~ "\n"
#~ "\n"
#~ "Original Credits of Version 2.1.0\n"
#~ "---------------------------------\n"
#~ "\n"
-#~ " This work is based on Peter Kuppelwieser's MySQL-Webadmin. It was his idea\n"
-#~ " to create a web-based interface to MySQL using PHP3. Although I have not\n"
-#~ " used any of his source-code, there are some concepts I've borrowed from\n"
+#~ " This work is based on Peter Kuppelwieser's MySQL-Webadmin. It was his "
+#~ "idea\n"
+#~ " to create a web-based interface to MySQL using PHP3. Although I have "
+#~ "not\n"
+#~ " used any of his source-code, there are some concepts I've borrowed "
+#~ "from\n"
#~ " him. phpMyAdmin was created because Peter told me he wasn't going to\n"
#~ " further develop his (great) tool.\n"
#~ " Thanks go to\n"
-#~ " - Amalesh Kempf <ak-lsml_at_living-source.com> who contributed the\n"
-#~ " code for the check when dropping a table or database. He also suggested\n"
-#~ " that you should be able to specify the primary key on tbl_create.php3. To\n"
-#~ " version 1.1.1 he contributed the ldi_*.php3-set (Import text-files) as\n"
+#~ " - Amalesh Kempf <ak-lsml_at_living-source.com> who contributed "
+#~ "the\n"
+#~ " code for the check when dropping a table or database. He also "
+#~ "suggested\n"
+#~ " that you should be able to specify the primary key on tbl_create."
+#~ "php3. To\n"
+#~ " version 1.1.1 he contributed the ldi_*.php3-set (Import text-files) "
+#~ "as\n"
#~ " well as a bug-report. Plus many smaller improvements.\n"
-#~ " - Jan Legenhausen <jan_at_nrw.net>: He made many of the changes that\n"
-#~ " were introduced in 1.3.0 (including quite significant ones like the\n"
-#~ " authentication). For 1.4.1 he enhanced the table-dump feature. Plus\n"
+#~ " - Jan Legenhausen <jan_at_nrw.net>: He made many of the changes "
+#~ "that\n"
+#~ " were introduced in 1.3.0 (including quite significant ones like "
+#~ "the\n"
+#~ " authentication). For 1.4.1 he enhanced the table-dump feature. "
+#~ "Plus\n"
#~ " bug-fixes and help.\n"
-#~ " - Marc Delisle <DelislMa_at_CollegeSherbrooke.qc.ca> made phpMyAdmin\n"
-#~ " language-independent by outsourcing the strings to a separate file. He\n"
+#~ " - Marc Delisle <DelislMa_at_CollegeSherbrooke.qc.ca> made "
+#~ "phpMyAdmin\n"
+#~ " language-independent by outsourcing the strings to a separate file. "
+#~ "He\n"
#~ " also contributed the French translation.\n"
#~ " - Alexandr Bravo <abravo_at_hq.admiral.ru> who contributed\n"
-#~ " tbl_select.php3, a feature to display only some fields from a table.\n"
+#~ " tbl_select.php3, a feature to display only some fields from a "
+#~ "table.\n"
#~ " - Chris Jackson <chrisj_at_ctel.net> added support for MySQL\n"
#~ " functions in tbl_change.php3. He also added the\n"
#~ " "Query by Example" feature in 2.0.\n"
-#~ " - Dave Walton <walton_at_nordicdms.com> added support for multiple\n"
+#~ " - Dave Walton <walton_at_nordicdms.com> added support for "
+#~ "multiple\n"
#~ " servers and is a regular contributor for bug-fixes.\n"
-#~ " - Gabriel Ash <ga244_at_is8.nyu.edu> contributed the random access\n"
+#~ " - Gabriel Ash <ga244_at_is8.nyu.edu> contributed the random "
+#~ "access\n"
#~ " features for 2.0.6.\n"
-#~ " The following people have contributed minor changes, enhancements, bugfixes\n"
+#~ " The following people have contributed minor changes, enhancements, "
+#~ "bugfixes\n"
#~ " or support for a new language:\n"
-#~ " Jim Kraai, Jordi Bruguera, Miquel Obrador, Geert Lund, Thomas Kleemann,\n"
+#~ " Jim Kraai, Jordi Bruguera, Miquel Obrador, Geert Lund, Thomas "
+#~ "Kleemann,\n"
#~ " Alexander Leidinger, Kiko Albiol, Daniel C. Chao, Pavel Piankov,\n"
-#~ " Sascha Kettler, Joe Pruett, Renato Lins, Mark Kronsbein, Jannis Hermanns,\n"
+#~ " Sascha Kettler, Joe Pruett, Renato Lins, Mark Kronsbein, Jannis "
+#~ "Hermanns,\n"
#~ " G. Wieggers.\n"
#~ "\n"
-#~ " And thanks to everyone else who sent me email with suggestions, bug-reports\n"
+#~ " And thanks to everyone else who sent me email with suggestions, bug-"
+#~ "reports\n"
#~ " and or just some feedback.\n"
#~ msgid ""
-#~ "Copyright (C) 1998-2000 Tobias Ratschiller <tobias_at_ratschiller.com>\n"
-#~ "Copyright (C) 2001-2009 Marc Delisle <Marc.Delisle_at_cegepsherbrooke.qc.ca>\n"
+#~ "Copyright (C) 1998-2000 Tobias Ratschiller <tobias_at_ratschiller."
+#~ "com>\n"
+#~ "Copyright (C) 2001-2009 Marc Delisle <Marc.Delisle_at_cegepsherbrooke."
+#~ "qc.ca>\n"
#~ " Olivier Müller <om_at_omnis.ch>\n"
-#~ " Robin Johnson <robbat2_at_users.sourceforge.net>\n"
+#~ " Robin Johnson <robbat2_at_users.sourceforge."
+#~ "net>\n"
#~ " Alexander M. Turek <me_at_derrabus.de>\n"
#~ " Michal Čihař <michal_at_cihar.com>\n"
#~ " Garvin Hicking <me_at_supergarv.de>\n"
-#~ " Michael Keck <mkkeck_at_users.sourceforge.net>\n"
-#~ " Sebastian Mendel <cybot_tm_at_users.sourceforge.net>\n"
-#~ " [check <a href=\"#credits\">credits</a> for more details]\n"
+#~ " Michael Keck <mkkeck_at_users.sourceforge."
+#~ "net>\n"
+#~ " Sebastian Mendel <cybot_tm_at_users."
+#~ "sourceforge.net>\n"
+#~ " [check <a href=\"#credits\">credits</a> for more "
+#~ "details]\n"
#~ "\n"
#~ "This program is free software; you can redistribute it and/or modify\n"
#~ "it under the terms of the GNU General Public License version 2,\n"
@@ -12840,18 +12812,25 @@ msgstr ""
#~ "\n"
#~ "You should have received a copy of the GNU General Public License\n"
#~ "along with this program; if not, write to the Free Software\n"
-#~ "Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n"
+#~ "Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 "
+#~ "USA\n"
#~ msgstr ""
-#~ " Copyright (C) 1998-2000 Tobias Ratschiller <tobias_at_ratschiller.com>\n"
-#~ " Copyright (C) 2001-2008 Marc Delisle <Marc.Delisle_at_cegepsherbrooke.qc.ca>\n"
+#~ " Copyright (C) 1998-2000 Tobias Ratschiller <tobias_at_ratschiller."
+#~ "com>\n"
+#~ "